/**
 * Sælkerabúðin - WooCommerce Styles
 * Dark product cards matching Figma design
 */

/* ─── PRODUCT GRID CONTAINER ───────────────────── */

.wc-block-product-template.is-flex-container {
	gap: 24px !important;
	padding: 0 24px;
	max-width: 1280px;
	margin: 0 auto;
}

.wc-block-product-template.is-flex-container.columns-3 > li {
	width: calc(33.333% - 16px) !important;
}

@media (max-width: 960px) {
	.wc-block-product-template.is-flex-container.columns-3 > li {
		width: calc(50% - 12px) !important;
	}
}

@media (max-width: 600px) {
	.wc-block-product-template.is-flex-container.columns-3 > li {
		width: 100% !important;
	}
}

/* ─── QUICK ADD WIDGET (inline qty stepper + cart) ── */

.saelk-quick-add {
	position: absolute;
	bottom: 16px;
	right: 16px;
	z-index: 5;
	display: flex;
	align-items: center;
	gap: 2px;
	height: 48px;
	padding: 4px 4px 4px 8px;
	background: rgba(26, 26, 26, 0.92);
	border: 1px solid rgba(255, 255, 255, 0.12);
	border-radius: 999px;
	box-shadow: 0 4px 14px rgba(0, 0, 0, 0.3);
	color: white;
	opacity: 0;
	transform: translateY(8px);
	pointer-events: none;
	transition: opacity 0.2s ease, transform 0.2s ease;
}

li.wc-block-product:hover .saelk-quick-add,
.saelk-quick-add:focus-within {
	opacity: 1;
	transform: translateY(0);
	pointer-events: auto;
}

@media (hover: none) {
	.saelk-quick-add {
		opacity: 1;
		transform: translateY(0);
		pointer-events: auto;
	}
}

.saelk-qa-btn {
	width: 32px;
	height: 32px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border: 0;
	background: transparent;
	color: white;
	border-radius: 50%;
	cursor: pointer;
	padding: 0;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	transition: background 0.15s ease;
}
.saelk-qa-btn::-moz-focus-inner { border: 0; padding: 0; }

.saelk-qa-btn:hover:not(:disabled) {
	background: rgba(255, 255, 255, 0.12);
}

.saelk-qa-btn:disabled {
	opacity: 0.3;
	cursor: not-allowed;
}

.saelk-qa-qty {
	min-width: 24px;
	text-align: center;
	font-family: var(--wp--preset--font-family--antonio);
	font-size: 1rem;
	font-weight: 600;
	color: white;
	letter-spacing: 0.02em;
	user-select: none;
}

.saelk-qa-cart {
	width: 40px;
	height: 40px;
	background: var(--wp--preset--color--caramel);
	margin-left: 6px;
}
.saelk-qa-cart:hover:not(:disabled) {
	background: var(--wp--preset--color--dark-caramel);
}

.saelk-quick-add.is-loading .saelk-qa-cart {
	background: var(--wp--preset--color--dark-caramel);
	pointer-events: none;
}

.saelk-quick-add.is-success .saelk-qa-cart {
	background: #22c55e;
	pointer-events: none;
}

.saelk-quick-add.is-loading .saelk-qa-minus,
.saelk-quick-add.is-loading .saelk-qa-plus,
.saelk-quick-add.is-success .saelk-qa-minus,
.saelk-quick-add.is-success .saelk-qa-plus {
	pointer-events: none;
	opacity: 0.4;
}

.saelk-quick-add .saelk-spinner {
	animation: saelk-spin 0.8s linear infinite;
}

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

/* ─── PRODUCT CARD ─────────────────────────────── */

li.wc-block-product {
	background-color: #1A1A1A !important;
	border-radius: 1rem !important;
	overflow: hidden !important;
	transition: transform 0.4s ease, box-shadow 0.4s ease;
	padding: 0 !important;
	display: flex;
	flex-direction: column;
	position: relative;
}

li.wc-block-product:hover {
	transform: translateY(-4px);
	box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
}

/* ─── PRODUCT IMAGE ────────────────────────────── */

li.wc-block-product .wp-block-woocommerce-product-image,
li.wc-block-product .wc-block-components-product-image {
	margin: 0 !important;
	border-radius: 0 !important;
	overflow: hidden;
	aspect-ratio: 1;
}

li.wc-block-product .wp-block-woocommerce-product-image img,
li.wc-block-product .wc-block-components-product-image img {
	width: 100% !important;
	height: 100% !important;
	object-fit: cover !important;
	border-radius: 0 !important;
	transition: transform 0.7s ease;
}

li.wc-block-product:hover .wp-block-woocommerce-product-image img,
li.wc-block-product:hover .wc-block-components-product-image img {
	transform: scale(1.1);
}

/* ─── PRODUCT TITLE ────────────────────────────── */

li.wc-block-product .wp-block-post-title,
li.wc-block-product h3 {
	font-family: var(--wp--preset--font-family--antonio) !important;
	font-size: 1.125rem !important;
	font-weight: 700 !important;
	color: white !important;
	text-transform: uppercase !important;
	letter-spacing: -0.01em;
	padding: 16px 20px 4px !important;
	margin: 0 !important;
	line-height: 1.3;
}

li.wc-block-product .wp-block-post-title a,
li.wc-block-product h3 a {
	color: white !important;
	text-decoration: none !important;
}

li.wc-block-product:hover .wp-block-post-title a,
li.wc-block-product:hover h3 a {
	color: var(--wp--preset--color--caramel) !important;
}

/* ─── PRODUCT PRICE ────────────────────────────── */

li.wc-block-product .wp-block-woocommerce-product-price,
li.wc-block-product .wc-block-components-product-price {
	font-family: var(--wp--preset--font-family--antonio) !important;
	font-size: 1rem !important;
	font-weight: 500 !important;
	color: white !important;
	padding: 4px 20px 20px !important;
	margin: 0 !important;
}

li.wc-block-product .wc-block-components-product-price__value {
	color: white !important;
}

/* ─── ADD TO CART BUTTON ───────────────────────── */

li.wc-block-product .wp-element-button,
li.wc-block-product .add_to_cart_button {
	background-color: var(--wp--preset--color--caramel) !important;
	color: white !important;
	border: none !important;
	border-radius: 0.5rem !important;
	font-family: var(--wp--preset--font-family--oswald) !important;
	font-size: 0.75rem !important;
	text-transform: uppercase !important;
	letter-spacing: 0.12em !important;
	padding: 10px 20px !important;
	margin: 0 20px 20px !important;
	transition: background-color 0.3s ease !important;
	width: calc(100% - 40px) !important;
	text-align: center;
}

li.wc-block-product .wp-element-button:hover,
li.wc-block-product .add_to_cart_button:hover {
	background-color: var(--wp--preset--color--dark-caramel) !important;
	transform: scale(1.03);
}

li.wc-block-product .wp-element-button:active,
li.wc-block-product .add_to_cart_button:active {
	transform: scale(0.97);
	transition-duration: 0.1s !important;
}

/* ─── PRODUCT COLLECTION WRAPPER ───────────────── */

.wp-block-woocommerce-product-collection {
	background-color: var(--wp--preset--color--cream-bg);
	padding: 48px 0 80px;
}

/* ─── ARCHIVE PAGE BACKGROUND ──────────────────── */

.post-type-archive-product .wp-site-blocks,
.tax-product_cat .wp-site-blocks {
	background-color: var(--wp--preset--color--cream-bg);
}

/* ─── SALE BADGE ───────────────────────────────── */

li.wc-block-product .wc-block-components-product-sale-badge {
	background-color: var(--wp--preset--color--caramel) !important;
	color: white !important;
	font-family: var(--wp--preset--font-family--oswald);
	font-size: 0.6875rem;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	border-radius: 4px;
	position: absolute;
	top: 12px;
	left: 12px;
	z-index: 2;
}

/* ─── SINGLE PRODUCT PAGE ──────────────────────── */

.single-product .wp-site-blocks {
	background-color: var(--wp--preset--color--dark-bg);
}

.saelk-single-product {
	padding-top: 100px !important;
}

/* Breadcrumbs on single product */
.saelk-single-product .woocommerce-breadcrumb {
	color: #666 !important;
	font-size: 0.8125rem;
}

.saelk-single-product .woocommerce-breadcrumb a {
	color: #999 !important;
}

.saelk-single-product .woocommerce-breadcrumb a:hover {
	color: var(--wp--preset--color--caramel) !important;
}

/* Product image gallery */
.saelk-single-product .woocommerce-product-gallery {
	opacity: 1 !important;
}

.saelk-single-product .woocommerce-product-gallery__image img {
	border-radius: 1rem !important;
	background: #f0f0f0;
}

/* Product title */
.saelk-single-product .wp-block-post-title {
	font-family: var(--wp--preset--font-family--bebas-neue) !important;
	text-transform: uppercase !important;
	color: white !important;
	letter-spacing: -0.02em;
}

/* Category terms */
.saelk-single-product .taxonomy-product_cat a {
	color: var(--wp--preset--color--caramel) !important;
	text-decoration: none !important;
}

/* Product excerpt/description */
.saelk-single-product .wp-block-post-excerpt,
.saelk-single-product .wp-block-post-excerpt__excerpt {
	color: var(--wp--preset--color--gray-300) !important;
}

/* Price */
.saelk-single-product .wp-block-woocommerce-product-price,
.saelk-single-product .wc-block-components-product-price {
	color: var(--wp--preset--color--caramel) !important;
}

.saelk-single-product .wc-block-components-product-price .woocommerce-Price-amount {
	color: var(--wp--preset--color--caramel) !important;
	font-family: var(--wp--preset--font-family--antonio) !important;
}

/* Separator */
.saelk-single-product .wp-block-separator {
	width: 60px !important;
	margin-left: 0 !important;
}

/* Add to cart form */
.saelk-single-product .wc-block-add-to-cart-form {
	margin-top: 24px;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 28px;
}

/* Quantity selector — custom minus/plus layout */
.saelk-single-product .wc-block-add-to-cart-form .quantity {
	display: inline-flex;
	align-items: center;
	margin: 0;
	background: #222;
	border: 1px solid #444;
	border-radius: 2rem;
	padding: 6px;
	gap: 0;
}

.saelk-single-product .wc-block-add-to-cart-form .quantity .qty {
	background: transparent !important;
	border: none !important;
	color: white !important;
	width: 44px !important;
	text-align: center;
	padding: 8px 0 !important;
	border-radius: 0 !important;
	font-family: var(--wp--preset--font-family--inter) !important;
	font-size: 1rem !important;
	font-weight: 600 !important;
	-moz-appearance: textfield;
	appearance: textfield;
}

/* Hide native spinner */
.saelk-single-product .wc-block-add-to-cart-form .quantity .qty::-webkit-outer-spin-button,
.saelk-single-product .wc-block-add-to-cart-form .quantity .qty::-webkit-inner-spin-button {
	-webkit-appearance: none;
	margin: 0;
}

/* Custom minus/plus buttons (injected by JS).
   Cross-browser hardened — Firefox UA styles for <button> include
   ::-moz-focus-inner padding and quirky flex/min-content sizing
   that can push SVG icons out of the visible circle. */
.saelk-qty-btn {
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	box-sizing: border-box;
	width: 36px;
	height: 36px;
	min-width: 36px;
	min-height: 36px;
	border-radius: 50%;
	border: 0;
	background: transparent;
	color: #9CA3AF;
	cursor: pointer;
	transition: background 0.2s ease, color 0.2s ease;
	flex-shrink: 0;
	padding: 0;
	margin: 0;
	font-size: 0;
	line-height: 1;
	overflow: hidden;
}

/* Firefox: kill the inner focus dotted-border padding that
   eats space inside the button content box. */
.saelk-qty-btn::-moz-focus-inner {
	border: 0;
	padding: 0;
}

.saelk-qty-btn:hover {
	background: rgba(198, 134, 66, 0.15);
	color: var(--wp--preset--color--caramel);
}

.saelk-qty-btn:active {
	transform: scale(0.9);
}

.saelk-qty-btn:disabled {
	opacity: 0.25;
	cursor: default;
}

.saelk-qty-btn:disabled:hover {
	background: transparent;
	color: #9CA3AF;
}

.saelk-qty-btn svg {
	display: block;
	width: 18px;
	height: 18px;
	flex-shrink: 0;
	pointer-events: none;
}

.saelk-single-product .single_add_to_cart_button,
.saelk-single-product .wc-block-add-to-cart-form .wp-element-button {
	background-color: var(--wp--preset--color--caramel) !important;
	color: white !important;
	font-family: var(--wp--preset--font-family--oswald) !important;
	text-transform: uppercase !important;
	letter-spacing: 0.15em !important;
	font-weight: 500 !important;
	font-size: 0.8125rem !important;
	border-radius: 2rem !important;
	padding: 16px 40px !important;
	border: none !important;
	transition: background-color 0.3s ease;
	cursor: pointer;
}

.saelk-single-product .single_add_to_cart_button:hover,
.saelk-single-product .wc-block-add-to-cart-form .wp-element-button:hover {
	background-color: var(--wp--preset--color--dark-caramel) !important;
}

/* Product meta */
.saelk-single-product .wp-block-woocommerce-product-meta {
	color: #666;
	font-size: 0.8125rem;
}

/* Product details/tabs */
.saelk-single-product .wp-block-woocommerce-product-details,
.saelk-single-product .woocommerce-tabs {
	color: white;
}

.saelk-single-product .woocommerce-tabs .tabs li a {
	color: #999 !important;
	font-family: var(--wp--preset--font-family--oswald);
	text-transform: uppercase;
	letter-spacing: 0.1em;
}

.saelk-single-product .woocommerce-tabs .tabs li.active a {
	color: white !important;
}

.saelk-single-product .woocommerce-tabs .woocommerce-Tabs-panel {
	color: var(--wp--preset--color--gray-300);
}

/* ─── RELATED PRODUCTS ─────────────────────────── */

.saelk-single-product .wp-block-woocommerce-related-products .wp-block-query {
	max-width: 1280px;
	margin: 0 auto;
}

.saelk-single-product .wp-block-woocommerce-related-products .wp-block-post-template {
	gap: 20px !important;
}

.saelk-single-product .wp-block-woocommerce-related-products .wp-block-post-template > *,
.saelk-single-product .wp-block-post.product {
	background-color: #222 !important;
	border-radius: 1rem !important;
	overflow: hidden !important;
	transition: transform 0.4s ease, box-shadow 0.4s ease;
	padding-bottom: 20px !important;
	position: relative;
}

.saelk-single-product .wp-block-woocommerce-related-products .wp-block-post-template > *:hover {
	transform: translateY(-4px);
	box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
}

/* Related product images */
.saelk-single-product .wp-block-woocommerce-related-products .wp-block-woocommerce-product-image {
	margin: 0 !important;
	overflow: hidden;
	aspect-ratio: 1;
}

.saelk-single-product .wp-block-woocommerce-related-products .wp-block-woocommerce-product-image img {
	width: 100% !important;
	height: 100% !important;
	object-fit: cover !important;
	border-radius: 0 !important;
	transition: transform 0.7s ease;
}

.saelk-single-product .wp-block-woocommerce-related-products .wp-block-post-template > *:hover img {
	transform: scale(1.1);
}

/* Related product title */
.saelk-single-product .wp-block-woocommerce-related-products .wp-block-post-title {
	font-family: var(--wp--preset--font-family--antonio) !important;
	font-size: 1rem !important;
	font-weight: 600 !important;
	text-transform: uppercase !important;
	color: white !important;
	padding: 14px 16px 4px !important;
	margin: 0 !important;
}

.saelk-single-product .wp-block-woocommerce-related-products .wp-block-post-title a {
	color: white !important;
	text-decoration: none !important;
}

.saelk-single-product .wp-block-woocommerce-related-products .wp-block-post-title a:hover {
	color: var(--wp--preset--color--caramel) !important;
}

/* Related product price */
.saelk-single-product .wp-block-woocommerce-related-products .wp-block-woocommerce-product-price,
.saelk-single-product .wp-block-woocommerce-related-products .wc-block-components-product-price {
	padding: 4px 16px 0 !important;
	color: white !important;
	font-family: var(--wp--preset--font-family--antonio) !important;
	font-size: 0.9375rem !important;
}

.saelk-single-product .wp-block-woocommerce-related-products .wc-block-components-product-price .woocommerce-Price-amount {
	color: white !important;
}

/* ─── WOOCOMMERCE NOTICES ──────────────────────── */

.woocommerce-message,
.woocommerce-info {
	background-color: var(--wp--preset--color--card-bg) !important;
	color: white;
	border-left-color: var(--wp--preset--color--caramel) !important;
}

/* ─── MY ACCOUNT PAGE ──────────────────────────── */

.woocommerce-account .wp-site-blocks {
	background-color: var(--wp--preset--color--dark-bg);
}

.woocommerce-account .woocommerce {
	padding-top: 140px !important;
	padding-left: 24px;
	padding-right: 24px;
	max-width: 1280px;
	margin: 0 auto;
	padding-bottom: 80px;
}

.woocommerce-account .woocommerce-MyAccount-navigation {
	background: #222;
	border-radius: 1rem;
	padding: 24px 0;
	overflow: hidden;
}

.woocommerce-account .woocommerce-MyAccount-navigation ul {
	list-style: none;
	margin: 0;
	padding: 0;
}

.woocommerce-account .woocommerce-MyAccount-navigation ul li a {
	display: block;
	padding: 12px 32px;
	color: #9CA3AF !important;
	font-family: var(--wp--preset--font-family--oswald);
	font-size: 0.875rem;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	text-decoration: none !important;
	transition: all 0.3s ease;
}

.woocommerce-account .woocommerce-MyAccount-navigation ul li a:hover {
	color: white !important;
	background: rgba(255, 255, 255, 0.05);
}

.woocommerce-account .woocommerce-MyAccount-navigation ul li.is-active a,
.woocommerce-account .woocommerce-MyAccount-navigation ul li.woocommerce-MyAccount-navigation-link--orders.is-active a {
	color: white !important;
	border-left: 3px solid var(--wp--preset--color--caramel);
	background: rgba(198, 134, 66, 0.08);
}

/* Account content area */
.woocommerce-account .woocommerce-MyAccount-content {
	color: white;
}

.woocommerce-account .woocommerce-MyAccount-content p,
.woocommerce-account .woocommerce-MyAccount-content td,
.woocommerce-account .woocommerce-MyAccount-content th {
	color: #D1D5DB;
}

.woocommerce-account .woocommerce-MyAccount-content a {
	color: var(--wp--preset--color--caramel) !important;
}

.woocommerce-account .woocommerce-MyAccount-content a.button {
	color: white !important;
}

.woocommerce-account .woocommerce-MyAccount-content h2,
.woocommerce-account .woocommerce-MyAccount-content h3 {
	color: white !important;
	font-family: var(--wp--preset--font-family--bebas-neue);
}

/* Account notices */
.woocommerce-account .woocommerce-info,
.woocommerce-account .woocommerce-message {
	background: #222 !important;
	color: white !important;
	border-left-color: var(--wp--preset--color--caramel) !important;
	border-radius: 0.5rem;
}

.woocommerce-account .woocommerce-info a,
.woocommerce-account .woocommerce-message a {
	color: var(--wp--preset--color--caramel) !important;
}

.woocommerce-account .woocommerce-info .button,
.woocommerce-account .woocommerce-message .button {
	background: var(--wp--preset--color--caramel) !important;
	color: white !important;
	border: none !important;
	border-radius: 2rem !important;
	font-family: var(--wp--preset--font-family--oswald) !important;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	font-size: 0.75rem;
	padding: 10px 24px !important;
}

/* Account forms (edit address, account details) */
.woocommerce-account .woocommerce-EditAccountForm input,
.woocommerce-account .woocommerce-address-fields input,
.woocommerce-account .woocommerce-EditAccountForm select,
.woocommerce-account .woocommerce-address-fields select {
	background: #222 !important;
	border: 1px solid #444 !important;
	border-radius: 0.5rem !important;
	color: white !important;
	padding: 12px 16px !important;
	font-family: var(--wp--preset--font-family--inter) !important;
}

.woocommerce-account .woocommerce-EditAccountForm label,
.woocommerce-account .woocommerce-address-fields label {
	color: #9CA3AF !important;
	font-family: var(--wp--preset--font-family--oswald);
	font-size: 0.75rem;
	text-transform: uppercase;
	letter-spacing: 0.1em;
}

.woocommerce-account .woocommerce-Button,
.woocommerce-account .button {
	background: var(--wp--preset--color--caramel) !important;
	color: white !important;
	border: none !important;
	border-radius: 2rem !important;
	font-family: var(--wp--preset--font-family--oswald) !important;
	text-transform: uppercase !important;
	letter-spacing: 0.12em !important;
	font-size: 0.8125rem !important;
	padding: 14px 32px !important;
	cursor: pointer;
	transition: background-color 0.3s;
}

.woocommerce-account .woocommerce-Button:hover,
.woocommerce-account .button:hover {
	background: var(--wp--preset--color--dark-caramel) !important;
}

/* Orders table */
.woocommerce-account .woocommerce-orders-table {
	border-color: #333 !important;
}

.woocommerce-account .woocommerce-orders-table th {
	background: #222 !important;
	color: white !important;
	border-color: #333 !important;
	font-family: var(--wp--preset--font-family--oswald);
	text-transform: uppercase;
	letter-spacing: 0.08em;
	font-size: 0.8125rem;
}

.woocommerce-account .woocommerce-orders-table td {
	border-color: #333 !important;
	color: #D1D5DB !important;
}

/* Login form */
.woocommerce-account .woocommerce-form-login,
.woocommerce-account .woocommerce-form-register {
	background: #222;
	border-radius: 1rem;
	padding: 40px !important;
	border: none !important;
}

.woocommerce-account .woocommerce-form-login label,
.woocommerce-account .woocommerce-form-register label {
	color: #9CA3AF !important;
	font-family: var(--wp--preset--font-family--oswald);
	font-size: 0.75rem;
	text-transform: uppercase;
	letter-spacing: 0.1em;
}

.woocommerce-account .woocommerce-form-login input[type="text"],
.woocommerce-account .woocommerce-form-login input[type="password"],
.woocommerce-account .woocommerce-form-login input[type="email"],
.woocommerce-account .woocommerce-form-register input[type="text"],
.woocommerce-account .woocommerce-form-register input[type="password"],
.woocommerce-account .woocommerce-form-register input[type="email"] {
	background: #1A1A1A !important;
	border: 1px solid #444 !important;
	border-radius: 0.5rem !important;
	color: white !important;
	padding: 14px 16px !important;
}

/* ─── CHECKOUT PAGE STYLING ─────────────────────── */

.woocommerce-checkout .wp-site-blocks {
	background-color: var(--wp--preset--color--cream-bg) !important;
}

/* Override dark header on checkout — use cream header */
.woocommerce-checkout .site-header .wp-block-site-logo img {
	filter: brightness(0) !important;
}

.woocommerce-checkout .site-header .wp-block-navigation-item__content,
.woocommerce-checkout .site-header .wp-block-navigation a,
.woocommerce-checkout .site-header .saelk-search-toggle,
.woocommerce-checkout .site-header .wp-block-woocommerce-customer-account,
.woocommerce-checkout .site-header .wp-block-woocommerce-customer-account a,
.woocommerce-checkout .site-header .wc-block-mini-cart__button {
	color: #111 !important;
}

/* Checkout page top spacing for fixed header */
body.woocommerce-checkout .wp-site-blocks {
	padding-top: 140px !important;
}

/* Checkout form container */
.woocommerce-checkout .wc-block-checkout,
.woocommerce-checkout .wp-block-woocommerce-checkout {
	color: #111 !important;
	max-width: 1200px;
	margin: 0 auto;
	padding: 40px 24px;
}

/* Headings */
.woocommerce-checkout .wc-block-checkout h1,
.woocommerce-checkout .wc-block-checkout h2,
.woocommerce-checkout .wc-block-checkout h3,
.woocommerce-checkout .wc-block-components-title {
	color: #111 !important;
	font-family: var(--wp--preset--font-family--bebas-neue) !important;
	text-transform: uppercase !important;
}

/* Labels */
.woocommerce-checkout .wc-block-checkout label,
.woocommerce-checkout .wc-block-components-text-input label,
.woocommerce-checkout .wc-block-components-select label {
	color: #666 !important;
	font-family: var(--wp--preset--font-family--oswald) !important;
	text-transform: uppercase !important;
	letter-spacing: 0.08em !important;
	font-size: 0.75rem !important;
}

/* Inputs */
.woocommerce-checkout .wc-block-checkout input[type="text"],
.woocommerce-checkout .wc-block-checkout input[type="email"],
.woocommerce-checkout .wc-block-checkout input[type="tel"],
.woocommerce-checkout .wc-block-checkout input[type="number"],
.woocommerce-checkout .wc-block-checkout select,
.woocommerce-checkout .wc-block-checkout textarea,
.woocommerce-checkout .wc-block-components-text-input input,
.woocommerce-checkout .wc-block-components-select select {
	background: white !important;
	border: 1px solid #ddd !important;
	border-radius: 0.5rem !important;
	color: #111 !important;
	font-family: var(--wp--preset--font-family--inter) !important;
}

.woocommerce-checkout .wc-block-checkout input:focus,
.woocommerce-checkout .wc-block-checkout select:focus {
	border-color: var(--wp--preset--color--caramel) !important;
	box-shadow: none !important;
}

/* Text colors */
.woocommerce-checkout .wc-block-checkout p,
.woocommerce-checkout .wc-block-checkout span,
.woocommerce-checkout .wc-block-checkout div {
	color: #333;
}

/* Order summary */
.woocommerce-checkout .wc-block-components-order-summary,
.woocommerce-checkout .wc-block-checkout__sidebar {
	background: white;
	border-radius: 1rem;
	padding: 24px;
}

/* Total price in caramel */
.woocommerce-checkout .wc-block-components-totals-footer-item .wc-block-components-totals-item__value {
	color: var(--wp--preset--color--caramel) !important;
	font-family: var(--wp--preset--font-family--antonio) !important;
	font-size: 1.5rem !important;
	font-weight: 600 !important;
}

/* Place order button */
.woocommerce-checkout .wc-block-components-checkout-place-order-button,
.woocommerce-checkout .wc-block-checkout__actions .wp-element-button {
	background-color: var(--wp--preset--color--caramel) !important;
	color: white !important;
	border: none !important;
	border-radius: 2rem !important;
	font-family: var(--wp--preset--font-family--oswald) !important;
	font-size: 0.875rem !important;
	font-weight: 500 !important;
	text-transform: uppercase !important;
	letter-spacing: 0.12em !important;
	padding: 16px 40px !important;
	transition: background-color 0.3s ease;
}

.woocommerce-checkout .wc-block-components-checkout-place-order-button:hover,
.woocommerce-checkout .wc-block-checkout__actions .wp-element-button:hover {
	background-color: var(--wp--preset--color--dark-caramel) !important;
}

/* Radio buttons and checkboxes */
.woocommerce-checkout .wc-block-components-radio-control__input:checked {
	border-color: var(--wp--preset--color--caramel) !important;
	background-color: var(--wp--preset--color--caramel) !important;
}

/* Shipping method options */
.woocommerce-checkout .wc-block-components-radio-control__label {
	color: #111 !important;
}

/* Links */
.woocommerce-checkout .wc-block-checkout a {
	color: var(--wp--preset--color--caramel) !important;
}

/* Notices */
.woocommerce-checkout .wc-block-components-notice-banner {
	border-radius: 0.5rem;
}

/* ─── PICKUP CALENDAR (React block) ────────────── */

/* Two slots are registered (sidebar + form-column) — hide whichever is in
   the wrong place at the current viewport. ≤768px = mobile (form), else
   desktop (sidebar). */
@media (max-width: 768px) {
	.saelk-pickup-slot--sidebar { display: none; }
}
@media (min-width: 769px) {
	.saelk-pickup-slot--form { display: none; }
}

.saelk-pickup-widget {
	background: white;
	border: 1px solid #e5e5e5;
	border-radius: 1rem;
	padding: 20px;
	margin-top: 16px;
}

.saelk-pickup-widget-title {
	font-family: var(--wp--preset--font-family--bebas-neue) !important;
	font-size: 1.25rem !important;
	color: #111 !important;
	margin: 0 0 12px !important;
	text-transform: uppercase;
}

.saelk-pickup-toggle {
	display: flex;
	align-items: center;
	gap: 10px;
	width: 100%;
	padding: 12px 14px;
	border: 1px solid #ddd;
	border-radius: 0.625rem;
	background: white;
	color: #999;
	font-family: var(--wp--preset--font-family--inter);
	font-size: 0.875rem;
	cursor: pointer;
	transition: border-color 0.3s;
}

.saelk-pickup-toggle:hover {
	border-color: #C68642;
}

.saelk-pickup-toggle span {
	flex: 1;
	text-align: left;
}

.saelk-pickup-body {
	margin-top: 16px;
}

.saelk-pickup-nav {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 12px;
}

.saelk-pickup-nav span {
	font-family: var(--wp--preset--font-family--inter);
	font-size: 0.875rem;
	color: #111;
	font-weight: 500;
}

.saelk-pickup-nav button {
	background: none;
	border: none;
	color: #999;
	font-size: 1.25rem;
	cursor: pointer;
	padding: 4px 8px;
	border-radius: 6px;
	transition: all 0.2s;
}

.saelk-pickup-nav button:hover:not(:disabled) {
	background: #f5f5f5;
	color: #111;
}

.saelk-pickup-nav button:disabled {
	color: #ddd;
	cursor: not-allowed;
}

.saelk-pickup-headers {
	display: grid;
	grid-template-columns: repeat(7, 1fr);
	margin-bottom: 4px;
}

.saelk-pickup-headers div {
	text-align: center;
	font-family: var(--wp--preset--font-family--oswald);
	font-size: 0.5625rem;
	text-transform: uppercase;
	letter-spacing: 0.08em;
	color: #999;
	padding: 4px 0;
}

.saelk-pickup-grid {
	display: grid;
	grid-template-columns: repeat(7, 1fr);
	gap: 3px;
}

.saelk-pickup-day {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 32px;
	height: 32px;
	margin: 1px auto;
	border: none;
	border-radius: 8px;
	background: none;
	font-family: var(--wp--preset--font-family--inter);
	font-size: 0.8125rem;
	color: #111;
	cursor: pointer;
	transition: all 0.2s;
}

.saelk-pickup-day:hover:not(:disabled) {
	background: rgba(198, 134, 66, 0.1);
}

.saelk-pickup-day.disabled {
	color: #ddd;
	cursor: not-allowed;
}

.saelk-pickup-day.today {
	border: 1px solid #C68642;
}

.saelk-pickup-day.selected {
	background: #C68642 !important;
	color: white !important;
	font-weight: 600;
}

.saelk-pickup-times-label {
	font-family: var(--wp--preset--font-family--oswald);
	font-size: 0.6875rem;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	color: #999;
	margin: 16px 0 10px;
}

.saelk-pickup-times {
	display: flex;
	flex-wrap: wrap;
	gap: 6px;
}

.saelk-pickup-time {
	padding: 6px 14px;
	background: #f5f5f5;
	border: 1px solid #e5e5e5;
	border-radius: 999px;
	color: #333;
	font-family: var(--wp--preset--font-family--inter);
	font-size: 0.8125rem;
	cursor: pointer;
	transition: all 0.2s;
}

.saelk-pickup-time:hover {
	border-color: #C68642;
}

.saelk-pickup-time.active {
	background: #C68642;
	border-color: #C68642;
	color: white;
}

/* ─── OLD PICKUP CALENDAR (keep for now) ───────── */

.saelk-pickup-section {
	margin: 0 auto 32px;
	padding: 24px;
	background: white;
	border: 1px solid #e5e5e5;
	border-radius: 1rem;
	max-width: 420px;
}

.saelk-pickup-title {
	font-family: var(--wp--preset--font-family--bebas-neue) !important;
	font-size: 1.5rem !important;
	color: #111 !important;
	margin: 0 0 16px !important;
	text-transform: uppercase;
}

.saelk-cal-display {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	padding: 14px 16px;
	border: 1px solid #ddd;
	border-radius: 0.75rem;
	color: #999;
	margin-bottom: 0;
	font-family: var(--wp--preset--font-family--inter);
	font-size: 0.9375rem;
	width: 100%;
	box-sizing: border-box;
	background: white;
	cursor: pointer;
	transition: border-color 0.3s;
}

.saelk-cal-display:hover {
	border-color: var(--wp--preset--color--caramel);
}

.saelk-cal-body {
	margin-top: 16px;
}

.saelk-cal-display span {
	flex: 1;
}

.saelk-cal-check {
	flex-shrink: 0;
}

.saelk-cal-display > svg {
	flex-shrink: 0;
}

/* Push WooCommerce dropdown arrow to the right */
.wc-block-components-combobox span[style*="flex-shrink"],
.wc-block-components-select span[style*="flex-shrink"],
.saelk-pickup-section span[style*="flex-shrink"],
.wc-block-checkout span[style*="font-size: 0.75rem"][style*="flex-shrink"] {
	margin-left: auto !important;
}

/* Month navigation */
.saelk-cal-nav {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 16px;
}

.saelk-cal-month {
	font-family: var(--wp--preset--font-family--inter);
	font-size: 0.9375rem;
	color: #111;
}

.saelk-cal-prev,
.saelk-cal-next {
	background: none;
	border: none;
	color: #9CA3AF;
	cursor: pointer;
	padding: 6px;
	border-radius: 8px;
	transition: all 0.2s;
	display: flex;
	align-items: center;
}

.saelk-cal-prev:hover,
.saelk-cal-next:hover {
	color: white;
	background: rgba(255,255,255,0.05);
}

.saelk-cal-prev:disabled {
	color: #444;
	cursor: not-allowed;
}

/* Day headers */
.saelk-cal-headers {
	display: grid;
	grid-template-columns: repeat(7, 1fr);
	margin-bottom: 4px;
}

.saelk-cal-headers div {
	text-align: center;
	font-family: var(--wp--preset--font-family--oswald);
	font-size: 0.625rem;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	color: #666;
	padding: 6px 0;
}

/* Calendar grid */
.saelk-cal-grid {
	display: grid;
	grid-template-columns: repeat(7, 1fr);
	gap: 4px;
}

.saelk-cal-day {
	display: flex;
	align-items: center;
	justify-content: center;
	font-family: var(--wp--preset--font-family--inter);
	font-size: 0.8125rem;
	color: #111;
	background: none;
	border: none;
	border-radius: 8px;
	cursor: pointer;
	transition: all 0.2s;
	width: 36px;
	height: 36px;
	margin: 2px auto;
}

.saelk-cal-day:hover:not(:disabled) {
	background: rgba(198, 134, 66, 0.15);
}

.saelk-cal-day.saelk-cal-disabled {
	color: #ccc;
	cursor: not-allowed;
}

.saelk-cal-day.saelk-cal-other {
	visibility: hidden;
}

.saelk-cal-day.saelk-cal-today {
	border: 1px solid #C68642;
}

.saelk-cal-day.saelk-cal-selected {
	background: #C68642 !important;
	color: white !important;
	font-weight: 600;
}

/* Time slots */
.saelk-cal-times-label {
	font-family: var(--wp--preset--font-family--oswald);
	font-size: 0.75rem;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	color: #9CA3AF;
	margin: 20px 0 12px;
}

.saelk-cal-times {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
}

.saelk-cal-time {
	padding: 8px 16px;
	background: #f5f5f5;
	border: 1px solid #ddd;
	border-radius: 999px;
	color: #333;
	font-family: var(--wp--preset--font-family--inter);
	font-size: 0.8125rem;
	cursor: pointer;
	transition: all 0.2s;
}

.saelk-cal-time:hover {
	border-color: #C68642;
	color: white;
}

.saelk-cal-time.saelk-cal-time-active {
	background: #C68642;
	border-color: #C68642;
	color: white;
	font-weight: 500;
}

/* Hidden fields */
.saelk-hidden-field {
	display: none !important;
}

/* ─── MINI CART ────────────────────────────────── */

.wc-block-mini-cart__drawer .wc-block-mini-cart__content {
	background-color: var(--wp--preset--color--dark-bg) !important;
	color: white;
	overflow-x: hidden;
}

.wc-block-components-drawer__screen-overlay {
	padding-right: 0 !important;
	right: 0 !important;
	width: 100vw !important;
	position: fixed !important;
}

.wc-block-mini-cart__drawer .wc-block-mini-cart__title {
	font-family: var(--wp--preset--font-family--bebas-neue);
	color: white;
}

/* Mini cart drawer items */
.wc-block-mini-cart__drawer .wc-block-components-product-name {
	color: white !important;
	font-family: var(--wp--preset--font-family--antonio) !important;
	text-transform: uppercase;
	text-decoration: none !important;
}

.wc-block-mini-cart__drawer .wc-block-components-product-metadata {
	color: #9CA3AF !important;
}

.wc-block-mini-cart__drawer .wc-block-components-product-price {
	color: white !important;
	font-family: var(--wp--preset--font-family--antonio) !important;
}

.wc-block-mini-cart__drawer .wc-block-components-quantity-selector {
	background: #222 !important;
	border-color: #444 !important;
	border-radius: 0.5rem !important;
}

.wc-block-mini-cart__drawer .wc-block-components-quantity-selector input {
	color: white !important;
}

.wc-block-mini-cart__drawer .wc-block-components-quantity-selector button {
	color: #9CA3AF !important;
}

.wc-block-mini-cart__drawer .wc-block-mini-cart__footer .wc-block-components-totals-item__value {
	color: white !important;
	font-family: var(--wp--preset--font-family--antonio) !important;
}

.wc-block-mini-cart__drawer .wc-block-mini-cart__footer .wc-block-components-totals-item__label {
	color: #9CA3AF !important;
}

.wc-block-mini-cart__drawer .wp-element-button,
.wc-block-mini-cart__drawer .wc-block-mini-cart__footer-actions a,
.wc-block-mini-cart__drawer .wc-block-mini-cart__footer-actions button {
	background-color: var(--wp--preset--color--caramel) !important;
	color: white !important;
	border: none !important;
	border-radius: 2rem !important;
	font-family: var(--wp--preset--font-family--oswald) !important;
	text-transform: uppercase !important;
	letter-spacing: 0.12em !important;
}

.wc-block-mini-cart__drawer .wp-element-button:hover,
.wc-block-mini-cart__drawer .wc-block-mini-cart__footer-actions a:hover,
.wc-block-mini-cart__drawer .wc-block-mini-cart__footer-actions button:hover {
	background-color: var(--wp--preset--color--dark-caramel) !important;
}

.wc-block-mini-cart__drawer .wc-block-mini-cart__footer-actions .wc-block-components-button:not(.contained) {
	color: white !important;
	border-color: var(--wp--preset--color--caramel) !important;
}

/* ─── MINI CART CROSS-SELLS ("Viltu bæta við?") ─ */

.saelk-cross-sells {
	padding: 0 24px 16px;
}

.saelk-cross-sells-header {
	display: flex;
	align-items: center;
	gap: 10px;
	padding: 8px 0 16px;
	color: var(--wp--preset--color--caramel);
	font-family: var(--wp--preset--font-family--oswald);
	font-size: 0.9375rem;
	text-transform: uppercase;
	letter-spacing: 0.14em;
}

.saelk-cross-sells-header svg {
	color: var(--wp--preset--color--caramel);
	flex-shrink: 0;
}

.saelk-cross-sell-item {
	display: flex;
	align-items: center;
	gap: 14px;
	padding: 12px;
	margin-bottom: 10px;
	background: #222;
	border: 1px solid rgba(255, 255, 255, 0.06);
	border-radius: 12px;
	transition: border-color 0.2s ease;
	animation: saelk-cross-sell-in 0.4s ease both;
}

.saelk-cross-sell-item:hover {
	border-color: rgba(198, 134, 66, 0.25);
}

@keyframes saelk-cross-sell-in {
	from {
		opacity: 0;
		transform: translateY(8px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

.saelk-cross-sell-image {
	width: 64px;
	height: 64px;
	flex-shrink: 0;
	border-radius: 8px;
	overflow: hidden;
	background: #333;
}

.saelk-cross-sell-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.saelk-cross-sell-info {
	flex: 1;
	min-width: 0;
}

.saelk-cross-sell-name {
	display: block;
	color: white !important;
	font-family: var(--wp--preset--font-family--inter);
	font-size: 0.875rem;
	font-weight: 600;
	text-decoration: none !important;
	line-height: 1.3;
	margin-bottom: 2px;
}

.saelk-cross-sell-name:hover {
	color: var(--wp--preset--color--caramel) !important;
}

.saelk-cross-sell-desc {
	color: #9CA3AF;
	font-family: var(--wp--preset--font-family--inter);
	font-size: 0.75rem;
	line-height: 1.4;
	margin-bottom: 4px;
}

.saelk-cross-sell-price {
	color: var(--wp--preset--color--caramel) !important;
	font-family: var(--wp--preset--font-family--antonio);
	font-size: 0.875rem;
	font-weight: 600;
}

.saelk-cross-sell-price del {
	color: #666 !important;
	font-size: 0.75rem;
}

.saelk-cross-sell-price ins {
	text-decoration: none;
}

.saelk-cross-sell-add {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	flex-shrink: 0;
	border-radius: 50%;
	border: 1.5px solid rgba(255, 255, 255, 0.15);
	background: transparent;
	color: #9CA3AF;
	cursor: pointer;
	transition: all 0.2s ease;
	text-decoration: none;
}

.saelk-cross-sell-add:hover {
	border-color: var(--wp--preset--color--caramel);
	color: var(--wp--preset--color--caramel);
	background: rgba(198, 134, 66, 0.08);
}

.saelk-cross-sell-add.is-loading {
	opacity: 0.5;
	pointer-events: none;
}

.saelk-cross-sell-add.is-loading svg {
	animation: saelk-spin 0.8s linear infinite;
}

@keyframes saelk-spin {
	from { transform: rotate(0deg); }
	to { transform: rotate(360deg); }
}

.saelk-cross-sell-add.is-added {
	border-color: #22c55e;
	color: #22c55e;
	background: rgba(34, 197, 94, 0.08);
}

/* ─── CART PAGE ────────────────────────────────── */

/* Light/cream theme to match checkout. The base .site-header rules in
   navigation.css already handle cream-at-top + dark-on-scroll, so we
   don't override the header here — only the page body. */
.woocommerce-cart .wp-site-blocks,
body.wc-block-cart {
	background-color: var(--wp--preset--color--cream-bg) !important;
}

/* Top spacing */
.wc-block-cart {
	padding-top: 140px !important;
	max-width: 1280px;
	margin: 0 auto;
	padding-left: 24px;
	padding-right: 24px;
	padding-bottom: 80px;
}

/* Hide the "Cart" page title (only the main h1, not product titles) */
.woocommerce-cart main > .wp-block-post-title,
.woocommerce-cart .wp-block-post-content > h1.wp-block-post-title,
.woocommerce-cart [data-block-name="woocommerce/page-content-wrapper"] > h1.wp-block-post-title {
	display: none !important;
}

/* Cart section headings */
.wc-block-cart .wp-block-heading,
.wc-block-cart h2 {
	font-family: var(--wp--preset--font-family--bebas-neue) !important;
	color: #111 !important;
	text-transform: uppercase !important;
	font-size: 2rem !important;
}

/* Cart table */
.wc-block-cart .wc-block-cart-items {
	border-color: #e5e7eb !important;
}

.wc-block-cart .wc-block-cart-items__row {
	border-bottom-color: #e5e7eb !important;
}

/* Product names */
.wc-block-cart .wc-block-components-product-name {
	color: #111 !important;
	font-family: var(--wp--preset--font-family--antonio) !important;
	text-transform: uppercase;
	font-size: 1rem !important;
	text-decoration: none !important;
}

.wc-block-cart .wc-block-components-product-name:hover {
	color: var(--wp--preset--color--caramel) !important;
}

/* Product metadata */
.wc-block-cart .wc-block-components-product-metadata {
	color: #6b7280 !important;
	font-size: 0.8125rem !important;
}

/* Product image */
.wc-block-cart .wc-block-cart-item__image img {
	border-radius: 0.75rem !important;
}

/* Product price */
.wc-block-cart .wc-block-components-product-price {
	color: #111 !important;
	font-family: var(--wp--preset--font-family--antonio) !important;
}

/* Quantity selector */
.wc-block-cart .wc-block-components-quantity-selector {
	background: #fff !important;
	border: 1px solid #d1d5db !important;
	border-radius: 0.5rem !important;
}

.wc-block-cart .wc-block-components-quantity-selector input {
	color: #111 !important;
	background: transparent !important;
	font-family: var(--wp--preset--font-family--inter) !important;
}

.wc-block-cart .wc-block-components-quantity-selector button {
	color: #6b7280 !important;
	border-color: #d1d5db !important;
}

.wc-block-cart .wc-block-components-quantity-selector button:hover {
	color: #111 !important;
}

/* Remove item link */
.wc-block-cart .wc-block-cart-item__remove-link {
	color: #9ca3af !important;
	font-family: var(--wp--preset--font-family--inter) !important;
	font-size: 0.75rem !important;
}

.wc-block-cart .wc-block-cart-item__remove-link:hover {
	color: #b91c1c !important;
}

/* Cart totals sidebar */
.wc-block-cart .wc-block-cart__totals-title {
	font-family: var(--wp--preset--font-family--bebas-neue) !important;
	color: #111 !important;
	text-transform: uppercase !important;
	font-size: 1.5rem !important;
}

.wc-block-cart .wc-block-components-totals-wrapper {
	border-color: #e5e7eb !important;
}

.wc-block-cart .wc-block-components-totals-item__label {
	color: #6b7280 !important;
	font-family: var(--wp--preset--font-family--inter) !important;
}

.wc-block-cart .wc-block-components-totals-item__value {
	color: #111 !important;
	font-family: var(--wp--preset--font-family--antonio) !important;
}

/* Cart total footer */
.wc-block-cart .wc-block-components-totals-footer-item .wc-block-components-totals-item__label {
	color: #111 !important;
	font-family: var(--wp--preset--font-family--oswald) !important;
	text-transform: uppercase;
	letter-spacing: 0.08em;
}

.wc-block-cart .wc-block-components-totals-footer-item .wc-block-components-totals-item__value {
	color: var(--wp--preset--color--caramel) !important;
	font-size: 1.25rem !important;
	font-weight: 600 !important;
}

/* Shipping calculator */
.wc-block-cart .wc-block-components-totals-shipping p,
.wc-block-cart .wc-block-components-totals-shipping span,
.wc-block-cart .wc-block-components-shipping-calculator-address label {
	color: #6b7280 !important;
}

.wc-block-cart .wc-block-components-shipping-calculator-address input,
.wc-block-cart .wc-block-components-shipping-calculator-address select {
	background: #fff !important;
	border: 1px solid #d1d5db !important;
	border-radius: 0.5rem !important;
	color: #111 !important;
	padding: 12px 16px !important;
}

/* Checkout button */
.wc-block-cart .wc-block-cart__submit .wp-element-button,
.wc-block-cart .wc-block-cart__submit-button {
	background-color: var(--wp--preset--color--caramel) !important;
	color: white !important;
	border: none !important;
	border-radius: 2rem !important;
	font-family: var(--wp--preset--font-family--oswald) !important;
	font-size: 0.875rem !important;
	font-weight: 500 !important;
	text-transform: uppercase !important;
	letter-spacing: 0.12em !important;
	padding: 16px 40px !important;
	transition: background-color 0.3s ease;
}

.wc-block-cart .wc-block-cart__submit .wp-element-button:hover,
.wc-block-cart .wc-block-cart__submit-button:hover {
	background-color: var(--wp--preset--color--dark-caramel) !important;
}

/* Continue shopping link */
.wc-block-cart a:not(.wp-element-button) {
	color: var(--wp--preset--color--caramel) !important;
}

/* Coupon/discount section */
.wc-block-cart .wc-block-components-totals-coupon__button {
	background-color: var(--wp--preset--color--caramel) !important;
	color: white !important;
	border: none !important;
	border-radius: 0.5rem !important;
}

.wc-block-cart .wc-block-components-totals-coupon__input input {
	background: #fff !important;
	border: 1px solid #d1d5db !important;
	border-radius: 0.5rem !important;
	color: #111 !important;
}

/* Empty cart */
.wc-block-cart .wc-block-cart__empty-cart__title {
	color: #111 !important;
	font-family: var(--wp--preset--font-family--bebas-neue) !important;
}

.wc-block-cart p.wc-block-cart__empty-cart__message {
	color: #6b7280 !important;
}

/* ─── CART PAGE CROSS-SELLS (product-collection block) ─ */

.woocommerce-cart .wp-block-woocommerce-product-collection {
	background: transparent !important;
}

/* Cross-sells heading */
.woocommerce-cart .wp-block-woocommerce-product-collection > .wp-block-heading {
	font-family: var(--wp--preset--font-family--oswald) !important;
	color: var(--wp--preset--color--caramel) !important;
	text-transform: uppercase !important;
	font-size: 1.125rem !important;
	letter-spacing: 0.12em !important;
}

/* Product cards in cross-sells */
.woocommerce-cart .wc-block-product-template .wc-block-product {
	background: #fff !important;
	border: 1px solid #e5e7eb !important;
	border-radius: 12px !important;
	padding: 16px !important;
	overflow: hidden;
}

.woocommerce-cart .wc-block-product .wc-block-components-product-image img {
	border-radius: 8px !important;
}

/* Product titles inside cross-sells */
.woocommerce-cart .wc-block-product .wp-block-post-title {
	display: block !important;
}

.woocommerce-cart .wc-block-product .wp-block-post-title,
.woocommerce-cart .wc-block-product .wp-block-post-title a {
	color: #111 !important;
	font-family: var(--wp--preset--font-family--inter) !important;
	font-weight: 600 !important;
	text-decoration: none !important;
}

.woocommerce-cart .wc-block-product .wp-block-post-title a:hover {
	color: var(--wp--preset--color--caramel) !important;
}

/* Product price */
.woocommerce-cart .wc-block-product .wc-block-components-product-price {
	color: var(--wp--preset--color--caramel) !important;
	font-family: var(--wp--preset--font-family--antonio) !important;
}

/* Add to cart button */
.woocommerce-cart .wc-block-product .wc-block-components-product-button__button {
	background-color: var(--wp--preset--color--caramel) !important;
	color: white !important;
	border: none !important;
	border-radius: 2rem !important;
	font-family: var(--wp--preset--font-family--oswald) !important;
	text-transform: uppercase !important;
	letter-spacing: 0.1em !important;
	font-size: 0.8125rem !important;
}

.woocommerce-cart .wc-block-product .wc-block-components-product-button__button:hover {
	background-color: var(--wp--preset--color--dark-caramel) !important;
}

/* Legacy wc-block-grid (older WooCommerce product blocks) */
.woocommerce-cart .wc-block-grid {
	background: transparent !important;
}

.woocommerce-cart .wc-block-grid__product {
	background: #222 !important;
	border: 1px solid rgba(255, 255, 255, 0.06) !important;
	border-radius: 12px !important;
	padding: 16px !important;
}

.woocommerce-cart .wc-block-grid__product-image img {
	border-radius: 8px !important;
}

.woocommerce-cart .wc-block-grid__product-title {
	color: white !important;
}

.woocommerce-cart .wc-block-grid__product-price {
	color: var(--wp--preset--color--caramel) !important;
	font-family: var(--wp--preset--font-family--antonio) !important;
}

.woocommerce-cart .wc-block-grid__product-add-to-cart .wp-element-button {
	background-color: var(--wp--preset--color--caramel) !important;
	color: white !important;
	border: none !important;
	border-radius: 2rem !important;
}

/* ─── MY ACCOUNT — SINGLE ORDER VIEW ─────────── */

.woocommerce-account .woocommerce-order-details {
	margin-top: 24px;
}

.woocommerce-account .woocommerce-order-details h2,
.woocommerce-account .woocommerce-customer-details h2,
.woocommerce-account .woocommerce-column__title {
	font-family: var(--wp--preset--font-family--bebas-neue) !important;
	color: white !important;
	font-size: 1.5rem !important;
	text-transform: uppercase !important;
	margin-bottom: 16px !important;
	padding-bottom: 12px;
	border-bottom: 1px solid #333;
}

.woocommerce-account .woocommerce-table--order-details {
	width: 100%;
	border-collapse: collapse;
}

.woocommerce-account .woocommerce-table--order-details th,
.woocommerce-account .woocommerce-table--order-details td {
	padding: 14px 16px !important;
	border-bottom: 1px solid #333 !important;
	color: #D1D5DB !important;
	font-family: var(--wp--preset--font-family--inter) !important;
	font-size: 0.875rem !important;
}

.woocommerce-account .woocommerce-table--order-details thead th {
	color: #9CA3AF !important;
	font-family: var(--wp--preset--font-family--oswald) !important;
	text-transform: uppercase !important;
	letter-spacing: 0.08em !important;
	font-size: 0.75rem !important;
	font-weight: 500 !important;
}

.woocommerce-account .woocommerce-table--order-details .product-name a {
	color: white !important;
	text-decoration: none !important;
	font-family: var(--wp--preset--font-family--antonio) !important;
	text-transform: uppercase;
}

.woocommerce-account .woocommerce-table--order-details .product-name a:hover {
	color: var(--wp--preset--color--caramel) !important;
}

.woocommerce-account .woocommerce-table--order-details tfoot th {
	color: #9CA3AF !important;
}

.woocommerce-account .woocommerce-table--order-details tfoot tr:last-child th,
.woocommerce-account .woocommerce-table--order-details tfoot tr:last-child td {
	color: white !important;
	font-weight: 600 !important;
	border-bottom: none !important;
}

/* Order status badge */
.woocommerce-account .woocommerce-order-details mark.order-status {
	background: rgba(198, 134, 66, 0.15);
	color: var(--wp--preset--color--caramel);
	padding: 4px 12px;
	border-radius: 999px;
	font-family: var(--wp--preset--font-family--oswald);
	font-size: 0.75rem;
	text-transform: uppercase;
	letter-spacing: 0.08em;
}

/* Customer details on order view */
.woocommerce-account .woocommerce-customer-details address {
	color: #D1D5DB !important;
	font-family: var(--wp--preset--font-family--inter) !important;
	font-size: 0.875rem !important;
	line-height: 1.8 !important;
	font-style: normal !important;
	background: #222;
	border-radius: 0.75rem;
	padding: 20px 24px;
}

/* Order again button */
.woocommerce-account .order-again .button {
	margin-top: 16px;
}

/* ─── MY ACCOUNT — ADDRESSES PAGE ─────────────── */

.woocommerce-account .woocommerce-MyAccount-content > p {
	color: #9CA3AF !important;
	font-family: var(--wp--preset--font-family--inter) !important;
	font-size: 0.875rem !important;
	margin-bottom: 24px !important;
}

div.col2-set.addresses {
	display: grid !important;
	grid-template-columns: 1fr 1fr !important;
	gap: 24px !important;
	width: 100% !important;
	overflow: visible !important;
}

div.col2-set.addresses::before,
div.col2-set.addresses::after {
	display: none !important;
	content: none !important;
}

@media (max-width: 768px) {
	div.col2-set.addresses {
		grid-template-columns: 1fr !important;
	}
}

div.col2-set.addresses > .col-1,
div.col2-set.addresses > .col-2 {
	background: #222 !important;
	border-radius: 1rem !important;
	padding: 28px !important;
	width: auto !important;
	max-width: none !important;
	float: none !important;
	margin: 0 !important;
	box-sizing: border-box !important;
}

.woocommerce-account .woocommerce-Address-title h2,
.woocommerce-account .woocommerce-Address-title h3,
.woocommerce-account .woocommerce-column__title {
	font-family: var(--wp--preset--font-family--oswald) !important;
	color: white !important;
	font-size: 1rem !important;
	text-transform: uppercase !important;
	letter-spacing: 0.1em !important;
	margin: 0 0 12px !important;
}

.woocommerce-account .woocommerce-Address-title a {
	font-family: var(--wp--preset--font-family--oswald) !important;
	font-size: 0.6875rem !important;
	text-transform: uppercase !important;
	letter-spacing: 0.1em !important;
	display: inline-block;
	margin-bottom: 12px;
}

.woocommerce-account .woocommerce-Addresses address,
.woocommerce-account .u-columns address {
	color: #D1D5DB !important;
	font-family: var(--wp--preset--font-family--inter) !important;
	font-size: 0.875rem !important;
	line-height: 1.8 !important;
	font-style: normal !important;
}

/* Address edit form fieldset */
.woocommerce-account .woocommerce-address-fields .form-row {
	margin-bottom: 16px;
}

.woocommerce-account .woocommerce-address-fields select {
	appearance: none;
	-webkit-appearance: none;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%239CA3AF' stroke-width='2'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
	background-repeat: no-repeat;
	background-position: right 16px center;
	padding-right: 40px !important;
}

/* ─── MY ACCOUNT — ACCOUNT DETAILS FORM ──────── */

.woocommerce-account .woocommerce-EditAccountForm fieldset {
	border: 1px solid #333;
	border-radius: 1rem;
	padding: 24px;
	margin: 24px 0;
}

.woocommerce-account .woocommerce-EditAccountForm fieldset legend {
	color: white !important;
	font-family: var(--wp--preset--font-family--bebas-neue) !important;
	font-size: 1.25rem !important;
	text-transform: uppercase !important;
	padding: 0 12px;
}

.woocommerce-account .woocommerce-EditAccountForm .form-row {
	margin-bottom: 16px;
}

.woocommerce-account .woocommerce-EditAccountForm em {
	color: #666 !important;
	font-size: 0.8125rem;
}

.woocommerce-account .woocommerce-EditAccountForm .show-password-input {
	color: #9CA3AF !important;
}

/* ─── BREADCRUMBS ──────────────────────────────── */

.woocommerce-breadcrumb {
	font-family: var(--wp--preset--font-family--inter);
	font-size: 0.8125rem;
	color: #666;
	padding: 0;
	margin: 0;
	display: flex;
	align-items: center;
	gap: 0;
	background: rgba(255, 255, 255, 0.06);
	padding: 8px 16px;
	border-radius: 999px;
	width: fit-content;
}

.woocommerce-breadcrumb a {
	color: #999;
	text-decoration: none;
	transition: color 0.3s;
}

.woocommerce-breadcrumb a:hover {
	color: var(--wp--preset--color--caramel);
}


/* ─── BREADCRUMBS ──────────────────────────────── */

.saelk-breadcrumbs {
	max-width: 1280px;
	margin: 0 auto;
	padding: 16px 24px 0;
	font-family: var(--wp--preset--font-family--inter);
	font-size: 0.8125rem;
}

.saelk-breadcrumbs a {
	color: #999;
	text-decoration: none;
	transition: color 0.3s;
}

.saelk-breadcrumbs a:hover {
	color: var(--wp--preset--color--caramel);
}

.saelk-breadcrumbs .sep {
	color: #ccc;
	margin: 0 8px;
}

.saelk-breadcrumbs .current {
	color: #111;
	font-weight: 500;
	background: #e8e5df;
	padding: 4px 12px;
	border-radius: 999px;
}

/* ─── FILTER TABS ──────────────────────────────── */

.saelk-filter-tabs {
	display: flex;
	justify-content: center;
	gap: 10px;
	padding: 32px 24px 0;
	flex-wrap: wrap;
}

.saelk-filter-tab {
	font-family: var(--wp--preset--font-family--oswald);
	font-size: 0.8125rem;
	font-weight: 500;
	text-transform: uppercase;
	letter-spacing: 0.08em;
	color: #333;
	text-decoration: none;
	padding: 8px 20px;
	border: 1px solid #ccc;
	border-radius: 999px;
	transition: all 0.3s ease;
}

.saelk-filter-tab:hover {
	border-color: #333;
	color: #111;
}

.saelk-filter-tab.is-active {
	background-color: #333;
	color: white;
	border-color: #333;
}

/* ─── PRODUCT SEARCH BAR ──────────────────────── */

.saelk-product-search {
	max-width: 560px;
	margin: 24px auto 40px;
	padding: 0 24px;
}

.saelk-product-search-input {
	display: block;
	width: 100%;
	padding: 14px 0;
	border: 1px solid #ddd;
	border-radius: 999px;
	font-family: var(--wp--preset--font-family--inter);
	font-size: 0.9375rem;
	color: #333;
	background: white;
	outline: none;
	text-align: center;
	transition: border-color 0.3s;
}

.saelk-product-search-input:focus {
	border-color: var(--wp--preset--color--caramel);
}

.saelk-product-search-input::placeholder {
	color: #999;
	text-align: center;
}

.saelk-product-search-input::-webkit-input-placeholder {
	text-align: center;
}

.saelk-product-search-input::-moz-placeholder {
	text-align: center;
}

/* ─── WEIGHT BADGE (top-left on product card) ── */

li.wc-block-product .saelk-weight-badge,
.product .saelk-weight-badge {
	position: absolute;
	top: 12px;
	left: 12px;
	background: rgba(0, 0, 0, 0.7);
	color: white;
	font-family: var(--wp--preset--font-family--oswald);
	font-size: 0.6875rem;
	font-weight: 500;
	text-transform: uppercase;
	letter-spacing: 0.05em;
	padding: 4px 10px;
	border-radius: 4px;
	z-index: 2;
}

/* ─── HEART ICON (top-right on product card) ─── */

li.wc-block-product .saelk-heart-icon,
.product .saelk-heart-icon {
	position: absolute;
	top: 12px;
	right: 12px;
	color: white;
	cursor: pointer;
	z-index: 2;
	transition: all 0.3s;
	width: 34px;
	height: 34px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: rgba(0, 0, 0, 0.3);
	border-radius: 50%;
	backdrop-filter: blur(4px);
}

li.wc-block-product .saelk-heart-icon:hover,
.product .saelk-heart-icon:hover {
	background: rgba(0, 0, 0, 0.5);
	color: var(--wp--preset--color--caramel);
}

/* ─── CATEGORY LABEL (on product card) ─────────── */

li.wc-block-product .saelk-cat-label,
.product .saelk-cat-label {
	display: block;
	font-family: var(--wp--preset--font-family--oswald);
	font-size: 0.625rem;
	font-weight: 500;
	text-transform: uppercase;
	letter-spacing: 0.15em;
	color: var(--wp--preset--color--caramel);
	padding: 12px 20px 0;
}

/* ─── HEART FAVOURITED STATE ───────────────────── */

.saelk-heart-icon.is-favourited {
	color: var(--wp--preset--color--caramel) !important;
	background: rgba(0, 0, 0, 0.5) !important;
}

/* ─── FAVOURITES PAGE GRID ─────────────────────── */

.saelk-favourites-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 24px;
	width: 100%;
}

@media (max-width: 960px) {
	.saelk-favourites-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
	.saelk-favourites-grid { grid-template-columns: 1fr; }
}

.saelk-fav-card {
	background: #222;
	border-radius: 1rem;
	overflow: hidden;
	transition: transform 0.4s ease, box-shadow 0.4s ease;
	position: relative;
	cursor: pointer;
}

.saelk-fav-card .saelk-fav-title a::after {
	content: '';
	position: absolute;
	inset: 0;
	z-index: 1;
}

.saelk-fav-card:hover {
	transform: translateY(-4px);
}

.saelk-fav-card-image {
	position: relative;
	overflow: hidden;
	aspect-ratio: 1;
}

.saelk-fav-card-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.7s ease;
}

.saelk-fav-card:hover img {
	transform: scale(1.1);
}

.saelk-fav-card .saelk-heart-icon {
	z-index: 3;
}

.saelk-fav-card:hover {
	box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
}

.saelk-fav-card .saelk-cat-label {
	padding: 12px 16px 0;
}

.saelk-fav-title {
	font-family: var(--wp--preset--font-family--antonio);
	font-size: 1rem;
	font-weight: 600;
	text-transform: uppercase;
	padding: 4px 16px;
	margin: 0;
}

.saelk-fav-title a {
	color: white;
	text-decoration: none;
}

.saelk-fav-title a:hover {
	color: var(--wp--preset--color--caramel);
}

.saelk-fav-price {
	display: block;
	padding: 4px 16px 16px;
	font-family: var(--wp--preset--font-family--antonio);
	font-size: 0.9375rem;
	color: white;
}

/* ─── PRODUCT CARD DESCRIPTION + SKOÐA ─────────── */

.saelk-card-description {
	font-family: var(--wp--preset--font-family--inter);
	font-size: 0.8125rem;
	color: #9CA3AF;
	line-height: 1.5;
	padding: 0 20px;
	margin: 4px 0 0;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

.saelk-card-skoda {
	padding: 12px 20px 0;
	display: flex;
	justify-content: flex-end;
}

.saelk-card-skoda a {
	display: flex;
	align-items: center;
	gap: 6px;
	color: var(--wp--preset--color--caramel);
	font-family: var(--wp--preset--font-family--oswald);
	font-size: 0.8125rem;
	font-weight: 500;
	letter-spacing: 0.05em;
	text-decoration: none;
	text-transform: uppercase;
	transition: gap 0.3s ease;
}

.saelk-card-skoda a:hover {
	gap: 10px;
}

/* Product card animations are handled by scroll-animations.js */

/* ─── PAGINATION ───────────────────────────────── */

.wc-block-product-template + .wp-block-query-pagination {
	padding: 40px 24px;
	justify-content: center;
}

/* ─── ORDER CONFIRMATION PAGE ─────────────────── */

.saelk-order-confirmation {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	text-align: center;
	min-height: 60vh;
	padding: 180px 24px 80px;
}

.saelk-order-check {
	width: 120px;
	height: 120px;
	border-radius: 50%;
	background-color: var(--wp--preset--color--caramel);
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 32px;
	animation: saelk-check-pop 0.5s ease both;
}

@keyframes saelk-check-pop {
	0% { transform: scale(0); opacity: 0; }
	60% { transform: scale(1.15); }
	100% { transform: scale(1); opacity: 1; }
}

.saelk-order-heading {
	font-family: var(--wp--preset--font-family--bebas-neue) !important;
	font-size: 3rem !important;
	color: #1A1A1A !important;
	text-transform: uppercase !important;
	margin: 0 0 12px !important;
	letter-spacing: -0.01em;
}

.saelk-order-thank {
	font-family: var(--wp--preset--font-family--inter) !important;
	font-size: 1.125rem !important;
	color: #666 !important;
	margin: 0 0 8px !important;
}

.saelk-order-desc {
	font-family: var(--wp--preset--font-family--inter) !important;
	font-size: 0.9375rem !important;
	color: #999 !important;
	max-width: 480px;
	line-height: 1.7 !important;
	margin: 0 0 32px !important;
}

.saelk-order-badge {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	padding: 14px 28px;
	background: rgba(22, 163, 106, 0.08);
	border: 1px solid rgba(22, 163, 106, 0.25);
	border-radius: 0.75rem;
	margin-bottom: 32px;
}

.saelk-order-badge span {
	font-family: var(--wp--preset--font-family--inter) !important;
	font-size: 0.9375rem;
	font-weight: 500;
	color: #16a34a;
}

.saelk-order-btn {
	display: inline-block;
	background-color: var(--wp--preset--color--caramel) !important;
	color: white !important;
	text-decoration: none !important;
	font-family: var(--wp--preset--font-family--oswald) !important;
	font-size: 0.875rem !important;
	font-weight: 500 !important;
	text-transform: uppercase !important;
	letter-spacing: 0.12em !important;
	padding: 18px 48px !important;
	border-radius: 0.75rem;
	transition: background-color 0.3s ease;
}

.saelk-order-btn:hover {
	background-color: var(--wp--preset--color--dark-caramel) !important;
}

/* ─── MOBILE RESPONSIVE ──────────────────────────── */

@media (max-width: 768px) {
	/* Reduce excessive top padding on all pages */
	.saelk-single-product {
		padding-top: 80px !important;
	}

	.woocommerce-account .woocommerce {
		padding-top: 100px !important;
		padding-left: 16px;
		padding-right: 16px;
		padding-bottom: 40px;
	}

	.wc-block-cart {
		padding-top: 100px !important;
		padding-left: 16px;
		padding-right: 16px;
		padding-bottom: 40px;
	}

	body.woocommerce-checkout .wp-site-blocks {
		padding-top: 60px !important;
	}

	/* Checkout container — centered with equal horizontal padding.
	   WC Blocks ships its own layout CSS that can apply negative margins
	   to the sidebar/main on mobile; force everything centered + 100% width
	   so nothing bleeds past the right edge. */
	.woocommerce-checkout .wc-block-checkout,
	.woocommerce-checkout .wp-block-woocommerce-checkout {
		padding: 8px 16px 24px !important;
		margin-left: auto !important;
		margin-right: auto !important;
		box-sizing: border-box !important;
		max-width: 100% !important;
	}

	.woocommerce-checkout .wc-block-checkout__main,
	.woocommerce-checkout .wc-block-checkout__sidebar,
	.woocommerce-checkout .wc-block-components-order-summary {
		width: 100% !important;
		max-width: 100% !important;
		margin-left: 0 !important;
		margin-right: 0 !important;
		box-sizing: border-box !important;
	}

	/* Single product: stack quantity + button */
	.saelk-single-product .wc-block-add-to-cart-form .quantity {
		display: flex;
		width: 100%;
		margin-right: 0;
		margin-bottom: 12px;
	}

	.saelk-single-product .wc-block-add-to-cart-form .quantity .qty {
		flex: 1;
		width: auto !important;
	}

	.saelk-single-product .single_add_to_cart_button,
	.saelk-single-product .wc-block-add-to-cart-form .wp-element-button {
		padding: 14px 24px !important;
		width: 100%;
		display: block;
	}

	/* Product grid cards: tighter padding */
	.wc-block-product-template.is-flex-container {
		padding: 0 16px;
	}

	li.wc-block-product .wp-block-post-title,
	li.wc-block-product h3 {
		/* Right padding leaves room for the always-visible quick-add widget */
		padding: 12px 130px 4px 16px !important;
		font-size: 1rem !important;
	}

	li.wc-block-product .wp-block-woocommerce-product-price,
	li.wc-block-product .wc-block-components-product-price {
		padding: 4px 130px 16px 16px !important;
	}

	/* Compact the quick-add widget on mobile so it takes less horizontal room */
	.saelk-quick-add {
		height: 42px;
		padding: 3px 3px 3px 6px;
		bottom: 12px;
		right: 12px;
		gap: 1px;
	}
	.saelk-qa-btn {
		width: 28px;
		height: 28px;
	}
	.saelk-qa-cart {
		width: 36px;
		height: 36px;
		margin-left: 4px;
	}
	.saelk-qa-qty {
		min-width: 22px;
		font-size: 0.9375rem;
	}

	li.wc-block-product .wp-element-button,
	li.wc-block-product .add_to_cart_button {
		margin: 0 16px 16px !important;
		width: calc(100% - 32px) !important;
	}

	/* Category card labels */
	li.wc-block-product .saelk-cat-label,
	.product .saelk-cat-label {
		padding: 10px 16px 0;
	}

	.saelk-card-description {
		padding: 0 16px;
	}

	.saelk-card-skoda {
		padding: 10px 16px 0;
	}

	/* Filter tabs + search */
	.saelk-filter-tabs {
		padding: 20px 16px 0;
	}

	.saelk-filter-tab {
		padding: 6px 14px;
		font-size: 0.75rem;
	}

	.saelk-product-search {
		padding: 0 16px;
		margin: 16px auto 24px;
	}

	/* Breadcrumbs */
	.saelk-breadcrumbs {
		padding: 12px 16px 0;
		font-size: 0.75rem;
	}

	/* Calendar day cells — prevent overflow */
	.saelk-cal-day {
		width: 28px;
		height: 28px;
		font-size: 0.75rem;
		margin: 1px auto;
	}

	.saelk-pickup-day {
		width: 28px;
		height: 28px;
		font-size: 0.75rem;
	}

	/* Order confirmation */
	.saelk-order-confirmation {
		padding: 100px 20px 60px;
	}

	.saelk-order-check {
		width: 80px;
		height: 80px;
		margin-bottom: 24px;
	}

	.saelk-order-check svg {
		width: 40px;
		height: 40px;
	}

	.saelk-order-heading {
		font-size: clamp(1.75rem, 8vw, 3rem) !important;
	}

	.saelk-order-thank {
		font-size: 1rem !important;
	}

	.saelk-order-desc {
		font-size: 0.875rem !important;
	}

	.saelk-order-btn {
		padding: 16px 32px !important;
		width: 100%;
		text-align: center;
		box-sizing: border-box;
	}

	.saelk-order-badge {
		padding: 10px 16px;
	}

	.saelk-order-badge span {
		font-size: 0.8125rem;
	}

	/* Account nav */
	.woocommerce-account .woocommerce-MyAccount-navigation ul li a {
		padding: 12px 20px;
	}

	/* Account address cards */
	div.col2-set.addresses > .col-1,
	div.col2-set.addresses > .col-2 {
		padding: 20px !important;
	}

	/* Login/register forms */
	.woocommerce-account .woocommerce-form-login,
	.woocommerce-account .woocommerce-form-register {
		padding: 24px !important;
	}

	/* Account fieldsets */
	.woocommerce-account .woocommerce-EditAccountForm fieldset {
		padding: 16px;
	}

	/* Order details table */
	.woocommerce-account .woocommerce-orders-table th,
	.woocommerce-account .woocommerce-orders-table td,
	.woocommerce-account .woocommerce-table--order-details th,
	.woocommerce-account .woocommerce-table--order-details td {
		padding: 10px 8px !important;
		font-size: 0.8125rem !important;
	}

	/* Customer address on order view */
	.woocommerce-account .woocommerce-customer-details address {
		padding: 16px !important;
	}

	/* Full-width buttons */
	.woocommerce-checkout .wc-block-components-checkout-place-order-button,
	.woocommerce-checkout .wc-block-checkout__actions .wp-element-button {
		padding: 14px 24px !important;
		width: 100%;
	}

	.wc-block-cart .wc-block-cart__submit .wp-element-button,
	.wc-block-cart .wc-block-cart__submit-button {
		padding: 14px 24px !important;
	}

	/* Favourites cards */
	.saelk-fav-card .saelk-cat-label { padding: 10px 12px 0; }
	.saelk-fav-title { padding: 4px 12px; }
	.saelk-fav-price { padding: 4px 12px 12px; }
}

@media (max-width: 480px) {
	/* Extra small phones */
	.saelk-order-confirmation {
		padding: 80px 16px 40px;
	}

	/* Orders table: horizontal scroll */
	.woocommerce-account .woocommerce-orders-table {
		display: block;
		overflow-x: auto;
		-webkit-overflow-scrolling: touch;
	}

	/* Even tighter account nav */
	.woocommerce-account .woocommerce-MyAccount-navigation ul li a {
		padding: 10px 16px;
		font-size: 0.8125rem;
	}

	/* Calendar extra small */
	.saelk-cal-day {
		width: 24px;
		height: 24px;
		font-size: 0.6875rem;
		border-radius: 6px;
	}

	.saelk-pickup-day {
		width: 24px;
		height: 24px;
		font-size: 0.6875rem;
		border-radius: 6px;
	}

	/* Pickup widget tighter */
	.saelk-pickup-widget {
		padding: 16px;
	}

	.saelk-pickup-section {
		padding: 16px;
	}

}

/* Single product add-to-cart: stack qty + button on tablet/mobile.
   Qty pill stays compact and centered; button takes full width below. */
@media (max-width: 768px) {
	body.single-product .saelk-single-product .wc-block-add-to-cart-form,
	body.single-product .saelk-single-product form.cart,
	body.single-product .saelk-single-product .wp-block-woocommerce-add-to-cart-form,
	body.single-product .saelk-single-product .wp-block-woocommerce-add-to-cart-form form {
		display: flex !important;
		flex-direction: column !important;
		align-items: center !important;
		gap: 16px !important;
		width: 100% !important;
	}
	body.single-product .saelk-single-product .quantity {
		display: inline-flex !important;
		justify-content: center !important;
		align-items: center !important;
		gap: 4px !important;
		width: auto !important;
		margin: 0 !important;
		padding: 6px !important;
		box-sizing: border-box !important;
	}
	body.single-product .saelk-single-product .quantity .qty {
		flex: 0 0 auto !important;
		width: 56px !important;
	}
	body.single-product .saelk-single-product .single_add_to_cart_button,
	body.single-product .saelk-single-product .wp-element-button {
		width: 100% !important;
		padding: 16px 24px !important;
		white-space: nowrap !important;
	}
}

/* ─── Empty cart state ──────────────────────────────────────────── */

.saelk-empty-cart {
	max-width: 560px;
	margin: 40px auto 64px;
	padding: 48px 32px 40px;
	background-color: #FFFFFF;
	border: 1px solid #E5DFD3;
	border-radius: 12px;
	text-align: center;
	box-shadow: 0 1px 2px rgba(26, 26, 26, 0.04);
}

.saelk-empty-cart-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 88px;
	height: 88px;
	margin: 0 auto 24px;
	border-radius: 50%;
	background-color: #FAF7F2;
	color: #C68642;
}

.saelk-empty-cart-eyebrow {
	font-family: var(--wp--preset--font-family--oswald);
	font-size: 11px;
	font-weight: 500;
	letter-spacing: 0.3em;
	text-transform: uppercase;
	color: #C68642;
	margin: 0 0 8px;
}

.saelk-empty-cart-title {
	font-family: var(--wp--preset--font-family--bebas-neue);
	font-size: clamp(2rem, 5vw, 3rem);
	font-weight: 400;
	letter-spacing: -0.01em;
	line-height: 1.05;
	color: #1A1A1A;
	margin: 0 0 12px;
	text-transform: uppercase;
}

.saelk-empty-cart-text {
	font-family: var(--wp--preset--font-family--inter);
	font-size: 1rem;
	line-height: 1.65;
	color: #4A4A4A;
	margin: 0 auto 28px;
	max-width: 420px;
}

.saelk-empty-cart-actions {
	display: flex;
	gap: 12px;
	justify-content: center;
	flex-wrap: wrap;
}

.saelk-empty-cart-btn {
	display: inline-block;
	font-family: var(--wp--preset--font-family--oswald);
	font-size: 0.8125rem;
	font-weight: 600;
	letter-spacing: 0.16em;
	text-transform: uppercase;
	text-decoration: none;
	padding: 14px 26px;
	border-radius: 999px;
	transition: background-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
	border: 1px solid transparent;
	line-height: 1;
}

.saelk-empty-cart-btn-primary {
	background-color: #C68642;
	color: #FAF7F2 !important;
}

.saelk-empty-cart-btn-primary:hover {
	background-color: #A56B2E;
	color: #FAF7F2 !important;
	transform: translateY(-1px);
}

.saelk-empty-cart-btn-secondary {
	background-color: transparent;
	color: #1A1A1A !important;
	border-color: #1A1A1A;
}

.saelk-empty-cart-btn-secondary:hover {
	background-color: #1A1A1A;
	color: #FAF7F2 !important;
	transform: translateY(-1px);
}

/* Hide the WC default "Return to shop" link if it still renders (we have our own CTAs). */
.saelk-empty-cart + p.return-to-shop,
.woocommerce-cart .wc-empty-cart-message + p.return-to-shop {
	display: none;
}

@media (max-width: 600px) {
	.saelk-empty-cart {
		padding: 36px 22px 32px;
		margin: 24px 16px 48px;
	}
	.saelk-empty-cart-icon {
		width: 72px;
		height: 72px;
	}
	.saelk-empty-cart-actions {
		flex-direction: column;
		align-items: stretch;
	}
	.saelk-empty-cart-btn {
		text-align: center;
	}
}

/* ─── PRODUCT ARCHIVE PAGINATION ──────────────────
   Pagination at the bottom of category/shop archives and the
   product search results template. Pill-shaped numbers, caramel
   highlight for the current page, caramel hover everywhere else.
   Scoped to inside .wp-block-woocommerce-product-collection so
   we don't restyle pagination on the blog/post archive. */
.wp-block-woocommerce-product-collection .wp-block-query-pagination {
	display: flex !important;
	justify-content: center;
	align-items: center;
	gap: 4px;
	margin: 48px auto 16px;
	padding: 0 24px;
	flex-wrap: wrap;
}

.wp-block-woocommerce-product-collection .wp-block-query-pagination-numbers,
.wp-block-woocommerce-product-collection .wp-block-query-pagination-previous,
.wp-block-woocommerce-product-collection .wp-block-query-pagination-next {
	font-family: var(--wp--preset--font-family--oswald);
	font-size: 0.875rem;
	font-weight: 500;
	letter-spacing: 0.04em;
	color: #1A1A1A;
}

.wp-block-woocommerce-product-collection .wp-block-query-pagination-numbers .page-numbers {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 40px;
	height: 40px;
	padding: 0 12px;
	margin: 0 2px;
	border: 1px solid transparent;
	border-radius: 999px;
	text-decoration: none;
	color: #1A1A1A;
	transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.wp-block-woocommerce-product-collection .wp-block-query-pagination-numbers .page-numbers:hover {
	border-color: var(--wp--preset--color--caramel);
	color: var(--wp--preset--color--caramel);
}

.wp-block-woocommerce-product-collection .wp-block-query-pagination-numbers .page-numbers.current {
	background: var(--wp--preset--color--caramel);
	border-color: var(--wp--preset--color--caramel);
	color: #fff;
}

.wp-block-woocommerce-product-collection .wp-block-query-pagination-numbers .page-numbers.dots {
	border: none;
	min-width: 24px;
}

.wp-block-woocommerce-product-collection .wp-block-query-pagination-previous,
.wp-block-woocommerce-product-collection .wp-block-query-pagination-next {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	padding: 0 14px;
	height: 40px;
	border: 1px solid #1A1A1A;
	border-radius: 999px;
	text-decoration: none;
	transition: background-color 0.2s ease, color 0.2s ease;
}

.wp-block-woocommerce-product-collection .wp-block-query-pagination-previous:hover,
.wp-block-woocommerce-product-collection .wp-block-query-pagination-next:hover {
	background: var(--wp--preset--color--caramel);
	border-color: var(--wp--preset--color--caramel);
	color: #fff;
}

@media (max-width: 540px) {
	.wp-block-woocommerce-product-collection .wp-block-query-pagination-numbers .page-numbers {
		min-width: 36px;
		height: 36px;
		padding: 0 8px;
		font-size: 0.8125rem;
	}
	.wp-block-woocommerce-product-collection .wp-block-query-pagination-previous,
	.wp-block-woocommerce-product-collection .wp-block-query-pagination-next {
		padding: 0 10px;
		height: 36px;
		font-size: 0.8125rem;
	}
}
