:root {
	--kr-bg: #fbfbfa;
	--kr-surface: #ffffff;
	--kr-surface-soft: #f4f3f1;
	--kr-text: #171717;
	--kr-muted: #76716b;
	--kr-muted-dark: #4f4a45;
	--kr-border: #e5e1da;
	--kr-border-dark: #d8d2c8;
	--kr-primary: #171717;
	--kr-primary-hover: #000000;
	--kr-danger: #a40016;

	--kr-radius: 6px;
	--kr-radius-md: 8px;
	--kr-radius-lg: 12px;

	--kr-shadow: none;
	--kr-shadow-soft: none;
}

* {
	box-sizing: border-box;
}

html {
	font-size: 14px;
}

body {
	margin: 0;
	font-family: "Geist", "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, Helvetica, sans-serif;
	color: var(--kr-text);
	background: var(--kr-bg);
	line-height: 1.45;
	-webkit-font-smoothing: antialiased;
	text-rendering: optimizeLegibility;
}

img {
	max-width: 100%;
	height: auto;
}

a {
	color: inherit;
	text-decoration: none;
}

button,
input,
select,
textarea {
	font-family: inherit;
}

button {
	cursor: pointer;
}

.wrapper {
	width: 100%;
	max-width: 1160px;
	margin: 0 auto;
	padding: 0 18px;
}

.page-section {
	padding: 8px 0 72px 0;
}

h1,
h2,
h3,
p {
	margin-top: 0;
}

h1 {
	margin-bottom: 26px;
	font-size: 30px;
	line-height: 1.08;
	letter-spacing: -0.035em;
	font-weight: 620;
}

h2 {
	margin-bottom: 18px;
	font-size: 19px;
	line-height: 1.2;
	letter-spacing: -0.025em;
	font-weight: 600;
}

h3 {
	font-size: 16px;
	line-height: 1.25;
	font-weight: 600;
}

p {
	color: var(--kr-muted-dark);
}

strong {
	font-weight: 600;
	color: var(--kr-text);
}

.site-header {
	position: sticky;
	top: 0;
	z-index: 100;
	background: rgba(251, 251, 250, 0.88);
	backdrop-filter: blur(18px);
	border-bottom: 1px solid var(--kr-border);
}

.header-inner {
	display: grid;
	grid-template-columns: minmax(0, 1fr) auto;
	align-items: center;
	padding: 10px 18px;
	gap: 10px;
}

.site-logo {
	display: inline-flex;
	align-items: center;
	min-width: 0;
}

.site-logo img {
	width: 125px;
	max-width: 100%;
	height: auto;
}

.header-actions {
	display: flex;
	align-items: center;
	gap: 8px;
}

.menu-toggle {
	width: 38px;
	height: 38px;
	display: inline-flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 4px;
	border: 1px solid var(--kr-border);
	border-radius: var(--kr-radius);
	background: #ffffff;
	padding: 0;
}

.menu-toggle span {
	width: 17px;
	height: 2px;
	background: var(--kr-text);
	border-radius: 999px;
}

.site-nav {
	grid-column: 1 / -1;
	display: none;
}

.site-menu {
	display: flex;
	flex-direction: column;
	align-items: stretch;
	gap: 4px;
	list-style: none;
	margin: 0;
	padding: 10px 0 0 0;
}

.site-menu a {
	display: flex;
	align-items: center;
	min-height: 42px;
	padding: 10px 0;
	border-bottom: 1px solid var(--kr-border);
	border-radius: 0;
	font-size: 14px;
	font-weight: 500;
	color: var(--kr-muted-dark);
}

.cart-menu-link {
	position: relative;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 38px;
	padding: 0 12px;
	border-radius: var(--kr-radius);
	background: #ffffff;
	border: 1px solid var(--kr-border);
	font-size: 13px;
	font-weight: 500;
}

.submenu {
	position: absolute;
	top: 100%;
	left: 0;
	background: #ffffff;
	border: 1px solid var(--kr-border);
	border-radius: var(--kr-radius-md);
	padding: 8px 0;
	list-style: none;
	margin: 0;
	min-width: 220px;
	display: none;
	z-index: 200;
}

.has-children:hover .submenu {
	display: block;
}

.submenu li a {
	display: block;
	padding: 9px 14px;
}

.hero {
	padding: 86px 0;
	background: #151515;
	color: #ffffff;
}

.hero-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 42px;
	align-items: center;
}

.hero h1 {
	font-size: 56px;
	line-height: 1.02;
	margin-bottom: 22px;
	color: #ffffff;
}

.eyebrow {
	font-size: 12px;
	font-weight: 600;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: rgba(255, 255, 255, 0.7);
}

.lead {
	font-size: 18px;
	max-width: 700px;
	color: rgba(255, 255, 255, 0.82);
}

.btn,
.button-link {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 38px;
	padding: 9px 14px;
	border: 1px solid transparent;
	border-radius: var(--kr-radius);
	background: var(--kr-primary);
	color: #ffffff;
	font-size: 13px;
	font-weight: 500;
	line-height: 1.2;
}

.btn {
	background: #ffffff;
	color: #151515;
	margin-top: 16px;
}

.button-link:hover,
.btn:hover {
	background: var(--kr-primary-hover);
	color: #ffffff;
}

.button-link-secondary {
	background: #ffffff;
	color: var(--kr-text);
	border-color: var(--kr-border);
}

.button-link-secondary:hover {
	background: var(--kr-surface-soft);
	color: var(--kr-text);
}

.hero-card {
	background: rgba(255, 255, 255, 0.06);
	border: 1px solid rgba(255, 255, 255, 0.12);
	border-radius: var(--kr-radius-lg);
	padding: 34px;
	min-height: 300px;
	display: flex;
	flex-direction: column;
	justify-content: center;
}

.section-title {
	font-size: 32px;
	margin-bottom: 34px;
}

.hero-list {
	margin: 22px 0 0 0;
	padding-left: 18px;
	line-height: 1.85;
	color: rgba(255, 255, 255, 0.78);
}

.category-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 18px;
}

.category-card {
	display: block;
	background: #ffffff;
	border: 1px solid var(--kr-border);
	border-radius: var(--kr-radius-md);
	padding: 22px;
	transition: border-color 0.15s ease, transform 0.15s ease;
}

.category-card:hover {
	transform: translateY(-2px);
	border-color: var(--kr-border-dark);
}

.category-card h3 {
	margin-bottom: 8px;
}

.category-card p {
	color: var(--kr-muted);
}

.site-footer {
	background: #151515;
	color: #ffffff;
	padding: 44px 0;
	margin-top: 72px;
}

.footer-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
}

.alert {
	padding: 11px 13px;
	border-radius: var(--kr-radius);
	margin-bottom: 18px;
	font-size: 13px;
	border: 1px solid transparent;
}

.alert-error {
	background: #fff0f0;
	color: #7f1d1d;
	border-color: #ffd6d6;
}

.alert-success {
	background: #f0f8f2;
	color: #14532d;
	border-color: #d7eadc;
}

.info-box,
.success-box {
	background: #ffffff;
	border: 1px solid var(--kr-border);
	border-radius: var(--kr-radius-md);
	padding: 22px;
	margin-top: 24px;
}

.success-box {
	padding: 34px;
	max-width: 700px;
}

.small-note {
	color: var(--kr-muted);
	font-size: 13px;
}

.page-intro {
	max-width: 620px;
	margin: 0 0 22px 0;
	color: var(--kr-muted);
	font-size: 14px;
	line-height: 1.55;
}

.customer-login-page {
	min-height: 100vh;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 24px;
	background: var(--kr-bg);
}

.customer-login-box {
	width: 100%;
	max-width: 390px;
	background: #ffffff;
	border: 1px solid var(--kr-border);
	border-radius: var(--kr-radius-md);
	padding: 30px;
}

.customer-login-logo {
	display: block;
	max-width: 200px;
	max-height: 66px;
	margin: 0 auto 24px auto;
	object-fit: contain;
}

.customer-login-box h1 {
	margin-bottom: 18px;
	text-align: center;
	font-size: 25px;
}

.customer-login-box label {
	display: block;
	margin: 14px 0 6px 0;
	font-size: 12px;
	font-weight: 600;
	letter-spacing: 0.04em;
	text-transform: uppercase;
}

.customer-login-box input {
	width: 100%;
	height: 42px;
	padding: 0 12px;
	border: 1px solid var(--kr-border-dark);
	border-radius: var(--kr-radius);
	font-size: 14px;
	background: #ffffff;
}

.customer-login-box button,
.customer-login-box .button-link {
	width: 100%;
	box-sizing: border-box;
	text-align: center;
	margin-top: 14px;
}

.customer-login-box button {
	border: 0;
	border-radius: var(--kr-radius);
	padding: 11px 14px;
	background: var(--kr-primary);
	color: #ffffff;
	font-size: 14px;
	font-weight: 500;
}

.login-divider {
	display: flex;
	align-items: center;
	gap: 14px;
	margin: 24px 0;
	color: var(--kr-muted);
	font-size: 13px;
}

.login-divider:before,
.login-divider:after {
	content: "";
	height: 1px;
	background: var(--kr-border);
	flex: 1;
}

button:disabled {
	opacity: 0.45;
	cursor: not-allowed;
}

.customer-product-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 12px 10px;
	margin-top: 10px;
}

.customer-product-card {
	display: flex;
	flex-direction: column;
	background: #ffffff;
	border: 1px solid transparent;
	border-radius: var(--kr-radius-md);
	position: relative;
	padding: 8px;
	transition: border-color 0.15s ease, transform 0.15s ease;
}

.customer-product-card:hover {
	border-color: var(--kr-border);
}

.customer-product-card-image {
	aspect-ratio: 1 / 1;
	background: var(--kr-surface-soft);
	border-radius: var(--kr-radius-md);
	overflow: hidden;
	margin-bottom: 10px;
	border: 1px solid var(--kr-border);
}

.customer-product-card-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.customer-product-card h2 {
	letter-spacing: -0.018em;
	margin: 5px 0 10px 0;
	font-size: 13px;
	line-height: 1.15;
	font-weight: 650;
}

.customer-product-article {
	display: inline-block;
	margin: 0;
	font-size: 10px;
	font-weight: 600;
	letter-spacing: 0.07em;
	text-transform: uppercase;
	color: var(--kr-muted);
}

.customer-product-price {
	margin: 0 0 4px 0;
	font-size: 12px;
	line-height: 1.25;
	font-weight: 600;
	color: var(--kr-muted-dark);
}

.customer-product-meta {
	margin-top: 4px;
	font-size: 11px;
	line-height: 1.25;
	color: var(--kr-muted);
}

.back-link {
	display: inline-block;
	margin-bottom: 24px;
	font-size: 13px;
	font-weight: 500;
	color: var(--kr-muted-dark);
}

.back-link:hover {
	color: var(--kr-text);
}

.customer-product-detail {
	display: grid;
	grid-template-columns: 1fr;
	gap: 12px;
	align-items: start;
}

.customer-product-main {
	background: transparent;
	padding: 0;
	border: 0;
	box-shadow: none;
	margin-bottom: 0;
	padding-bottom: 0;
}

.customer-product-main h1 {
	margin: 16px 0 0 0;
	font-size: 18px;
	line-height: 1.04;
	letter-spacing: -0.04em;
	font-weight: 620;
}

.product-description {
	margin-top: 24px;
	max-width: 740px;
	font-size: 14px;
	line-height: 1.65;
	color: var(--kr-muted-dark);
}

.customer-product-gallery {
	margin-bottom: 0px;
}

.customer-product-main-image img {
	width: 100%;
	display: block;
	border: 1px solid var(--kr-border);
	border-radius: var(--kr-radius-md);
	background: var(--kr-surface-soft);
}

.customer-product-thumbnails {
	display: flex;
	gap: 10px;
	margin-top: 12px;
	flex-wrap: wrap;
}

.customer-product-thumb-button {
	border: 0;
	padding: 0;
	background: transparent;
	cursor: pointer;
}

.customer-product-thumb-button img {
	width: 68px;
	height: 68px;
	object-fit: cover;
	border-radius: var(--kr-radius);
	border: 1px solid var(--kr-border);
	background: #ffffff;
	padding: 3px;
	display: block;
}

.customer-product-thumb-button:hover img {
	border-color: var(--kr-text);
}

.customer-product-buybox {
	position: static;
	background: #ffffff;
	border: 1px solid var(--kr-border);
	border-radius: var(--kr-radius-md);
	padding: 22px;
}

.customer-product-buybox h2 {
	font-size: 18px;
	margin-bottom: 16px;
}

.price-row {
	display: flex;
	justify-content: space-between;
	gap: 18px;
	padding: 0 0 14px 0;
	margin-bottom: 14px;
	border-bottom: 1px solid var(--kr-border);
	font-size: 14px;
}

.price-row span {
	text-align: right;
	color: var(--kr-muted-dark);
}

.customer-product-buybox label {
	display: block;
	margin: 18px 0 6px 0;
	font-size: 11px;
	font-weight: 600;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	color: var(--kr-muted-dark);
}

.customer-product-buybox select,
.customer-product-buybox input[type="number"],
.customer-product-buybox input[type="text"] {
	width: 100%;
	height: 42px;
	padding: 0 12px;
	border: 1px solid var(--kr-border-dark);
	border-radius: var(--kr-radius);
	background: #ffffff;
	font-size: 14px;
	font-weight: 400;
	color: var(--kr-text);
	box-shadow: none;
}

.customer-product-buybox select {
	appearance: none;
	background-image:
		linear-gradient(45deg, transparent 50%, #777 50%),
		linear-gradient(135deg, #777 50%, transparent 50%);
	background-position:
		calc(100% - 18px) 18px,
		calc(100% - 13px) 18px;
	background-size: 5px 5px, 5px 5px;
	background-repeat: no-repeat;
	padding-right: 38px;
}

.customer-product-buybox select:focus,
.customer-product-buybox input[type="number"]:focus,
.customer-product-buybox input[type="text"]:focus {
	outline: none;
	border-color: var(--kr-text);
}

.customer-product-buybox button {
	width: 100%;
	min-height: 42px;
	margin-top: 22px;
	border: 0;
	border-radius: var(--kr-radius);
	padding: 11px 14px;
	background: var(--kr-primary);
	color: #ffffff;
	font-size: 14px;
	font-weight: 500;
}

.customer-product-buybox button:hover {
	background: var(--kr-primary-hover);
}

.product-option-block {
	margin-top: 20px;
}

.radio-group {
	display: flex;
	flex-direction: column;
	gap: 8px;
	margin-top: 8px;
}

.radio-option {
	display: flex;
	align-items: center;
	gap: 9px;
	padding: 9px 10px;
	background: var(--kr-surface-soft);
	border: 1px solid var(--kr-border);
	border-radius: var(--kr-radius);
}

.customer-product-image-wrap {
	margin-bottom: 22px;
}

.customer-product-image {
	width: 100%;
	max-width: 520px;
	height: auto;
	display: block;
	border-radius: var(--kr-radius-md);
	background: #ffffff;
	border: 1px solid var(--kr-border);
}

.cart-box {
	max-width: 760px;
	background: #ffffff;
	border-radius: var(--kr-radius-md);
	padding: 14px 18px 18px 18px;
	border: 1px solid var(--kr-border);
}

.cart-row {
	display: grid;
	grid-template-columns: 86px minmax(0, 1fr);
	gap: 14px;
	padding: 16px 0;
	border-bottom: 1px solid var(--kr-border);
	position: relative;
	padding-right: 34px;
}

.cart-row:first-child {
	padding-top: 8px;
}

.cart-product-image {
	width: 86px;
	height: 86px;
	border: 1px solid var(--kr-border);
	border-radius: var(--kr-radius);
	background: var(--kr-surface-soft);
	overflow: hidden;
}

.cart-product-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.cart-product-info strong {
	display: block;
	font-size: 15px;
	margin-bottom: 4px;
	line-height: 1.2;
	padding-right: 70px;
}

.cart-row:last-child {
	border-bottom: 0;
}

.cart-options {
	margin: 8px 0 0 0;
	padding-left: 0;
	color: var(--kr-muted);
	font-size: 13px;
}

.cart-total {
	display: flex;
	justify-content: space-between;
	gap: 20px;
	padding-top: 20px;
	font-size: 17px;
}

.cart-actions {
	display: grid;
	grid-template-columns: 1fr;
	gap: 10px;
	margin-top: 24px;
}

.cart-actions .button-link {
	width: 100%;
}

.cart-remove-link {
	position: absolute;
	top: 12px;
	right: 0;
	z-index: 5;
	width: 28px;
	height: 28px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 22px;
	line-height: 1;
	color: var(--kr-muted-dark);
}

.cart-remove-link:hover {
	background: #fff0f0;
	border-color: #f0caca;
	color: var(--kr-danger);
}

.checkout-item {
	padding: 12px 0;
	border-bottom: 1px solid var(--kr-border);
}

.customer-user-form {
	max-width: 520px;
}

.customer-user-form label {
	display: block;
	margin: 16px 0 6px 0;
	font-size: 11px;
	font-weight: 600;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	color: var(--kr-muted-dark);
}

.customer-user-form input,
.customer-user-form select {
	width: 100%;
	height: 42px;
	padding: 0 12px;
	border: 1px solid var(--kr-border-dark);
	border-radius: var(--kr-radius);
	background: #ffffff;
	font-size: 14px;
	color: var(--kr-text);
}

.customer-user-form button {
	width: 100%;
	margin-top: 20px;
	min-height: 42px;
	border: 0;
	border-radius: var(--kr-radius);
	padding: 0 14px;
	background: var(--kr-primary);
	color: #ffffff;
	font-size: 14px;
	font-weight: 500;
}

.customer-users-table {
	width: 100%;
	border-collapse: collapse;
	margin-top: 10px;
}

.customer-users-table thead {
	display: none;
}

.customer-users-table tbody {
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.customer-users-table tr {
	display: flex;
	flex-direction: column;
	padding: 14px 0;
	border-bottom: 1px solid var(--kr-border);
}

.customer-users-table td {
	padding: 2px 0;
	font-size: 14px;
}

.customer-users-table td:before {
	display: block;
	margin-bottom: 2px;
	font-size: 10px;
	font-weight: 600;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: var(--kr-muted);
}

.customer-users-table td:nth-child(1):before {
	content: "Namn";
}

.customer-users-table td:nth-child(2):before {
	content: "E-post";
}

.customer-users-table td:nth-child(3):before {
	content: "Behörighet";
}

.customer-users-table td:nth-child(4):before {
	content: "Status";
}

.customer-users-table td:nth-child(5):before {
	content: "Senaste login";
}

.customer-users-table tr {
	position: relative;
	padding: 16px 0 18px 0;
}

.customer-users-table td:nth-child(1) {
	font-size: 16px;
	font-weight: 600;
}

.customer-users-table td:nth-child(6) {
	margin-top: 12px;
}

.customer-users-table td:nth-child(6) .button-link {
	width: 100%;
	background: #ffffff;
	color: var(--kr-text);
	border: 1px solid var(--kr-border-dark);
}

.cart-menu-count {
	position: absolute;
	top: -6px;
	right: -8px;
	min-width: 17px;
	height: 17px;
	padding: 0 5px;
	border-radius: 999px;
	background: var(--kr-primary);
	color: #ffffff;
	font-size: 10px;
	font-weight: 600;
	display: flex;
	align-items: center;
	justify-content: center;
	line-height: 1;
}

.checkout-form .customer-product-detail {
	grid-template-columns: 1fr;
	gap: 46px;
}

.checkout-main {
	background: #ffffff;
	border: 1px solid var(--kr-border);
	border-radius: var(--kr-radius-md);
	padding: 26px;
}

.checkout-main h2 {
	margin-bottom: 22px;
	font-size: 21px;
	letter-spacing: -0.03em;
}

.checkout-field {
	margin-bottom: 15px;
}

.checkout-field label {
	display: block;
	margin: 0 0 6px 0;
	font-size: 11px;
	font-weight: 600;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	color: var(--kr-muted-dark);
}

.checkout-field input,
.checkout-field textarea {
	width: 100%;
	border: 1px solid var(--kr-border-dark);
	border-radius: var(--kr-radius);
	background: #ffffff;
	font-size: 14px;
	color: var(--kr-text);
	box-shadow: none;
}

.checkout-field input {
	height: 42px;
	padding: 0 12px;
	max-width: 820px;
}

.checkout-field textarea {
	min-height: 110px;
	padding: 12px;
	resize: vertical;
	max-width: 820px;
}

.checkout-field input:focus,
.checkout-field textarea:focus {
	outline: none;
	border-color: var(--kr-text);
}

.checkout-field-row {
	display: grid;
	grid-template-columns: 1fr;
	gap: 14px;
}

.product-text-option {
	height: 42px;
}

.breadcrumbs {
	display: flex;
	align-items: center;
	gap: 7px;
	margin: 0 0 8px 0;
	font-size: 13px;
	color: var(--kr-muted);
}

.breadcrumbs a {
	color: var(--kr-muted-dark);
}

.breadcrumbs a:hover {
	color: var(--kr-text);
}

.cart-order-form {
	max-width: 760px;
}

.cart-delivery-box {
	margin-top: 22px;
	padding-top: 22px;
	border-top: 1px solid var(--kr-border);
}

.cart-delivery-box h2 {
	margin-bottom: 18px;
	font-size: 18px;
}

.cart-actions button.button-link {
	width: 100%;
	border: 0;
	cursor: pointer;
}

.checkbox-label {
	display: flex !important;
	align-items: center;
	gap: 8px;
	margin-top: 18px !important;
	font-size: 14px !important;
	font-weight: 500 !important;
	letter-spacing: 0 !important;
	text-transform: none !important;
}

.checkbox-label input {
	width: auto !important;
	height: auto !important;
}

.button-link-danger {
	background: #fff0f0;
	color: var(--kr-danger);
	border-color: #f0caca;
}

.button-link-danger:hover {
	background: var(--kr-danger);
	color: #ffffff;
}
.button-link-small {
	min-height: 32px;
	padding: 7px 10px;
	font-size: 12px;
}
.customer-users-table td:nth-child(6):before {
	content: "Åtgärd";
}

.form-actions {
	display: flex;
	gap: 10px;
	margin-top: 20px;
}

.form-actions .button-link {
	background: #ffffff;
	color: var(--kr-muted-dark);
	border: 1px solid var(--kr-border-dark);
}

.form-actions .button-link:hover {
	background: #f7f7f6;
	color: var(--kr-text);
	border-color: var(--kr-border);
}

.form-actions .button-link,
.form-actions button {
	width: auto;
	flex: 1;
	min-height: 48px;
	margin: 0;
	padding: 0 16px;
	font-size: 14px;
	font-weight: 500;
	border-radius: var(--kr-radius);
	display: inline-flex;
	align-items: center;
	justify-content: center;
	line-height: 1;
	box-sizing: border-box;
}

.form-actions button {
	border: 0;
}

.customer-orders-table {
	width: 100%;
	border-collapse: collapse;
	margin-top: 10px;
}

.customer-orders-table thead {
	display: none;
}

.customer-orders-table tbody {
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.customer-orders-table tr {
	display: flex;
	flex-direction: column;
	position: relative;
	padding: 16px 0 18px 0;
	border-bottom: 1px solid var(--kr-border);
}

.customer-orders-table td {
	padding: 2px 0;
	font-size: 14px;
}

.customer-orders-table td:before {
	display: block;
	margin-bottom: 2px;
	font-size: 10px;
	font-weight: 600;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: var(--kr-muted);
}

.customer-orders-table td:nth-child(1) {
	font-size: 16px;
	font-weight: 600;
}

.customer-orders-table td:nth-child(1):before {
	content: "Order";
}

.customer-orders-table td:nth-child(2):before {
	content: "Datum";
}

.customer-orders-table td:nth-child(3):before {
	content: "Status";
}

.customer-orders-table td:nth-child(4):before {
	content: "Lagts av";
}

.customer-orders-table td:nth-child(5):before {
	content: "Totalt exkl. moms";
}

.customer-orders-table td:nth-child(6) {
	margin-top: 12px;
}

.customer-orders-table td:nth-child(6):before {
	display: none;
}

.customer-orders-table td:nth-child(6) .button-link {
	width: 100%;
	background: #ffffff;
	color: var(--kr-text);
	border: 1px solid var(--kr-border-dark);
}

.site-toast {
	position: fixed;
	top: 18px;
	left: 50%;
	z-index: 9999;
	transform: translate(-50%, -20px);
	max-width: calc(100% - 32px);
	padding: 12px 16px;
	border-radius: var(--kr-radius-md);
	background: #f0f8f2;
	border: 1px solid #d7eadc;
	color: #14532d;
	font-size: 13px;
	font-weight: 500;
	opacity: 0;
	pointer-events: none;
	transition: opacity 0.18s ease, transform 0.18s ease;
}

.site-toast-visible {
	opacity: 1;
	transform: translate(-50%, 0);
}

.site-toast-error {
	background: #fff0f0;
	border-color: #ffd6d6;
	color: #7f1d1d;
}

.button-loading {
	position: relative;
	color: transparent !important;
}

.button-loading:after {
	content: "";
	width: 16px;
	height: 16px;
	border: 2px solid rgba(255, 255, 255, 0.45);
	border-top-color: #ffffff;
	border-radius: 999px;
	animation: button-spin 0.65s linear infinite;
}

@keyframes button-spin {
	to {
		transform: rotate(360deg);
	}
}

.customer-product-category {
	margin-top: 24px;
}

.customer-product-category:first-of-type {
	margin-top: 18px;
}

.customer-product-category-title {
	margin: 0 0 4px 2px;
	font-size: 15px;
	font-weight: 600;
	letter-spacing: -0.01em;
	color: var(--kr-muted-dark);
}

.cart-file-note {
	display: inline-flex;
	align-items: center;
	padding: 4px 8px;
	border-radius: 999px;
	background: #ecfdf3;
	color: #166534;
	font-size: 11px;
	font-weight: 600;
	margin-top: 8px;
}

.cart-quantity-input {
	width: 56px;
	height: 34px;
	padding: 0 4px;
	font-size: 15px;
	font-weight: 600;
	text-align: center;
}

.cart-remove-trash svg {
	width: 18px;
	height: 18px;
	fill: var(--kr-muted-dark);
	display: block;
}

.cart-remove-trash:hover svg {
	fill: var(--kr-danger);
}

.cart-remove-link {
	font-size: 0;
}

.cart-product-numbers {
	grid-column: 1 / -1;
	display: grid;
	grid-template-columns: auto 1fr auto;
	align-items: center;
	gap: 12px;
	margin-top: 12px;
}

.cart-unit-price {
	color: var(--kr-muted-dark);
	font-size: 14px;
	white-space: nowrap;
}

.cart-quantity-wrap {
	display: inline-flex;
	align-items: center;
	gap: 6px;
}

.cart-line-total {
	font-size: 17px;
	font-weight: 650;
	white-space: nowrap;
	text-align: right;
}

.product-card-like-button {
	position: absolute;
	top: 12px;
	right: 12px;
	z-index: 10;
}

.product-like-button {
	width: 32px;
	height: 32px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 0;
	border: 0;
	background: transparent;
	cursor: pointer;
}

.product-like-button svg {
	width: 20px;
	height: 20px;
	fill: transparent;
	stroke: var(--kr-muted);
	stroke-width: 2;
	display: block;}

.product-like-button-active svg {
	fill: var(--kr-danger);
	stroke: var(--kr-danger);
}

.product-detail-like-button {
	position: static;
	flex: 0 0 auto;
	margin-left: auto;
}

.product-title-meta-row {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	margin-bottom: 0px;
}

.product-title-meta-row .customer-product-article {
	margin: 0;
}

.product-active-toggle {
	z-index: 10;

	width: 30px;
	height: 16px;

	border: 0;
	border-radius: 999px;

	background: #d6d1ca;

	padding: 2px;

	cursor: pointer;

	transition: background 0.18s ease;
}

.product-active-toggle span {
	display: block;

	width: 12px;
	height: 12px;

	border-radius: 999px;
	background: #ffffff;

	transition: transform 0.18s ease;
}

.product-active-toggle-on {
	background: #171717;
}

.product-active-toggle-on span {
	transform: translateX(14px);
}

.product-meta-row {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 10px;
	margin-bottom: 6px;
}

.product-meta-row .customer-product-article {
	margin: 0;
}

.customer-product-card-inactive {
	opacity: 0.55;
}

.customer-product-card-inactive .customer-product-card-image {
	position: relative;
}

.customer-product-card-inactive .customer-product-card-image:after {
	content: "";
	position: absolute;
	inset: 0;

	background: rgba(255,255,255,0.45);

	backdrop-filter: grayscale(1);

	pointer-events: none;
}

.customer-product-card-inactive {
	opacity: 0.72;
}

.customer-product-card-inactive h2,
.customer-product-card-inactive .customer-product-price {
	color: var(--kr-muted-dark);
}

.favorite-products-strip {
	margin: 18px 0 24px 0;
	margin-top: 0;
}

.favorite-products-strip-empty {
	display: none;
}

.favorite-products-scroll {
	display: flex;
	gap: 10px;
	overflow-x: auto;
	padding: 4px 0 8px 0;
	scroll-snap-type: x mandatory;
	-webkit-overflow-scrolling: touch;
}

.favorite-product-thumb {
	flex: 0 0 auto;
	width: 62px;
	height: 62px;
	border-radius: var(--kr-radius);
	overflow: hidden;
	background: var(--kr-surface-soft);
	border: 1px solid var(--kr-border);
	scroll-snap-align: start;
	transition: transform 0.18s ease, opacity 0.18s ease;
}

.favorite-product-thumb img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.favorite-product-thumb-new {
	transform: scale(0.85);
	opacity: 0;
}

.customer-product-card-wide {
	grid-column: 1 / -1;
	display: grid;
	grid-template-columns: 42% minmax(0, 1fr);
	gap: 16px;
	align-items: start;
}

.customer-product-card-wide .customer-product-card-image {
	margin: 0;
}

.customer-product-card-content {
	min-width: 0;
}

.customer-product-card-wide .product-meta-row {
	margin: 4px 0 12px 0;
}

.customer-product-card-wide h2 {
	margin: 0 0 12px 0;
}

.customer-product-card-wide .customer-product-price {
	margin: 0 0 6px 0;
}

.customer-product-card-wide .customer-product-meta {
	margin: 0;
}
.customer-product-card-wide .product-card-like-button {
	top: 13px;
	left: calc(42% - 30px);
	right: auto;
}

.customer-page-heading {
	display: grid;
	grid-template-columns: 1fr auto;
	align-items: end;
	gap: 16px;
	margin: 0 0 10px 0;
}

.customer-page-heading-left {
	font-size: 14px;
	line-height: 1.15;
	font-weight: 650;
	color: var(--kr-muted-dark);
}

.customer-page-heading-right {
	text-align: right;
}

.customer-page-heading h1 {
	margin: 0;
	font-size: 17px;
	line-height: 1.15;
	letter-spacing: -0.025em;
}

.customer-page-heading p {
	margin: 4px 0 0 0;
	font-size: 12px;
	line-height: 1.3;
	color: var(--kr-muted);
}

.product-back-link {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	margin: 0 0 18px 0;
	font-size: 11px;
	opacity: 0.8;
	font-weight: 500;
	color: var(--kr-muted);
	text-decoration: none;
}

.cart-like-button {
	position: absolute;
	top: 12px;
	left: 254px;
	z-index: 5;
}

.tier-price-box {
	margin: -6px 0 14px 0;
	padding: 10px 0 12px 0;
	border-bottom: 1px solid var(--kr-border);
}

.tier-price-row {
	display: flex;
	justify-content: space-between;
	gap: 14px;
	padding: 3px 0;
	font-size: 12px;
	color: var(--kr-muted-dark);
}

.tier-price-row strong {
	font-size: 12px;
	font-weight: 600;
}

.customer-product-side {
	display: flex;
	flex-direction: column;
	gap: 0px;
}

.customer-product-title {
	margin: 0 0 12px 0;
	font-size: 20px;
	line-height: 1.12;
	letter-spacing: -0.03em;
	font-weight: 620;
}

.customer-product-side .product-description {
	margin-top: 0;
	margin-bottom: 22px;
}

.customer-product-side .customer-product-buybox {
	margin-top: 0;
}

.cart-shipping-row {
	display: flex;
	justify-content: space-between;
	gap: 20px;
	padding-top: 14px;
	color: var(--kr-muted);
	font-size: 13px;
}

.cart-shipping-row strong {
	color: var(--kr-muted);
	font-weight: 500;
}

.cart-total {
	font-size: 15px;
}

.customer-product-main-image {
	position: relative;
}

.customer-product-main-image .product-brand-logo-overlay{
	position: absolute;
	top: 10px;
	left: 14px;
	z-index: 2;
	max-width: 72px;
	max-height: 50px;
	width: auto;
	height: auto;
	object-fit: contain;
	pointer-events: none;
	border: 0;
	border-radius: 0;
	background: transparent;
	padding: 0;
	box-shadow: none;
}

.customer-product-brand {

	margin: 0;
	font-size: 11px;
	line-height: 1.25;
	font-weight: 500;
	color: var(--kr-muted);

}

.checkout-field-floating {
	position: relative;
	margin-bottom: 12px;
}

.checkout-field-floating label {
	position: absolute;
	top: 8px;
	left: 14px;
	margin: 0;
	font-size: 10px;
	line-height: 1;
	font-weight: 600;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: var(--kr-muted);
	pointer-events: none;
	display: block;
}

.checkout-field-floating input,
.checkout-field-floating textarea {
	padding-top: 17px !important;
	height: 50px;
	font-size: 14px;
}

.checkout-field-floating textarea {
	height: auto;
	min-height: 110px;
	padding-top: 22px !important;
}

.customer-product-buybox .checkout-field-floating input[type="number"] {
	height: 54px;
	padding-top: 19px !important;
	padding-bottom: 7px;
	line-height: 1.2;
	appearance: textfield;
	-moz-appearance: textfield;
}

.customer-product-buybox .checkout-field-floating input[type="number"]::-webkit-outer-spin-button,
.customer-product-buybox .checkout-field-floating input[type="number"]::-webkit-inner-spin-button {
	-webkit-appearance: none;
	margin: 0;
}

.customer-product-buybox .checkout-field-floating {
	margin-bottom: 16px;
}

.customer-product-buybox select {
	height: 54px;
	margin-bottom: 2px;
}

.customer-product-buybox .product-option-block {
	margin-top: 22px;
}

.customer-product-buybox input[type="file"] {
	display: block;
	margin-top: 10px;
	margin-bottom: 18px;
	font-size: 13px;
}

.customer-product-buybox .small-note {
	margin: -4px 0 18px 0;
}

.checkout-field-select select {
	height: 54px;
	padding-top: 18px;
	padding-left: 12px;
	font-size: 14px;
}

.checkout-field-select label {
	z-index: 2;
}

.customer-product-buybox .checkout-field-floating label {
	position: absolute;
	top: 8px;
	left: 14px;
	margin: 0;
	font-size: 10px;
	line-height: 1;
	font-weight: 600;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: var(--kr-muted);
	pointer-events: none;
	z-index: 2;
}

.customer-product-buybox .checkout-field-select select {
	height: 54px;
	padding-top: 17px;
	padding-bottom: 5px;
	margin-bottom: 0;
}

.customer-product-buybox .checkout-field-floating input {
	height: 54px;
	padding-top: 18px !important;
	padding-bottom: 6px;
}

.customer-product-buybox .product-option-block {
	margin-top: 16px;
}

.customer-product-buybox .checkout-field-floating {
	margin-bottom: 16px;
}

body.menu-open .site-menu {
	gap: 0;
}

body.menu-open .site-menu a {
	background: transparent;
	border-radius: 0;
	padding-left: 0;
	padding-right: 0;
}

.site-menu li:last-child a {
	border-bottom: 0;
}

.customer-print-files-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
	gap: 18px;
}

.customer-print-file-card {
	background: #ffffff;
	border: 1px solid #e7e7e2;
	border-radius: 16px;
	padding: 14px;
	display: flex;
	gap: 14px;
	align-items: flex-start;
}

.customer-print-file-preview {
	width: 90px;
	height: 90px;
	border: 1px solid #dddddd;
	border-radius: 12px;
	background: repeating-linear-gradient(
		45deg,
		#9a9a9a,
		#9a9a9a 10px,
		#8f8f8f 10px,
		#8f8f8f 20px
	);
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
	flex: 0 0 auto;
}

.customer-print-file-preview img {
	max-width: 100%;
	max-height: 100%;
	display: block;
}

.customer-print-file-info {
	min-width: 0;
	font-size: 14px;
}

.print-file-modal {
	position: fixed;
	inset: 0;
	z-index: 1000;
	background: rgba(0,0,0,0.45);
	display: none;
	align-items: center;
	justify-content: center;
	padding: 18px;
}

.print-file-modal-visible {
	display: flex;
}

.print-file-modal-box {
	position: relative;
	width: 100%;
	max-width: 620px;
	background: #fff;
	border-radius: 18px;
	padding: 26px;
	box-shadow: 0 20px 70px rgba(0,0,0,0.25);
}

.print-file-modal-close {
	position: absolute;
	right: 14px;
	top: 14px;
	width: 34px;
	height: 34px;
	border: 0;
	border-radius: 999px;
	background: #f1f1ed;
	cursor: pointer;
	font-size: 22px;
	line-height: 1;
}

.print-file-modal-label {
	font-size: 12px;
	font-weight: bold;
	color: #888;
	text-transform: uppercase;
	letter-spacing: 1px;
	margin-bottom: 8px;
}

.print-file-modal-box h2 {
	margin: 0 0 8px 0;
	font-size: 24px;
}

.print-file-modal-box p {
	margin: 0 0 18px 0;
	color: #777;
	line-height: 1.5;
}

.print-file-choice-list {
	display: grid;
	gap: 10px;
}

.print-file-choice {
	display: block;
	padding: 16px;
	border: 1px solid #e3e3df;
	border-radius: 12px;
	background: #fafaf8;
	color: inherit;
	text-decoration: none;
	transition: 0.15s ease;
}

.print-file-choice:hover {
	background: #f1f1ed;
	border-color: #cfcfc8;
}

.print-file-choice strong {
	display: block;
	font-size: 16px;
	margin-bottom: 4px;
}

.print-file-choice span {
	display: block;
	font-size: 13px;
	color: #777;
	line-height: 1.4;
}

.has-children {
	position: relative;
}

@media (max-width: 899px) {

	body.menu-open {
		overflow: hidden;
		padding-top: 59px;
	}

	body.menu-open .site-header {
		position: fixed;
		left: 0;
		right: 0;
		top: 0;
		z-index: 5000;
		background: #fbfbfa;
		backdrop-filter: none;
	}

	body .site-nav {
		display: block;
		position: fixed;
		left: 0;
		right: 0;
		top: 59px;
		z-index: 4999;
		overflow-y: auto;
		max-height: calc(100vh - 59px);
	
		background: #f1efeb;
		padding: 0 18px 8px 18px;
		border: 0;
		border-radius: 0;
		box-shadow: none;
	
		transform: translateY(-14px);
		opacity: 0;
		pointer-events: none;
		transition:
			transform 0.12s ease-out,
			opacity 0.12s ease-out;
	}
	
	body.menu-open .site-nav {
		transform: translateY(0);
		opacity: 1;
		pointer-events: auto;
		position: fixed;
		left: 0;
		right: 0;
		top: 59px;
		z-index: 4999;
		display: block;
		overflow-y: auto;
		max-height: calc(100vh - 59px);
		background: #f1efeb;
		padding: 0 18px 8px 18px;
		border-bottom: 1px solid #d0cbc4;
		border-radius: 0;
		box-shadow: none;
	}

	body.menu-open .site-menu {
		padding: 0;
		gap: 0;
	}

	body.menu-open .site-menu > li {
		border-bottom: 1px solid var(--kr-border);
	}

	body.menu-open .site-menu > li:last-child {
		border-bottom: 0;
	}

	body.menu-open .site-menu > li > a {
		border-bottom: 0;
		font-size: 18px;
		font-weight: 600;
		color: var(--kr-muted-dark);
		min-height: 52px;
	}

	body.menu-open .submenu {
		position: static;
		min-width: 0;
		margin: -4px 0 10px 0;
		padding: 0 0 10px 18px;
		background: transparent;
		border: 0;
		border-radius: 0;
		display: block;
		max-height: 0;
		overflow: hidden;
		opacity: 0;
		padding-top: 0;
		padding-bottom: 0;
		transition:
			max-height 0.25s ease,
			opacity 0.2s ease,
			padding 0.2s ease;
	}

	body.menu-open .submenu-open > .submenu {
		max-height: 500px;
		opacity: 1;
		padding-bottom: 10px;
	}

	body.menu-open .submenu li a {
		display: flex;
		align-items: center;
		min-height: 38px;
		padding: 6px 0 6px 14px;
		border-bottom: 0;
		font-size: 15px;
		font-weight: 500;
		color: var(--kr-muted-dark);
		position: relative;
	}

	body.menu-open .submenu li a:before {
		content: "";
		position: absolute;
		left: 0;
		top: 50%;
		width: 5px;
		height: 5px;
		border-radius: 999px;
		background: var(--kr-border-dark);
		transform: translateY(-50%);
	}

	.has-children > a {
		position: relative;
		padding-right: 28px !important;
	}

	.has-children > a:after {
		content: "›";
		position: absolute;
		right: 4px;
		top: 50%;
		transform: translateY(-50%);
		font-size: 22px;
		color: var(--kr-muted);
		transition: transform 0.18s ease;
	}

	.submenu-open > a:after {
		transform: translateY(-50%) rotate(90deg);
	}
}

.site-footer {
	background: #071f35;
	color: #ffffff;
	padding: 0;
	margin-top: 72px;
}

.footer-trust {
	border-bottom: 1px solid rgba(255,255,255,0.12);
}

.footer-trust-inner {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 12px;
	padding-top: 22px;
	padding-bottom: 22px;
	font-size: 13px;
	font-weight: 600;
	color: rgba(255,255,255,0.82);
}

.footer-main {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 34px 28px;
	padding-top: 52px;
	padding-bottom: 52px;
}

.footer-column h3 {
	margin: 0 0 16px 0;
	font-size: 17px;
	color: #ffffff;
}

.footer-column a {
	display: block;
	margin-bottom: 10px;
	font-size: 14px;
	color: rgba(255,255,255,0.76);
}

.footer-column a:hover {
	color: #ffffff;
}

.footer-brand {
	padding-top: 10px;
	padding-bottom: 34px;
	text-align: center;
}

.footer-brand strong {
	display: block;
	margin-bottom: 10px;
	font-size: 32px;
	color: #ffffff;
}

.footer-brand p {
	max-width: 680px;
	margin: 0 auto;
	color: rgba(255,255,255,0.72);
}

.footer-bottom {
	display: flex;
	flex-direction: column;
	gap: 7px;
	padding-top: 20px;
	padding-bottom: 24px;
	border-top: 1px solid rgba(255,255,255,0.12);
	font-size: 12px;
	color: rgba(255,255,255,0.65);
	text-align: center;
}


.footer-skyline img {
	display: block;
	width: 100%;
	height: auto;
}

.footer-skyline {
	line-height: 0;
	background: #ffffff;
}

.site-footer {
	margin-top: 0;
}


@media (min-width: 900px) {
	
						.footer-trust-inner {
							display: flex;
							justify-content: space-between;
						}
					
						.footer-main {
							grid-template-columns: repeat(4, minmax(0, 1fr));
						}
					
						.footer-bottom {
							flex-direction: row;
							justify-content: center;
							flex-wrap: wrap;
						}
	
						.customer-product-detail,
						.checkout-form .customer-product-detail {
							grid-template-columns: minmax(0, 1fr) 340px;
							gap: 46px;
						}
	
						.customer-product-side {
							width: 340px;
						}
	
						.cart-like-button {
							right: 28px;
							left: auto;
						}
	
						.favorite-product-thumb {
							width: 72px;
							height: 72px;
						}
						
						.cart-row {
							grid-template-columns: 92px minmax(0, 1fr) 190px;
							align-items: center;
							position: relative;
						}
					
						.cart-actions {
							display: flex;
							justify-content: flex-end;
						}
						.cart-actions .button-link {
							width: auto;
						}
					
						.wrapper {
							padding: 0 28px;
						}
					
						.header-inner {
							display: flex;
							flex-direction: row;
							align-items: center;
							justify-content: space-between;
							min-height: 68px;
							padding: 0;
						}
						
						.header-actions {
							order: 3;
						}
						
						.menu-toggle {
							display: none;
						}
						
						.site-nav {
							display: block;
							grid-column: auto;
						}
						
						.site-menu {
							flex-direction: row;
							align-items: center;
							gap: 4px;
							padding: 0;
						}
						
						.site-menu a {
							min-height: 38px;
							padding: 9px 11px;
							border-bottom: 0;
							border-radius: var(--kr-radius);
						}
					
						.site-menu {
							flex-wrap: nowrap;
						}
					
						.hero-grid {
							grid-template-columns: 1.2fr 0.8fr;
						}
					
						.category-grid {
							grid-template-columns: repeat(4, minmax(0, 1fr));
						}
					
						.customer-product-grid {
							grid-template-columns: repeat(2, minmax(0, 1fr));
						}
					
						.customer-product-detail,
						.checkout-form .customer-product-detail {
							grid-template-columns: minmax(0, 1fr) 340px;
						}
					
						.checkout-field-row {
							grid-template-columns: 150px minmax(0, 1fr);
						}
					
						.customer-product-buybox {
							position: sticky;
							top: 96px;
						}
					
						.site-logo img {
							width: 165px;
						}
					
						.footer-inner {
							flex-direction: row;
							align-items: center;
						}
						
						.customer-users-table thead {
							display: table-header-group;
						}
						
						.customer-users-table tbody {
							display: table-row-group;
						}
						
						.customer-users-table tr {
							display: table-row;
							border-bottom: 0;
						}
						
						.customer-users-table td {
							display: table-cell;
							padding: 11px 10px;
							border-bottom: 1px solid var(--kr-border);
						}
						
						.customer-users-table td:before {
							display: none;
						}
						.customer-orders-table thead {
							display: table-header-group;
						}
						
						.customer-orders-table tbody {
							display: table-row-group;
						}
						
						.customer-orders-table tr {
							display: table-row;
							border-bottom: 0;
						}
						
						.customer-orders-table td {
							display: table-cell;
							padding: 11px 10px;
							border-bottom: 1px solid var(--kr-border);
						}
						
						.customer-orders-table td:before {
							display: none;
						}
}