/**
 * Gina Theme — Main Stylesheet
 *
 * Minimalist editorial design with warm earthy tones.
 * WooCommerce-specific styles are in woocommerce.css (loaded conditionally).
 *
 * @package Gina
 */

/* ==========================================================================
   CSS Custom Properties
   ========================================================================== */

:root {
	/* Colors — near-monochrome, warm-neutral base */
	--color-primary: #1c1b19;
	--color-primary-hover: #4b4843;
	--color-primary-light: #f1f0ed;
	--color-sale: #974736;
	--color-footer-bg: #f6f5f3;
	--color-footer-text: #6a6661;
	--color-text: #1c1b19;
	--color-text-light: #6a6661;
	--color-text-muted: #9a968f;
	--color-bg: #ffffff;
	--color-bg-light: #f6f5f3;
	--color-bg-alt: #ecebe7;
	--color-border: #e4e2dd;
	--color-border-light: #efeeea;
	--color-success: #28a745;
	--color-error: #9e422c;
	--color-warning: #ffc107;

	/* Typography */
	--font-body: 'Manrope', -apple-system, BlinkMacSystemFont, sans-serif;
	--font-heading: 'Noto Serif', Georgia, 'Times New Roman', serif;
	--fs-xs: 0.75rem;
	--fs-sm: 0.875rem;
	--fs-base: 1rem;
	--fs-md: 1.125rem;
	--fs-lg: 1.25rem;
	--fs-xl: 1.5rem;
	--fs-2xl: 2rem;
	--fs-3xl: 2.5rem;
	--fs-4xl: 3.5rem;
	--fs-5xl: 4.5rem;
	--lh-tight: 1.15;
	--lh-base: 1.6;
	--fw-normal: 400;
	--fw-medium: 500;
	--fw-semibold: 600;
	--fw-bold: 700;

	/* Layout */
	--container-width: 1280px;
	--container-narrow: 800px;
	--container-wide: clamp(1400px, calc(100vh * 1.8), 1800px);
	--container-padding: 2rem;
	--header-height: 88px;
	--sidebar-width: 280px;

	/* Spacing */
	--sp-xs: 0.25rem;
	--sp-sm: 0.5rem;
	--sp-md: 1rem;
	--sp-lg: 1.5rem;
	--sp-xl: 2rem;
	--sp-2xl: 3rem;
	--sp-3xl: 4rem;
	--sp-4xl: 6rem;
	--sp-5xl: 8rem;

	/* Effects */
	--radius-sm: 2px;
	--radius-md: 2px;
	--radius-lg: 3px;
	--radius-xl: 5px;
	--radius-full: 9999px;
	--shadow-sm: 0 1px 3px rgba(46, 52, 45, 0.04);
	--shadow-md: 0 4px 16px rgba(46, 52, 45, 0.06);
	--shadow-lg: 0 12px 40px rgba(46, 52, 45, 0.08);
	--shadow-mega: 0 20px 60px rgba(46, 52, 45, 0.06);
	--transition: 0.2s ease;
	--transition-slow: 0.3s ease;
	--transition-smooth: 0.5s cubic-bezier(0.25, 0.1, 0.25, 1);
	
	--swatch-size: 30px;
}

/* ==========================================================================
   Reset & Base
   ========================================================================== */

*,
*::before,
*::after {
	box-sizing: border-box;
}

body {
	margin: 0;
	font-family: var(--font-body);
	font-size: var(--fs-base);
	font-weight: var(--fw-normal);
	line-height: var(--lh-base);
	color: var(--color-text);
	background-color: var(--color-bg);
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

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

a {
	color: var(--color-primary);
	text-decoration: none;
	transition: color var(--transition);
}

a:hover {
	color: var(--color-primary-hover);
}

h1, h2, h3, h4, h5, h6 {
	font-family: var(--font-heading);
	font-weight: var(--fw-bold);
	line-height: var(--lh-tight);
	margin: 0 0 var(--sp-md);
	color: var(--color-text);
}

h1 { font-size: var(--fs-4xl); }
h2 { font-size: var(--fs-3xl); }
h3 { font-size: var(--fs-xl); }
h4 { font-size: var(--fs-lg); }

p {
	margin: 0 0 var(--sp-md);
}

ul, ol {
	padding-left: var(--sp-xl);
}

/* Focus visible for accessibility */
:focus-visible {
	outline: 2px solid var(--color-primary);
	outline-offset: 2px;
}

/* Skip link */
.screen-reader-text {
	clip: rect(1px, 1px, 1px, 1px);
	clip-path: inset(50%);
	height: 1px;
	width: 1px;
	margin: -1px;
	overflow: hidden;
	padding: 0;
	position: absolute;
	word-wrap: normal !important;
}

.skip-link:focus {
	clip: auto;
	clip-path: none;
	height: auto;
	width: auto;
	background: var(--color-primary);
	color: #fff;
	display: block;
	font-size: var(--fs-sm);
	padding: var(--sp-sm) var(--sp-md);
	position: fixed;
	top: 0;
	left: 0;
	z-index: 10000;
}

/* ==========================================================================
   Layout
   ========================================================================== */

.container {
	max-width: var(--container-width);
	margin-left: auto;
	margin-right: auto;
	padding-left: var(--container-padding);
	padding-right: var(--container-padding);
}

.container--narrow {
	max-width: var(--container-narrow);
}

.container--wide {
	max-width: var(--container-wide);
}

.site-main {
	min-height: 60vh;
	padding-top: var(--sp-md);
	padding-bottom: var(--sp-4xl);
}

/* ==========================================================================
   Buttons
   ========================================================================== */

.btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: var(--sp-sm);
	padding: 0.875rem 2rem;
	font-family: var(--font-body);
	font-size: var(--fs-sm);
	font-weight: var(--fw-semibold);
	line-height: 1;
	text-decoration: none;
	border: 2px solid transparent;
	border-radius: var(--radius-lg);
	cursor: pointer;
	transition: all var(--transition-slow);
	letter-spacing: 0.3px;
}

.btn-primary {
	background-color: var(--color-text);
	color: var(--color-bg);
	border-color: var(--color-text);
}

.btn-primary:hover {
	background-color: var(--color-primary-hover);
	border-color: var(--color-primary-hover);
	color: #fff;
}

.btn-outline {
	background-color: transparent;
	color: var(--color-text);
	border-color: var(--color-border);
}

.btn-outline:hover {
	background-color: var(--color-text);
	color: var(--color-bg);
	border-color: var(--color-text);
}

.btn-lg {
	padding: 1.125rem 2.75rem;
	font-size: var(--fs-base);
}

.btn-sm {
	padding: 0.5rem 1.25rem;
	font-size: var(--fs-xs);
}

/* ==========================================================================
   Site Overlay
   ========================================================================== */

.site-overlay {
	position: fixed;
	inset: 0;
	background: rgba(46, 52, 45, 0.3);
	z-index: 190;
	opacity: 0;
	visibility: hidden;
	transition: opacity var(--transition-slow), visibility var(--transition-slow);
	pointer-events: none;
	backdrop-filter: blur(2px);
}

.site-overlay.is-visible {
	opacity: 1;
	visibility: visible;
	pointer-events: auto;
}

.site-overlay.is-mega-menu {
	opacity: 1;
	visibility: visible;
	pointer-events: auto;
	background: rgba(46, 52, 45, 0.08);
	backdrop-filter: blur(0);
}

/* ==========================================================================
   Header
   ========================================================================== */

.site-header {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 200;
	background: var(--color-bg);
	transform: translateY(0);
	transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1),
				box-shadow 0.25s ease;
	will-change: transform;
}

.site-header.is-scrolled {
	box-shadow: var(--shadow-md);
}

.site-header.is-hidden {
	transform: translateY(-100%);
}

/* Offset page content so the always-fixed header never overlaps it. */
body {
	padding-top: var(--header-height);
}

/* WP admin bar pushes the fixed header down by the admin bar's height. */
body.admin-bar .site-header {
	top: 32px;
}

@media screen and (max-width: 782px) {
	body.admin-bar .site-header {
		top: 46px;
	}
}

@media (prefers-reduced-motion: reduce) {
	.site-header {
		transition: none;
	}
}

.header-bar {
	position: relative;
	border-bottom: 1px solid var(--color-border-light);
}

.header-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	height: var(--header-height);
	gap: var(--sp-xl);
}

.site-branding {
	flex-shrink: 0;
}

.header-brand-nav {
	display: flex;
	align-items: center;
	gap: 4rem;
}

.site-logo {
	display: flex;
	align-items: center;
}

.site-logo__img {
	width: 50px;
	height: auto;
	display: block;
}

/* Text logo variant (editorial style) */
.site-logo__text {
	font-family: var(--font-heading);
	font-size: 1.625rem;
	font-style: italic;
	font-weight: var(--fw-normal);
	color: var(--color-text);
	letter-spacing: -0.02em;
	text-decoration: none;
	line-height: 1;
}

/* ==========================================================================
   Mega Navigation (desktop)
   ========================================================================== */

.mega-nav {
	display: flex;
	align-items: center;
}

.mega-nav__list {
	display: flex;
	list-style: none;
	padding: 0;
	margin: 0;
	gap: 0;
}

.mega-nav__item {
	position: relative;
}

.mega-nav__link {
	display: flex;
	align-items: center;
	height: var(--header-height);
	padding: 0 var(--sp-lg);
	color: var(--color-text-light);
	font-family: var(--font-body);
	font-size: var(--fs-sm);
	font-weight: var(--fw-medium);
	text-decoration: none;
	position: relative;
	transition: color var(--transition);
}

.mega-nav__link::after {
	content: '';
	position: absolute;
	bottom: -1px;
	left: var(--sp-lg);
	right: var(--sp-lg);
	height: 2px;
	background: var(--color-primary);
	transform: scaleX(0);
	transition: transform 0.25s ease;
}

.mega-nav__item:hover .mega-nav__link,
.mega-nav__item.is-active .mega-nav__link {
	color: var(--color-primary);
	font-weight: var(--fw-semibold);
}

.mega-nav__item:hover .mega-nav__link::after,
.mega-nav__item.is-active .mega-nav__link::after {
	transform: scaleX(1);
}

/* Simple nav items (no dropdown) */
.mega-nav__item:not(.has-mega-menu) .mega-nav__link {
	color: var(--color-text-light);
}

.mega-nav__item:not(.has-mega-menu):hover .mega-nav__link {
	color: var(--color-primary);
}

/* Mega menu dropdown panel — full width editorial layout */
.mega-menu {
	position: fixed;
	top: var(--header-height);
	left: 0;
	right: 0;
	background: var(--color-bg);
	box-shadow: var(--shadow-mega);
	opacity: 0;
	visibility: hidden;
	transition: opacity 0.3s ease, visibility 0.3s;
	z-index: 210;
	border-top: 1px solid var(--color-border-light);
}

.mega-nav__item.is-active .mega-menu,
.mega-nav__item:hover .mega-menu {
	opacity: 1;
	visibility: visible;
}

.mega-menu__inner {
	display: grid;
	grid-template-columns: 1fr 1fr 1.2fr 1.3fr;
	gap: var(--sp-3xl);
	max-width: var(--container-wide);
	margin: 0 auto;
	padding: var(--sp-3xl) var(--sp-3xl);
}

/* Mega menu category columns */
.mega-menu__col {
	padding: 0;
}

.mega-menu__heading {
	display: block;
	font-family: var(--font-body);
	font-size: 0.6875rem;
	font-weight: var(--fw-bold);
	color: var(--color-text-light);
	text-transform: uppercase;
	letter-spacing: 0.15em;
	margin-bottom: var(--sp-lg);
	text-decoration: none;
	transition: color var(--transition);
}

.mega-menu__heading:hover {
	color: var(--color-primary);
}

.mega-menu__links {
	list-style: none;
	padding: 0;
	margin: 0;
}

.mega-menu__links li {
	margin-bottom: var(--sp-md);
}

.mega-menu__links a {
	color: var(--color-text);
	font-size: var(--fs-base);
	font-weight: var(--fw-normal);
	text-decoration: none;
	transition: color var(--transition);
	display: block;
	padding: 2px 0;
}

.mega-menu__links a:hover {
	color: var(--color-primary);
}

/* Mega menu editorial column */
.mega-menu__editorial {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	padding-right: var(--sp-xl);
}

.mega-menu__editorial-title {
	font-family: var(--font-heading);
	font-size: var(--fs-3xl);
	font-style: italic;
	font-weight: var(--fw-normal);
	color: var(--color-primary);
	line-height: var(--lh-tight);
	margin-bottom: var(--sp-md);
}

.mega-menu__editorial-text {
	font-size: var(--fs-sm);
	color: var(--color-text-light);
	line-height: 1.7;
	max-width: 220px;
}

.mega-menu__view-all {
	display: inline-flex;
	align-items: center;
	gap: var(--sp-sm);
	font-size: 0.6875rem;
	font-weight: var(--fw-bold);
	text-transform: uppercase;
	letter-spacing: 0.15em;
	color: var(--color-text);
	text-decoration: none;
	transition: color var(--transition), gap var(--transition);
}

.mega-menu__view-all:hover {
	color: var(--color-primary);
	gap: var(--sp-md);
}

.mega-menu__view-all svg {
	transition: transform var(--transition);
}

.mega-menu__view-all:hover svg {
	transform: translateX(4px);
}

/* Mega menu image column */
.mega-menu__image {
	position: relative;
	border-radius: var(--radius-lg);
	overflow: hidden;
	min-height: 320px;
	background: var(--color-bg-alt);
}

.mega-menu__image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.7s ease;
}

.mega-menu__image:hover img {
	transform: scale(1.05);
}

/* Image placeholder gradient for each category */
.mega-menu__image--damy {
	background: linear-gradient(135deg, #c9856e 0%, #d4a190 50%, #e8c4b8 100%);
}

.mega-menu__image--pani {
	background: linear-gradient(135deg, #7a8b7a 0%, #9aab9a 50%, #c5d4c5 100%);
}

.mega-menu__image--deti {
	background: linear-gradient(135deg, #8b9bc0 0%, #a7b5d4 50%, #c7d0e8 100%);
}

/* Divider between category groups within same column */
.mega-menu__divider {
	margin-top: var(--sp-xl);
	padding-top: var(--sp-xl);
}

/* ==========================================================================
   Header Actions (search, cart, account, hamburger)
   ========================================================================== */

.header-actions {
	display: flex;
	align-items: center;
	gap: var(--sp-sm);
}

.header-action-btn {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 42px;
	height: 42px;
	padding: 0;
	background: none;
	border: none;
	border-radius: 50%;
	color: var(--color-text-light);
	cursor: pointer;
	transition: color var(--transition), background var(--transition);
	position: relative;
	text-decoration: none;
}

.header-action-btn:hover {
	color: var(--color-primary);
	background: var(--color-primary-light);
}

.header-account-btn {
	width: auto;
	border-radius: var(--radius-full);
	gap: var(--sp-xs);
	padding: 0 var(--sp-sm);
}

.header-account-text {
	font-size: var(--fs-xs);
	font-weight: var(--fw-semibold);
	white-space: nowrap;
}

.cart-count {
	position: absolute;
	top: 2px;
	right: 0;
	background: var(--color-primary);
	color: #fff;
	font-size: 10px;
	font-weight: var(--fw-bold);
	min-width: 18px;
	height: 18px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	line-height: 1;
	padding: 0 4px;
}

/* Hamburger icon */
.hamburger {
	display: none;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	width: 42px;
	height: 42px;
	padding: 0;
	background: none;
	border: none;
	cursor: pointer;
	gap: 5px;
}

.hamburger__line {
	display: block;
	width: 22px;
	height: 2px;
	background: var(--color-text);
	border-radius: 2px;
	transition: transform 0.25s ease, opacity 0.25s ease;
}

.hamburger.is-active .hamburger__line:nth-child(1) {
	transform: translateY(7px) rotate(45deg);
}

.hamburger.is-active .hamburger__line:nth-child(2) {
	opacity: 0;
}

.hamburger.is-active .hamburger__line:nth-child(3) {
	transform: translateY(-7px) rotate(-45deg);
}

/* ==========================================================================
	Header Search (FiboSearch) — inline on desktop, overlay trigger on mobile
	========================================================================== */

.header-search-inline {
	flex: 1 1 auto;
	max-width: 40%;
	margin: 0 var(--sp-lg);
	min-width: 0;
}

.header-search-inline .dgwt-wcas-search-wrapp,
.header-search-inline .dgwt-wcas-search-form {
	width: 100%;
	max-width: 100%;
}

/* Hide the mobile toggle on desktop — search is always visible */
.header-search-toggle {
	display: none;
}

@media (max-width: 768px) {
	/* On mobile, keep the shortcode mounted for FiboSearch but remove the extra header row. */
	.header-search-inline {
		position: absolute;
		width: 1px;
		height: 1px;
		padding: 0;
		margin: 0;
		overflow: hidden;
		clip: rect(0, 0, 0, 0);
		clip-path: inset(50%);
		white-space: nowrap;
		border: 0;
		pointer-events: none;
	}

	.header-search-toggle {
		display: flex;
	}
}

/* ==========================================================================
   Cart Drawer
   ========================================================================== */

.cart-drawer {
	position: fixed;
	top: 0;
	right: -480px;
	width: 480px;
	height: 100vh;
	height: 100dvh;
	background: var(--color-bg);
	z-index: 300;
	display: flex;
	flex-direction: column;
	transition: right var(--transition-slow);
	box-shadow: -4px 0 24px rgba(46, 52, 45, 0.08);
}

.cart-drawer.is-open {
	right: 0;
}

/* Header */
.cart-drawer__header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: var(--sp-xl) var(--sp-xl) var(--sp-lg);
	flex-shrink: 0;
}

.cart-drawer__title {
	font-family: var(--font-heading);
	font-size: var(--fs-xl);
	font-weight: var(--fw-bold);
	line-height: var(--lh-tight);
}

.cart-drawer__close {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 36px;
	height: 36px;
	background: none;
	border: none;
	cursor: pointer;
	color: var(--color-text);
	transition: color var(--transition);
	padding: 0;
}

.cart-drawer__close:hover {
	color: var(--color-primary);
}

/* Body */
.cart-drawer__body {
	flex: 1;
	overflow-y: auto;
	display: flex;
	flex-direction: column;
}

.cart-drawer__body > .widget_shopping_cart_content {
	display: flex;
	flex-direction: column;
	flex: 1;
	min-height: 0;
}

/* Hide widget title injected by WC_Widget_Cart */
.cart-drawer .widgettitle {
	display: none;
}

/* Empty state */
.cart-drawer__empty {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	text-align: center;
	padding: var(--sp-3xl) var(--sp-xl);
	gap: var(--sp-lg);
	color: var(--color-text-muted);
	flex: 1;
}

.cart-drawer__empty p {
	margin: 0;
	font-size: var(--fs-sm);
}

/* ---------------------------------------------------------------------------
   Free-shipping progress bar
   --------------------------------------------------------------------------- */
.cart-drawer__shipping-bar {
	padding: var(--sp-md) var(--sp-xl);
	border: 1px solid var(--color-border-light);
	border-radius: var(--radius-md);
	margin: 0 var(--sp-xl) var(--sp-md);
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: var(--sp-xs) var(--sp-sm);
}

.cart-drawer__shipping-free-row {
	display: flex;
	align-items: center;
	justify-content: space-between;
	width: 100%;
}

.cart-drawer__shipping-text {
	flex: 1;
	font-size: var(--fs-sm);
	color: var(--color-text);
	margin: 0;
	min-width: 0;
}

.cart-drawer__shipping-text--free {
	color: var(--color-success);
	font-weight: var(--fw-medium);
}

.cart-drawer__shipping-pct {
	font-size: var(--fs-xs);
	font-weight: var(--fw-semibold);
	color: var(--color-primary);
}

.cart-drawer__progress {
	width: 100%;
	height: 4px;
	background: var(--color-border-light);
	border-radius: var(--radius-full);
	overflow: hidden;
}

.cart-drawer__progress-bar {
	height: 100%;
	background: var(--color-primary);
	border-radius: var(--radius-full);
	transition: width var(--transition-slow);
}

/* ---------------------------------------------------------------------------
   Cart items list
   --------------------------------------------------------------------------- */
.cart-drawer__items {
	list-style: none;
	padding: 0 var(--sp-xl);
	margin: 0;
	flex: 1;
	overflow-y: auto;
}

.cart-drawer__item {
	display: flex;
	gap: var(--sp-md);
	padding: var(--sp-lg) 0;
	border-bottom: 1px solid var(--color-border-light);
}

.cart-drawer__item:last-child {
	border-bottom: none;
}

/* Thumbnail */
.cart-drawer__item-img {
	flex-shrink: 0;
	width: 88px;
	height: 110px;
	border-radius: var(--radius-md);
	overflow: hidden;
	background: var(--color-bg-light);
}

.cart-drawer__item-img a {
	display: block;
	width: 100%;
	height: 100%;
}

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

/* Info block */
.cart-drawer__item-info {
	flex: 1;
	min-width: 0;
	display: flex;
	flex-direction: column;
	gap: var(--sp-xs);
}

.cart-drawer__item-header {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	gap: var(--sp-sm);
}

.cart-drawer__item-name {
	font-family: var(--font-heading);
	font-size: var(--fs-sm);
	font-weight: var(--fw-semibold);
	line-height: var(--lh-tight);
	flex: 1;
	min-width: 0;
}

.cart-drawer__item-name a {
	color: var(--color-text);
	text-decoration: none;
}

.cart-drawer__item-name a:hover {
	color: var(--color-primary);
}

.cart-drawer__item-price {
	font-size: var(--fs-sm);
	font-weight: var(--fw-semibold);
	color: var(--color-primary);
	white-space: nowrap;
}

/* Variation attributes */
.cart-drawer__item-meta {
	display: flex;
	flex-direction: column;
	gap: .15rem;
	margin-top: 2px;
}

.cart-drawer__attr {
	display: inline-flex;
	font-size: var(--fs-xs);
	color: var(--color-text-muted);
	text-transform: uppercase;
	letter-spacing: 0.03em;
}

.cart-drawer__attr-label {
	font-weight: var(--fw-semibold);
	margin-right: 3px;
}

/* Quantity controls + remove */
.cart-drawer__item-actions {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-top: auto;
	padding-top: var(--sp-sm);
}

.cart-drawer__qty {
	display: inline-flex;
	align-items: center;
	border: 1px solid var(--color-border);
	border-radius: var(--radius-full);
	overflow: hidden;
}

.cart-drawer__qty-btn {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 32px;
	height: 32px;
	background: none;
	border: none;
	cursor: pointer;
	color: var(--color-text);
	font-size: var(--fs-base);
	transition: background var(--transition), color var(--transition);
	padding: 0;
}

.cart-drawer__qty-btn:hover {
	background: var(--color-bg-light);
	color: var(--color-primary);
}

input[type="number"].cart-drawer__qty-input {
	width: 38px !important;
	height: 32px !important;
	border: none !important;
	background: none !important;
	font-size: var(--fs-sm) !important;
	font-weight: var(--fw-semibold) !important;
	appearance: textfield !important;
	-moz-appearance: textfield !important;
	padding: 0 12px !important;
}

input[type="number"].cart-drawer__qty-input::-webkit-outer-spin-button,
input[type="number"].cart-drawer__qty-input::-webkit-inner-spin-button {
	-webkit-appearance: none;
	margin: 0;
}

.cart-drawer__remove {
	font-size: var(--fs-xs);
	color: var(--color-text-muted);
	text-decoration: none;
	transition: color var(--transition);
	letter-spacing: 0.02em;
}

.cart-drawer__remove:hover {
	color: var(--color-primary);
}

/* Loading state while AJAX is in progress */
.cart-drawer__item.is-updating {
	opacity: 0.5;
	pointer-events: none;
}

/* ---------------------------------------------------------------------------
   Cart footer / totals
   --------------------------------------------------------------------------- */
.cart-drawer__footer {
	flex-shrink: 0;
	padding: var(--sp-lg) var(--sp-xl) var(--sp-xl);
	border-top: 1px solid var(--color-border-light);
	background: var(--color-bg);
}

.cart-drawer__totals {
	display: flex;
	flex-direction: column;
	gap: var(--sp-sm);
	margin-bottom: var(--sp-lg);
}

.cart-drawer__totals-row {
	display: flex;
	justify-content: space-between;
	font-size: var(--fs-sm);
	color: var(--color-text-light);
}

.cart-drawer__totals-row--shipping span:last-child {
	font-size: var(--fs-xs);
	color: var(--color-text-muted);
}

.cart-drawer__totals-row--total {
	font-size: var(--fs-base);
	font-weight: var(--fw-bold);
	color: var(--color-text);
}

.cart-drawer__total-amount,
.cart-drawer__subtotal {
	font-weight: var(--fw-bold);
	color: var(--color-primary);
}

.wc-stripe-applepay-button.StripeElement {
	min-height: auto!important;
}

.cart-drawer__checkout-btn {
	display: block;
	width: 100%;
	padding: 1rem;
	text-align: center;
	background: var(--color-text);
	color: var(--color-bg);
	border: none;
	border-radius: var(--radius-md);
	font-size: var(--fs-sm);
	font-weight: var(--fw-semibold);
	font-family: var(--font-body);
	letter-spacing: 0.06em;
	text-transform: uppercase;
	text-decoration: none;
	cursor: pointer;
	transition: background var(--transition);
}

.cart-drawer__checkout-btn:hover {
	background: var(--color-primary);
	color: #fff;
}

.cart-drawer__view-cart-link {
	display: block;
	text-align: center;
	margin-top: var(--sp-md);
	padding: 0.75rem 1rem;
	font-size: var(--fs-sm);
	font-weight: var(--fw-semibold);
	font-family: var(--font-body);
	letter-spacing: 0.06em;
	text-transform: uppercase;
	color: var(--color-text);
	background: transparent;
	border: 1px solid var(--color-text);
	border-radius: var(--radius-md);
	text-decoration: none;
	transition: background var(--transition), color var(--transition);
}

.cart-drawer__view-cart-link:hover {
	background: var(--color-text);
	color: var(--color-bg);
}

/* ==========================================================================
   Mobile Menu (off-canvas)
   ========================================================================== */

.mobile-menu {
	position: fixed;
	top: 0;
	left: -340px;
	width: 340px;
	height: 100vh;
	background: var(--color-bg);
	z-index: 300;
	display: flex;
	flex-direction: column;
	transition: left 0.3s ease;
	box-shadow: 4px 0 24px rgba(46, 52, 45, 0.08);
}

.mobile-menu.is-open {
	left: 0;
}

.mobile-menu__header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: var(--sp-lg) var(--sp-xl);
	border-bottom: 1px solid var(--color-border-light);
	flex-shrink: 0;
}

.mobile-menu__logo img,
.mobile-menu__logo-img {
	height: 40px;
	width: auto;
}

.mobile-menu__close {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 36px;
	height: 36px;
	background: none;
	border: 1px solid var(--color-border);
	border-radius: var(--radius-sm);
	cursor: pointer;
	color: var(--color-text);
}

.mobile-menu__body {
	flex: 1;
	overflow-y: auto;
	padding: var(--sp-md) 0;
}

.mobile-menu__account {
	display: flex;
	align-items: center;
	gap: var(--sp-sm);
	padding: var(--sp-md) var(--sp-xl);
	margin-bottom: var(--sp-sm);
	color: var(--color-primary);
	font-weight: var(--fw-semibold);
	font-size: var(--fs-sm);
	text-decoration: none;
	border-bottom: 1px solid var(--color-border-light);
}

.mobile-menu__list {
	list-style: none;
	padding: 0;
	margin: 0;
}

.mobile-menu__list .mobile-menu__list {
	padding-left: 0;
}

.mobile-menu__item {
	border-bottom: 1px solid var(--color-border-light);
}

.mobile-menu__row {
	display: flex;
	align-items: center;
}

.mobile-menu__row > a {
	flex: 1;
	display: block;
	padding: var(--sp-md) var(--sp-xl);
	color: var(--color-text);
	font-size: var(--fs-base);
	font-weight: var(--fw-semibold);
	text-decoration: none;
}

/* Indent level 2 */
.mobile-menu__submenu .mobile-menu__row > a {
	padding-left: calc(var(--sp-xl) + var(--sp-md));
	font-weight: var(--fw-medium);
	font-size: var(--fs-sm);
}

/* Indent level 3 */
.mobile-menu__submenu .mobile-menu__submenu .mobile-menu__row > a,
.mobile-menu__submenu .mobile-menu__submenu > li > a {
	padding-left: calc(var(--sp-xl) + var(--sp-2xl));
	font-weight: var(--fw-normal);
	font-size: var(--fs-sm);
	color: var(--color-text-light);
}

/* Items without children in submenu */
.mobile-menu__submenu > li:not(.has-children) > a {
	display: block;
	padding: var(--sp-sm) var(--sp-xl) var(--sp-sm) calc(var(--sp-xl) + var(--sp-md));
	color: var(--color-text-light);
	font-size: var(--fs-sm);
	text-decoration: none;
}

.mobile-menu__toggle {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 48px;
	height: 48px;
	background: none;
	border: none;
	border-left: 1px solid var(--color-border-light);
	cursor: pointer;
	color: var(--color-text-muted);
	flex-shrink: 0;
	transition: transform 0.25s ease;
}

.mobile-menu__item.is-open > .mobile-menu__row .mobile-menu__toggle svg {
	transform: rotate(180deg);
}

/* Accordion collapse */
.mobile-menu__submenu {
	list-style: none;
	padding: 0;
	margin: 0;
	max-height: 0;
	overflow: hidden;
	transition: max-height 0.3s ease;
}

.mobile-menu__item.is-open > .mobile-menu__submenu {
	max-height: 500px;
}

.mobile-menu__links {
	padding: var(--sp-lg) var(--sp-xl);
	margin-top: var(--sp-md);
	border-top: 1px solid var(--color-border-light);
	display: flex;
	flex-direction: column;
	gap: var(--sp-md);
}

.mobile-menu__links a {
	color: var(--color-text-muted);
	font-size: var(--fs-sm);
	font-weight: var(--fw-medium);
	text-decoration: none;
}

.mobile-menu__links a:hover {
	color: var(--color-primary);
}

/* ==========================================================================
   Footer
   ========================================================================== */

.site-footer {
	background-color: var(--color-footer-bg);
	color: var(--color-text);
	margin-top: var(--sp-4xl);
}

.footer-main {
	padding: var(--sp-4xl) 0;
}

.footer-grid {
	display: grid;
	grid-template-columns: 1.2fr 1fr 1fr 1.3fr;
	gap: var(--sp-3xl);
	align-items: start;
}

/* Footer logo / brand */
.footer-col--brand {
	padding-right: var(--sp-xl);
}

.footer-brand-name {
	font-family: var(--font-heading);
	font-size: var(--fs-lg);
	font-style: italic;
	color: var(--color-text);
	margin-bottom: var(--sp-md);
	display: flex;
  	justify-content: center;
}

.footer-brand-text {
	font-size: var(--fs-sm);
	color: var(--color-text-light);
	line-height: 1.7;
	max-width: 260px;
	margin: 0 auto var(--sp-md);
	text-align: center;
}

/* Footer column headings */
.footer-col-title {
	font-family: var(--font-body);
	font-size: 0.6875rem;
	font-weight: var(--fw-bold);
	text-transform: uppercase;
	letter-spacing: 0.15em;
	color: var(--color-text);
	margin-bottom: var(--sp-xl);
}

.footer-menu {
	list-style: none;
	padding: 0;
	margin: 0;
}

.footer-menu li {
	margin-bottom: var(--sp-md);
	font-size: var(--fs-sm);
	color: var(--color-text-light);
}

.footer-menu a {
	color: var(--color-text-light);
	font-size: var(--fs-sm);
	text-decoration: none;
	transition: color var(--transition);
}

.footer-menu a:hover {
	color: var(--color-text);
}

/* Footer legacy support — logo column */
.footer-logo {
	max-width: 120px;
	height: auto;
	margin-bottom: var(--sp-lg);
}

.footer-col--logo .footer-logo {
	max-width: 120px;
	height: auto;
	margin-bottom: var(--sp-lg);
}

.footer-col--nav .footer-menu a,
.footer-col--info .footer-contact a {
	color: var(--color-text-light);
}

.footer-col--nav .footer-menu a:hover,
.footer-col--info .footer-contact a:hover {
	color: var(--color-text);
}

.footer-contact {
	list-style: none;
	padding: 0;
	margin: 0;
}

.footer-contact li {
	margin-bottom: var(--sp-sm);
	font-size: var(--fs-sm);
	color: var(--color-text-light);
}

.footer-contact__company {
	font-weight: var(--fw-bold);
	color: var(--color-text);
	margin-bottom: var(--sp-md) !important;
}

.footer-contact a {
	color: var(--color-text-light);
	text-decoration: none;
	transition: color var(--transition);
}

.footer-contact a:hover {
	color: var(--color-text);
}

/* Footer bottom bar */
.footer-bottom {
	border-top: 1px solid var(--color-border);
	padding: var(--sp-xl) 0;
}

.footer-bottom__inner {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.footer-copyright {
	font-size: var(--fs-sm);
	color: var(--color-text-muted);
}

.footer-social {
	display: flex;
	gap: var(--sp-lg);
}

.footer-social__link {
	color: var(--color-text-muted);
	transition: color var(--transition);
}

.footer-social__link:hover {
	color: var(--color-text);
}

/* ==========================================================================
   Breadcrumbs
   ========================================================================== */

.breadcrumbs {
	padding: var(--sp-md) 0;
	margin-bottom: var(--sp-md);
	font-size: var(--fs-sm);
	color: var(--color-text-muted);
}

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

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

.breadcrumb-sep {
	margin: 0 var(--sp-sm);
	color: var(--color-border);
}

/* ==========================================================================
   Front Page
   ========================================================================== */

.front-page {
	padding: 0;
	background: var(--color-bg);
}

/* Shared front-page button */
.fp-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.55rem;
	padding: 1.05rem 2.15rem;
	font-family: var(--font-body);
	font-size: 0.78rem;
	font-weight: var(--fw-semibold);
	letter-spacing: 0.12em;
	text-transform: uppercase;
	line-height: 1;
	color: var(--color-text);
	border: 1px solid var(--color-text);
	border-radius: var(--radius-sm);
	transition: background var(--transition), color var(--transition), border-color var(--transition);
}

.fp-btn--solid {
	background: var(--color-text);
	color: #fff;
}

.fp-btn--solid:hover {
	background: var(--color-primary-hover);
	border-color: var(--color-primary-hover);
	color: #fff;
}

.fp-btn--ghost {
	background: transparent;
	color: #fff;
	border-color: rgba(255, 255, 255, 0.85);
}

.fp-btn--ghost:hover {
	background: #fff;
	color: var(--color-text);
	border-color: #fff;
}

/* Section scaffold */
.fp-section {
	padding-top: clamp(3.25rem, 6vw, 6.5rem);
}

.fp-section__head {
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	gap: var(--sp-xl);
	margin-bottom: clamp(1.75rem, 3vw, 2.75rem);
}

.fp-section__head--center {
	flex-direction: column;
	align-items: center;
	text-align: center;
	margin-bottom: clamp(2.25rem, 4vw, 3.75rem);
}

.fp-section__title em {
	font-style: italic;
}

.fp-section__label {
	display: block;
	font-size: 0.7rem;
	font-weight: var(--fw-bold);
	letter-spacing: 0.22em;
	text-transform: uppercase;
	color: var(--color-text-muted);
	margin-bottom: 0.9rem;
}

.fp-section__title {
	margin: 0;
	font-family: var(--font-heading);
	font-size: clamp(1.8rem, 3.4vw, 2.85rem);
	font-weight: var(--fw-normal);
	line-height: 1.08;
	letter-spacing: -0.025em;
	color: var(--color-text);
}

.fp-section__link {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	flex-shrink: 0;
	padding-bottom: 0.3rem;
	font-size: 0.74rem;
	font-weight: var(--fw-semibold);
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: var(--color-text);
	border-bottom: 1px solid var(--color-text);
	transition: gap var(--transition);
}

.fp-section__link:hover {
	color: var(--color-text);
	gap: 0.85rem;
}

.fp-section__link svg {
	width: 15px;
	height: 15px;
}

/* ---------- Hero ---------- */
.fp-hero {
	display: grid;
	grid-template-columns: 0.92fr 1.08fr;
	min-height: clamp(580px, 86vh, 920px);
	background: var(--color-bg);
	border-bottom: 1px solid var(--color-border-light);
}

.fp-hero__panel {
	display: flex;
	align-items: center;
	padding: clamp(2.75rem, 5vw, 5.5rem) clamp(1.75rem, 5.5vw, 6.25rem);
}

.fp-hero__content {
	display: flex;
	flex-direction: column;
	max-width: 36rem;
}

.fp-hero__kicker {
	display: inline-flex;
	align-items: center;
	gap: 0.85rem;
	margin-bottom: 1.85rem;
	font-size: 0.72rem;
	font-weight: var(--fw-bold);
	letter-spacing: 0.26em;
	text-transform: uppercase;
	color: var(--color-text-muted);
}

.fp-hero__kicker::before {
	content: "";
	width: 2.6rem;
	height: 1px;
	background: var(--color-text);
}

.fp-hero__title {
	margin: 0;
	font-family: var(--font-heading);
	font-size: clamp(2.75rem, 5.6vw, 5.1rem);
	font-weight: var(--fw-normal);
	line-height: 1.02;
	letter-spacing: -0.035em;
	color: var(--color-text);
}

.fp-hero__title em {
	font-style: italic;
}

.fp-hero__text {
	margin: 1.65rem 0 0;
	font-size: 1.03rem;
	line-height: 1.7;
	color: var(--color-text-light);
}

.fp-hero__actions {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 1.1rem 1.9rem;
	margin-top: 2.3rem;
}

.fp-hero__link {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	font-size: 0.78rem;
	font-weight: var(--fw-semibold);
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: var(--color-text);
}

.fp-hero__link svg {
	transition: transform var(--transition);
}

.fp-hero__link:hover {
	color: var(--color-text);
}

.fp-hero__link:hover svg {
	transform: translateX(4px);
}

.fp-hero__meta {
	display: flex;
	flex-wrap: wrap;
	gap: 0.55rem 1.5rem;
	margin: 2.6rem 0 0;
	padding: 1.5rem 0 0;
	list-style: none;
	border-top: 1px solid var(--color-border-light);
}

.fp-hero__meta li {
	display: flex;
	align-items: center;
	gap: 0.55rem;
	font-size: 0.8rem;
	color: var(--color-text-light);
}

.fp-hero__meta li::before {
	content: "";
	width: 5px;
	height: 5px;
	border-radius: var(--radius-full);
	background: var(--color-text);
}

.fp-hero__media {
	position: relative;
	overflow: hidden;
	background: var(--color-bg-alt);
}

.fp-hero__img {
	position: absolute;
	height: 100%;
	object-fit: contain;
}

.fp-hero__signature {
	position: absolute;
	left: clamp(1.25rem, 2.5vw, 2.25rem);
	bottom: clamp(1.25rem, 2.5vw, 2.25rem);
	display: inline-flex;
	align-items: center;
	gap: 0.65rem;
	padding: 0.55rem 0.85rem;
	font-size: 0.66rem;
	font-weight: var(--fw-semibold);
	letter-spacing: 0.28em;
	text-transform: uppercase;
	color: #fff;
	background: rgba(0, 0, 0, 0.35);
	backdrop-filter: blur(6px);
	-webkit-backdrop-filter: blur(6px);
}

.fp-hero__signature::before {
	content: "";
	width: 1.5rem;
	height: 1px;
	background: rgba(255, 255, 255, 0.85);
}

/* ---------- Bamboo story ---------- */
.fp-story {
	padding: clamp(4.5rem, 8vw, 8.5rem) 0 clamp(3rem, 5vw, 4.5rem);
	background: var(--color-bg-light);
}

.fp-story__grid {
	display: grid;
	grid-template-columns: 1.05fr 1fr;
	gap: clamp(2.5rem, 6vw, 6rem);
	align-items: center;
}

.fp-story__text {
	max-width: 32rem;
}

.fp-story__text .fp-section__label {
	margin-bottom: 1.5rem;
}

.fp-story__text .fp-section__title {
	margin-bottom: 1.85rem;
}

.fp-story__text .fp-section__title em {
	font-style: italic;
}

.fp-story__lede {
	font-family: var(--font-heading);
	font-size: clamp(1.15rem, 1.6vw, 1.45rem);
	line-height: 1.55;
	font-style: italic;
	color: var(--color-text);
	margin: 0 0 1.5rem;
}

.fp-story__body {
	margin: 0 0 2.25rem;
	font-size: 1rem;
	line-height: 1.75;
	color: var(--color-text-light);
}

.fp-story__media {
	position: relative;
	aspect-ratio: 5 / 4;
	overflow: hidden;
	background: var(--color-bg-alt);
}

.fp-story__media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.fp-story__benefits {
	display: grid;
	grid-template-columns: repeat(5, 1fr);
	gap: 1px;
	margin: clamp(3rem, 5vw, 4.5rem) 0 0;
	padding: 0;
	list-style: none;
	background: var(--color-border-light);
	border-top: 1px solid var(--color-border-light);
	border-bottom: 1px solid var(--color-border-light);
}

.fp-story__benefits div {
	display: flex;
	flex-direction: column;
}

.fp-story__benefits li {
	display: flex;
	flex-direction: column;
	gap: 0.5rem;
	padding: clamp(1.5rem, 2.5vw, 2.25rem) clamp(1.1rem, 2vw, 1.85rem);
	background: var(--color-bg-light);
}

.fp-story__num {
	font-family: var(--font-heading);
	font-size: 0.85rem;
	font-weight: var(--fw-normal);
	letter-spacing: 0.05em;
	color: var(--color-text-muted);
	margin-bottom: 0.4rem;
}

.fp-story__benefit-title {
	font-family: var(--font-heading);
	font-size: 1.1rem;
	font-weight: var(--fw-normal);
	color: var(--color-text);
}

.fp-story__benefit-text {
	font-size: 0.84rem;
	line-height: 1.55;
	color: var(--color-text-light);
}

/* Eco Bamboo: care block (page-templates/template-eco-bamboo.php). */
.fp-eb-care {
	padding: clamp(4.5rem, 8vw, 8.5rem) 0;
	background: var(--color-bg-light);
}

.fp-eb-care__grid {
	display: grid;
	grid-template-columns: 0.85fr 1.15fr;
	gap: clamp(2.5rem, 6vw, 5.5rem);
	align-items: center;
}

.fp-eb-care__text {
	max-width: 28rem;
}

.fp-eb-care__text .fp-section__label {
	margin-bottom: 1.25rem;
}

.fp-eb-care__text .fp-section__title {
	margin: 0 0 1.5rem;
}

.fp-eb-care__list {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 1px;
	margin: 0;
	padding: 0;
	list-style: none;
	background: var(--color-border-light);
	border: 1px solid var(--color-border-light);
}

.fp-eb-care__list li {
	display: flex;
	flex-direction: column;
	gap: 0.4rem;
	padding: clamp(1.5rem, 2.5vw, 2.25rem);
	background: var(--color-bg);
}

.fp-eb-care__step {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 2.5rem;
	height: 2.5rem;
	margin-bottom: 0.65rem;
	font-family: var(--font-heading);
	font-size: 1.1rem;
	font-weight: var(--fw-normal);
	color: var(--color-text);
	border: 1px solid var(--color-text);
	border-radius: var(--radius-full);
}

.fp-eb-care__label {
	font-size: 0.7rem;
	font-weight: var(--fw-bold);
	letter-spacing: 0.18em;
	text-transform: uppercase;
	color: var(--color-text-muted);
}

.fp-eb-care__detail {
	font-family: var(--font-heading);
	font-size: 1.05rem;
	line-height: 1.4;
	color: var(--color-text);
}

/* ---------- Motion videos ---------- */
.fp-motion {
	margin-top: clamp(2.5rem, 5vw, 3.5rem);
	padding: clamp(4.5rem, 8vw, 8.5rem) 0;
	background: var(--color-text);
	color: #fff;
}

.fp-motion .fp-section__label {
	color: rgba(255, 255, 255, 0.55);
}

.fp-motion .fp-section__title {
	color: #fff;
}

.fp-motion .fp-section__link {
	color: #fff;
	border-bottom-color: #fff;
}

.fp-motion .fp-section__link:hover {
	color: #fff;
}

.fp-motion__grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: clamp(0.75rem, 1.5vw, 1.5rem);
}

.fp-motion__tile {
	position: relative;
	display: block;
	overflow: hidden;
	background: var(--color-primary-hover);
	aspect-ratio: 3 / 4;
}

.fp-motion__video {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	transform: scale(1.001); /* prevents subpixel edges */
}

.fp-motion__caption {
	position: absolute;
	inset: auto 0 0 0;
	display: flex;
	flex-direction: column;
	gap: 0.5rem;
	padding: clamp(1.2rem, 2.2vw, 2rem);
	background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.72) 100%);
}

.fp-motion__label {
	font-size: 0.66rem;
	font-weight: var(--fw-bold);
	letter-spacing: 0.24em;
	text-transform: uppercase;
	color: rgba(255, 255, 255, 0.78);
}

.fp-motion__title {
	font-family: var(--font-heading);
	font-size: clamp(1.05rem, 1.5vw, 1.4rem);
	line-height: 1.25;
	color: #fff;
}

/* ---------- Comparison: Gina vs ordinary ---------- */
.fp-vs {
	padding: clamp(4.5rem, 8vw, 8.5rem) 0;
	background: var(--color-bg);
}

.fp-vs__grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	max-width: 1080px;
	margin: 0 auto;
	border: 1px solid var(--color-border-light);
}

.fp-vs__col {
	padding: clamp(2rem, 3.5vw, 3.25rem) clamp(1.75rem, 3vw, 3rem);
}

.fp-vs__col--them {
	background: var(--color-bg-light);
	color: var(--color-text-light);
}

.fp-vs__col--us {
	background: var(--color-text);
	color: rgba(255, 255, 255, 0.94);
}

.fp-vs__head {
	padding-bottom: 1.5rem;
	margin-bottom: 1.5rem;
	border-bottom: 1px solid currentColor;
}

.fp-vs__col--them .fp-vs__head {
	border-color: var(--color-border);
}

.fp-vs__col--us .fp-vs__head {
	border-color: rgba(255, 255, 255, 0.22);
}

.fp-vs__tag {
	display: block;
	font-size: 0.68rem;
	font-weight: var(--fw-bold);
	letter-spacing: 0.24em;
	text-transform: uppercase;
	margin-bottom: 0.85rem;
	opacity: 0.7;
}

.fp-vs__heading {
	margin: 0;
	font-family: var(--font-heading);
	font-size: clamp(1.4rem, 2.2vw, 1.85rem);
	font-weight: var(--fw-normal);
	line-height: 1.1;
	color: inherit;
}

.fp-vs__list {
	list-style: none;
	margin: 0;
	padding: 0;
}

.fp-vs__list li {
	display: flex;
	align-items: flex-start;
	gap: 0.95rem;
	padding: 0.8rem 0;
	font-size: 0.95rem;
	line-height: 1.55;
	border-bottom: 1px solid;
	border-color: inherit;
	border-color: transparent;
}

.fp-vs__col--them .fp-vs__list li {
	border-bottom-color: var(--color-border);
}

.fp-vs__col--us .fp-vs__list li {
	border-bottom-color: rgba(255, 255, 255, 0.14);
}

.fp-vs__list li:last-child {
	border-bottom: none;
}

.fp-vs__icon {
	display: inline-flex;
	flex-shrink: 0;
	margin-top: 0.1rem;
	opacity: 0.7;
}

.fp-vs__col--us .fp-vs__icon {
	opacity: 1;
}

/* ---------- Community / portrait band ---------- */
.fp-portrait {
	position: relative;
	min-height: clamp(440px, 65vh, 640px);
	margin: clamp(3rem, 5vw, 4.5rem) 0 0;
	overflow: hidden;
	background: var(--color-text);
	color: #fff;
	display: flex;
	align-items: center;
}

.fp-portrait__img {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: 50% 30%;
	opacity: 0.78;
}

.fp-portrait::after {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(95deg, rgba(18, 17, 15, 0.78) 0%, rgba(18, 17, 15, 0.35) 55%, rgba(18, 17, 15, 0.15) 100%);
}

.fp-portrait__panel {
	position: relative;
	z-index: 1;
	max-width: 42rem;
	padding: clamp(2.5rem, 5vw, 5rem) var(--container-padding);
	margin-left: clamp(1rem, 5vw, 5rem);
}

.fp-portrait__label {
	color: rgba(255, 255, 255, 0.7);
	margin-bottom: 1.25rem;
}

.fp-portrait__title {
	margin: 0;
	font-family: var(--font-heading);
	font-size: clamp(2.25rem, 4.5vw, 3.85rem);
	font-weight: var(--fw-normal);
	line-height: 1.04;
	letter-spacing: -0.02em;
	color: #fff;
}

.fp-portrait__title em {
	font-style: italic;
}

.fp-portrait__text {
	margin: 1.5rem 0 2.25rem;
	font-size: 1.02rem;
	line-height: 1.7;
	max-width: 32rem;
	color: rgba(255, 255, 255, 0.88);
}

/* ---------- Hero stage ---------- */
.fp-stage {
	position: relative;
	display: flex;
	align-items: flex-end;
	min-height: clamp(480px, 76vh, 800px);
	overflow: hidden;
	background: var(--color-bg-alt);
}

.fp-stage__img {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: 50% 30%;
}

.fp-stage::after {
	content: '';
	position: absolute;
	inset: 0;
	background: linear-gradient(100deg, rgba(18, 17, 15, 0.86) 0%, rgba(18, 17, 15, 0.62) 30%, rgba(18, 17, 15, 0.06) 64%);
	pointer-events: none;
}

.fp-stage__panel {
	position: relative;
	z-index: 1;
	width: min(1200px, 100%);
	padding: clamp(3rem, 7vw, 5.5rem) var(--container-padding) clamp(2.75rem, 5vw, 4.5rem);
	padding-left: max(var(--container-padding), calc((100vw - var(--container-wide)) / 2 + var(--container-padding)));
	color: #fff;
}

.fp-stage__kicker {
	display: block;
	margin-bottom: 1.1rem;
	font-size: 0.68rem;
	font-weight: var(--fw-bold);
	letter-spacing: 0.22em;
	text-transform: uppercase;
	color: rgba(255, 255, 255, 0.72);
}

.fp-stage__title {
	margin: 0;
	font-family: var(--font-heading);
	font-size: clamp(2.2rem, 4.6vw, 4rem);
	font-weight: var(--fw-normal);
	line-height: 1.04;
	letter-spacing: -0.03em;
	color: #fff;
}

.fp-stage__title em {
	font-style: italic;
}

.fp-stage__text {
	margin: 1.1rem 0 0;
	max-width: 30rem;
	font-size: clamp(0.95rem, 1.3vw, 1.05rem);
	line-height: 1.65;
	color: rgba(255, 255, 255, 0.85);
}

.fp-stage__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 0.75rem;
	margin-top: clamp(1.5rem, 3vw, 2.25rem);
}

.fp-stage__actions .fp-btn--solid {
	background: #fff;
	border-color: #fff;
	color: var(--color-text);
}

.fp-stage__actions .fp-btn--solid:hover {
	background: transparent;
	border-color: #fff;
	color: #fff;
}

.fp-stage__meta {
	display: flex;
	flex-wrap: wrap;
	gap: 0.55rem 1.5rem;
	margin: clamp(1.75rem, 3vw, 2.5rem) 0 0;
	padding: 0;
	list-style: none;
}

.fp-stage__meta li {
	position: relative;
	padding-left: 1rem;
	font-size: 0.78rem;
	letter-spacing: 0.02em;
	color: rgba(255, 255, 255, 0.8);
}

.fp-stage__meta li::before {
	content: '';
	position: absolute;
	left: 0;
	top: 0.55em;
	width: 5px;
	height: 5px;
	background: rgba(255, 255, 255, 0.55);
}

/* ---------- Category rail ---------- */
.fp-rail {
	padding: clamp(2.25rem, 4vw, 3.5rem) 0 0;
}

.fp-rail__head {
	display: flex;
	align-items: baseline;
	justify-content: space-between;
	gap: 1.5rem;
	margin-bottom: clamp(1.15rem, 2vw, 1.65rem);
}

.fp-rail__title {
	margin: 0;
	font-family: var(--font-body);
	font-size: 0.7rem;
	font-weight: var(--fw-bold);
	letter-spacing: 0.22em;
	text-transform: uppercase;
	color: var(--color-text-muted);
}

.fp-rail__list {
	display: flex;
	gap: clamp(0.75rem, 1.5vw, 1.25rem);
	margin: 0;
	padding: 0 0 0.5rem;
	list-style: none;
	overflow-x: auto;
	scroll-snap-type: x proximity;
	scrollbar-width: none;
	-webkit-overflow-scrolling: touch;
}

.fp-rail__list::-webkit-scrollbar {
	display: none;
}

.fp-rail__item {
	flex: 0 0 auto;
	scroll-snap-align: start;
}

.fp-rail__link {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 0.7rem;
	width: clamp(102px, 11vw, 148px);
	text-align: center;
}

.fp-rail__media {
	display: block;
	width: 100%;
	aspect-ratio: 1 / 1;
	overflow: hidden;
	background: var(--color-bg-light);
	border: 1px solid var(--color-border-light);
}

.fp-rail__img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform var(--transition-smooth);
}

.fp-rail__img--empty {
	display: block;
	background: var(--color-bg-alt);
}

.fp-rail__link:hover .fp-rail__img {
	transform: scale(1.06);
}

.fp-rail__label {
	font-size: 0.78rem;
	font-weight: var(--fw-medium);
	line-height: 1.3;
	color: var(--color-text);
}

/* ---------- Product shelves (carousels) ---------- */
.fp-shelf__tools {
	display: flex;
	align-items: center;
	gap: clamp(1rem, 2vw, 1.75rem);
	flex-shrink: 0;
}

.fp-shelf__foot {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
	margin-top: clamp(1.25rem, 2.5vw, 1.85rem);
}

.fp-carousel__nav {
	display: flex;
	gap: 0.5rem;
	flex-shrink: 0;
}

.fp-carousel__button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 46px;
	height: 46px;
	padding: 0;
	border: 1px solid var(--color-border);
	border-radius: var(--radius-sm);
	background: var(--color-bg);
	color: var(--color-text);
	cursor: pointer;
	transition: background var(--transition), border-color var(--transition), color var(--transition);
}

.fp-carousel__button:hover {
	background: var(--color-text);
	border-color: var(--color-text);
	color: #fff;
}

.fp-carousel__button:disabled {
	opacity: 0.3;
	cursor: default;
	pointer-events: none;
}

.fp-carousel__track {
	display: flex;
	gap: clamp(0.75rem, 1.5vw, 1.5rem);
	overflow-x: auto;
	scroll-snap-type: x mandatory;
	-webkit-overflow-scrolling: touch;
	scrollbar-width: none;
}

.fp-carousel__track::-webkit-scrollbar {
	display: none;
}

.fp-carousel__track > .product-card {
	flex: 0 0 calc((100% - 3 * clamp(0.75rem, 1.5vw, 1.5rem)) / 4);
	min-width: 220px;
	scroll-snap-align: start;
}

/* ---------- Tabbed department shelves ---------- */
.fp-tabs {
	display: flex;
	gap: 0.25rem;
	margin-bottom: clamp(1.5rem, 3vw, 2.25rem);
	border-bottom: 1px solid var(--color-border-light);
	overflow-x: auto;
	scrollbar-width: none;
}

.fp-tabs::-webkit-scrollbar {
	display: none;
}

.fp-tabs__tab {
	flex: 0 0 auto;
	margin-bottom: -1px;
	padding: 0.8rem 1.15rem;
	font-family: var(--font-body);
	font-size: 0.74rem;
	font-weight: var(--fw-semibold);
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: var(--color-text-muted);
	background: none;
	border: 0;
	border-bottom: 2px solid transparent;
	cursor: pointer;
	transition: color var(--transition), border-color var(--transition);
}

.fp-tabs__tab:hover {
	color: var(--color-text);
}

.fp-tabs__tab.is-active {
	color: var(--color-text);
	border-bottom-color: var(--color-text);
}

.fp-tabs__panel[hidden] {
	display: none;
}

/* ---------- Shoppable looks ---------- */
.fp-look {
	display: grid;
	grid-template-columns: minmax(0, 1.02fr) minmax(0, 0.98fr);
	gap: clamp(1.5rem, 3.5vw, 4rem);
	align-items: stretch;
}

.fp-look + .fp-look {
	margin-top: clamp(2.75rem, 5vw, 5rem);
	padding-top: clamp(2.75rem, 5vw, 5rem);
	border-top: 1px solid var(--color-border-light);
}

.fp-look--reverse .fp-look__media {
	order: 2;
}

#fp-look-1 .fp-look__img {
	max-width: 720px;
	margin: auto;
}

#fp-look-2 .fp-look__img {
	width: auto;
}

/* The photo fills the grid row, so its height follows the piece list beside it
   and the two columns always end level. The floor keeps it tall enough to read
   as an editorial shot when the list is short. */
.fp-look__media {
	position: relative;
	min-height: clamp(420px, 44vw, 720px);
	overflow: hidden;
}

/* Absolute so the photo's intrinsic ratio never drives the row height — the
   list beside it does. */
.fp-look__img {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	/* Biased upwards so faces survive the crop on full-body shots. */
	object-position: 50% 22%;
}

.fp-look__pin {
	position: absolute;
	display: grid;
	place-items: center;
	width: 32px;
	height: 32px;
	padding: 0;
	transform: translate(-50%, -50%);
	background: #fff;
	color: var(--color-text);
	border: 0;
	border-radius: var(--radius-full);
	box-shadow: 0 2px 12px rgba(18, 17, 15, 0.3);
	cursor: pointer;
	transition: background var(--transition), color var(--transition), transform var(--transition);
}

.fp-look__pin-dot {
	position: absolute;
	inset: -6px;
	border: 1px solid rgba(255, 255, 255, 0.5);
	border-radius: var(--radius-full);
}

.fp-look__pin-num {
	position: relative;
	font-size: 0.72rem;
	font-weight: var(--fw-semibold);
	line-height: 1;
}

.fp-look__pin:hover,
.fp-look__pin.is-active {
	background: var(--color-text);
	color: #fff;
	transform: translate(-50%, -50%) scale(1.08);
}

.fp-look__aside {
	display: flex;
	flex-direction: column;
	justify-content: center;
	min-width: 0;
}

.fp-look__title {
	margin: 0.15rem 0 0;
	font-family: var(--font-heading);
	font-size: clamp(1.45rem, 2.6vw, 2.1rem);
	font-weight: var(--fw-normal);
	line-height: 1.12;
	letter-spacing: -0.025em;
}

.fp-look__title em {
	font-style: italic;
}

.fp-look__text {
	margin: 0.9rem 0 0;
	max-width: 34rem;
	font-size: 0.95rem;
	line-height: 1.65;
	color: var(--color-text-light);
}

.fp-look__items-label {
	display: block;
	margin: clamp(1.5rem, 3vw, 2.25rem) 0 0.7rem;
	font-size: 0.68rem;
	font-weight: var(--fw-bold);
	letter-spacing: 0.2em;
	text-transform: uppercase;
	color: var(--color-text-muted);
}

.fp-look__items {
	margin: 0 0 1.6rem;
	padding: 0;
	max-width: 34rem;
	list-style: none;
	border-top: 1px solid var(--color-border-light);
}

.fp-look__item {
	border-bottom: 1px solid var(--color-border-light);
}

.fp-look__item-link {
	display: flex;
	align-items: center;
	gap: 0.9rem;
	padding: 0.8rem 0.5rem;
	transition: background var(--transition);
}

.fp-look__item-link:hover,
.fp-look__item.is-active .fp-look__item-link {
	background: var(--color-bg-light);
}

.fp-look__item-index {
	display: grid;
	place-items: center;
	flex: 0 0 auto;
	width: 26px;
	height: 26px;
	font-size: 0.7rem;
	font-weight: var(--fw-semibold);
	color: var(--color-text-light);
	border: 1px solid var(--color-border);
	border-radius: var(--radius-full);
	transition: background var(--transition), border-color var(--transition), color var(--transition);
}

.fp-look__item.is-active .fp-look__item-index {
	background: var(--color-text);
	border-color: var(--color-text);
	color: #fff;
}

.fp-look__item-thumb {
	flex: 0 0 auto;
	width: 62px;
	aspect-ratio: 3 / 4;
	overflow: hidden;
	background: var(--color-bg-light);
}

.fp-look__item-thumb img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.fp-look__item-body {
	display: flex;
	flex: 1 1 auto;
	flex-direction: column;
	gap: 0.18rem;
	min-width: 0;
}

.fp-look__item-name {
	font-size: 0.9rem;
	font-weight: var(--fw-medium);
	line-height: 1.35;
}

.fp-look__item-price {
	font-size: 0.85rem;
	color: var(--color-text-light);
}

.fp-look__item-price del {
	margin-right: 0.35rem;
	opacity: 0.55;
}

.fp-look__item-price ins {
	color: var(--color-sale);
	text-decoration: none;
}

.fp-look__item-cta {
	flex: 0 0 auto;
	display: flex;
	color: var(--color-text-muted);
	transition: transform var(--transition), color var(--transition);
}

.fp-look__item-link:hover .fp-look__item-cta {
	transform: translateX(3px);
	color: var(--color-text);
}

/* ---------- Eco Bamboo band ---------- */
.fp-eco {
	margin-top: clamp(3.25rem, 6vw, 6.5rem);
	padding: clamp(3.25rem, 6vw, 6rem) 0;
	background: var(--color-bg-light);
}

.fp-eco__intro {
	display: grid;
	grid-template-columns: minmax(0, 0.78fr) minmax(0, 1.22fr);
	gap: clamp(1.75rem, 4vw, 4rem);
	align-items: center;
}

.fp-eco__media {
	aspect-ratio: 3 / 4;
	max-height: 520px;
	overflow: hidden;
	background: var(--color-bg-alt);
}

.fp-eco__media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.fp-eco__lede {
	margin: 1rem 0 0;
	max-width: 36rem;
	font-size: 1rem;
	line-height: 1.7;
	color: var(--color-text-light);
}

.fp-eco__actions {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: clamp(1rem, 2vw, 1.75rem);
	margin-top: clamp(1.5rem, 3vw, 2.25rem);
}

.fp-eco__shelf {
	margin-top: clamp(2.25rem, 4vw, 3.5rem);
}

.fp-eco .fp-carousel__button {
	background: transparent;
	border-color: var(--color-border);
}

.fp-eco .fp-carousel__button:hover {
	background: var(--color-text);
	border-color: var(--color-text);
}

/* ---------- Value strip ---------- */
.fp-values {
	padding: clamp(3.25rem, 6vw, 5.5rem) 0 0;
}

.fp-values__list {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: clamp(1.25rem, 2.5vw, 2.5rem);
	margin: 0;
	padding: 0;
	list-style: none;
}

.fp-values__list li {
	display: flex;
	flex-direction: column;
	gap: 0.4rem;
	padding-top: 1.05rem;
	border-top: 1px solid var(--color-text);
}

.fp-values__num {
	font-size: 0.68rem;
	font-weight: var(--fw-bold);
	letter-spacing: 0.2em;
	color: var(--color-text-muted);
}

.fp-values__title {
	font-family: var(--font-heading);
	font-size: 1.05rem;
	line-height: 1.25;
}

.fp-values__text {
	font-size: 0.85rem;
	line-height: 1.6;
	color: var(--color-text-light);
}

/* ---------- Service / trust bar ---------- */
.fp-trust {
	margin-top: clamp(3.25rem, 6vw, 6.5rem);
	border-top: 1px solid var(--color-border-light);
	border-bottom: 1px solid var(--color-border-light);
	background: var(--color-bg);
}

.fp-trust__grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 1px;
	background: var(--color-border-light);
}

.fp-trust__item {
	display: flex;
	align-items: center;
	gap: 0.95rem;
	padding: clamp(1.5rem, 3vw, 2.35rem) clamp(1rem, 2vw, 2rem);
	background: var(--color-bg);
}

.fp-trust__icon {
	display: flex;
	flex-shrink: 0;
	color: var(--color-text);
}

.fp-trust__text {
	display: flex;
	flex-direction: column;
	gap: 0.15rem;
	min-width: 0;
}

.fp-trust__text strong {
	font-size: 0.88rem;
	font-weight: var(--fw-semibold);
	color: var(--color-text);
}

.fp-trust__text span {
	font-size: 0.78rem;
	color: var(--color-text-muted);
}

.fp-trust__text a {
	color: var(--color-text-muted);
}

.fp-trust__text a:hover {
	color: var(--color-text);
}

/* ---------- Front-page responsive ---------- */
@media (min-width: 1440px) {
	.fp-carousel__track > .product-card {
		flex-basis: calc((100% - 4 * clamp(0.75rem, 1.5vw, 1.5rem)) / 5);
	}
}

@media (max-width: 1100px) {
	.fp-carousel__track > .product-card {
		flex-basis: calc((100% - 2 * clamp(0.75rem, 1.5vw, 1.5rem)) / 3);
	}

	.fp-story__benefits {
		grid-template-columns: repeat(2, 1fr);
	}

	.fp-story__benefits li:last-child {
		grid-column: span 2;
	}

	.fp-values__list {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (max-width: 900px) {
	.fp-look,
	.fp-eco__intro {
		grid-template-columns: 1fr;
	}

	.fp-look--reverse .fp-look__media {
		order: 0;
	}

	.fp-look__media {
		aspect-ratio: 4 / 5;
		min-height: 0;
		max-height: 72vh;
	}

	.fp-eco__media {
		aspect-ratio: 16 / 10;
		max-height: 46vh;
	}
}

@media (max-width: 860px) {
	/* Stacked on small screens: the headline sits on a solid block under the
	   photo rather than over it, so it stays legible whatever the crop. */
	.fp-stage {
		display: block;
		min-height: 0;
		background: var(--color-text);
	}

	.fp-stage__img {
		position: relative;
		width: 100%;
		height: auto;
		aspect-ratio: 1 / 1;
	}

	.fp-stage::after {
		display: none;
	}

	.fp-stage__panel {
		width: 100%;
		padding-left: var(--container-padding);
		padding-right: var(--container-padding);
	}

	.fp-hero {
		grid-template-columns: 1fr;
		min-height: 0;
	}

	.fp-hero__media {
		order: -1;
		aspect-ratio: 4 / 5;
		max-height: 72vh;
	}

	.fp-hero__panel {
		padding: clamp(2.25rem, 7vw, 3.25rem) var(--container-padding) clamp(2.75rem, 8vw, 3.75rem);
	}

	.fp-hero__signature {
		font-size: 0.6rem;
		letter-spacing: 0.22em;
	}

	.fp-story__grid {
		grid-template-columns: 1fr;
		gap: clamp(1.75rem, 4vw, 2.5rem);
	}

	.fp-story__media {
		order: -1;
		aspect-ratio: 4 / 5;
		max-height: 65vh;
	}

	.fp-motion__grid {
		grid-template-columns: 1fr;
	}

	.fp-motion__tile {
		aspect-ratio: 4 / 5;
	}

	.fp-vs__grid {
		grid-template-columns: 1fr;
	}

	.fp-portrait {
		min-height: 0;
	}

	.fp-portrait__img {
		opacity: 0.55;
	}

	.fp-portrait::after {
		background: linear-gradient(180deg, rgba(18, 17, 15, 0.55) 0%, rgba(18, 17, 15, 0.78) 100%);
	}

	.fp-portrait__panel {
		margin: 0 auto;
		padding: clamp(3rem, 9vw, 5rem) var(--container-padding);
	}

	.fp-eb-care__grid {
		grid-template-columns: 1fr;
		gap: clamp(1.75rem, 4vw, 2.5rem);
	}
}

@media (max-width: 680px) {
	.fp-story__benefits {
		grid-template-columns: 1fr;
	}

	.fp-story__benefits li:last-child {
		grid-column: auto;
	}

	.fp-story__benefits li {
		gap: 1rem;
		flex-direction: row;
		align-items: baseline;
	}

	.fp-trust__grid {
		grid-template-columns: 1fr 1fr;
	}

	.fp-carousel__track > .product-card {
		flex-basis: calc((100% - clamp(0.75rem, 1.5vw, 1.5rem)) / 2);
		min-width: 0;
	}

	.fp-section__head:not(.fp-section__head--center) {
		flex-direction: column;
		align-items: flex-start;
	}

	.fp-shelf__tools {
		width: 100%;
		justify-content: space-between;
	}

	.fp-shelf__foot {
		flex-direction: column-reverse;
		align-items: flex-start;
		gap: 1.25rem;
	}

	.fp-eb-care__list {
		grid-template-columns: 1fr;
	}
}

@media (max-width: 520px) {
	.fp-values__list {
		grid-template-columns: 1fr;
	}

	.fp-rail__head {
		flex-direction: column;
		align-items: flex-start;
		gap: 0.75rem;
	}

	.fp-look__pin {
		width: 28px;
		height: 28px;
	}
}

@media (max-width: 420px) {
	.fp-trust__grid {
		grid-template-columns: 1fr;
	}

	.fp-carousel__track > .product-card {
		flex-basis: 80%;
	}
}

@media (prefers-reduced-motion: reduce) {
	.fp-rail__img,
	.fp-look__pin,
	.fp-look__item-cta {
		transition: none;
	}

	.fp-carousel__track {
		scroll-behavior: auto;
	}
}

/* ==========================================================================
   Product Grid
   ========================================================================== */

.product-grid {
	display: grid;
	gap: var(--sp-lg);
}

.product-grid--2 { grid-template-columns: repeat(2, 1fr); max-width: calc(100% - 20px); }
.product-grid--3 { grid-template-columns: repeat(3, 1fr); }
.product-grid--4 { grid-template-columns: repeat(4, 1fr); }
.product-grid--5 { grid-template-columns: repeat(5, 1fr); }

/* ==========================================================================
   Product Card
   ========================================================================== */

.product-card {
	background: var(--color-bg);
	overflow: hidden;
	border: 1px solid var(--color-border-light);
	border-radius: var(--radius-sm);
	transition: border-color var(--transition);
}

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

.product-card__link {
	display: block;
	text-decoration: none;
	color: inherit;
}

.product-card__media {
	position: relative;
	aspect-ratio: 4 / 5;
	overflow: hidden;
	background: var(--color-bg-light);
}

.product-card__image {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform var(--transition-smooth);
}

.product-card:hover .product-card__image {
	transform: scale(1.03);
}

.sale-badge {
	position: absolute;
	top: var(--sp-md);
	left: var(--sp-md);
	background: var(--color-sale);
	color: #fff;
	font-size: var(--fs-xs);
	font-weight: var(--fw-bold);
	letter-spacing: 0.02em;
	padding: 4px 11px;
	border-radius: var(--radius-sm);
	line-height: 1;
}

.product-card__info {
	padding: var(--sp-md) var(--sp-lg) var(--sp-sm);
}

.product-card__title {
	font-family: var(--font-body);
	font-size: var(--fs-sm);
	font-weight: var(--fw-medium);
	margin-bottom: var(--sp-sm);
	color: var(--color-text);
	line-clamp: 2;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

.product-card__price {
	font-size: var(--fs-base);
	font-weight: var(--fw-bold);
	color: var(--color-text);
}

.product-card__price del {
	color: var(--color-text-muted);
	font-weight: var(--fw-normal);
	font-size: var(--fs-sm);
	margin-right: var(--sp-sm);
}

.product-card__price ins {
	text-decoration: none;
	color: var(--color-sale);
}

.product-card__swatches {
	display: flex;
	flex-wrap: wrap;
	gap: 6px;
	align-items: center;
	padding: var(--sp-md) var(--sp-md) .75rem;
}

.product-card__swatch {
	width: var(--swatch-size);
	height: var(--swatch-size);
	padding: 0;
	border-radius: 50%;
	border: 1px solid var(--color-border-light);
	background-color: var(--color-bg-light);
	background-size: cover;
	background-position: center;
	cursor: pointer;
	transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.product-card__swatch:hover {
	transform: translateY(-1px);
	border-color: var(--color-text-muted);
}

.product-card__swatch:focus-visible,
.product-card__swatch.is-active {
	outline: none;
	border-color: var(--color-text);
	box-shadow:
		inset 0 0 0 2px #fff,
		0 0 0 1px var(--color-text);
}

.product-card__swatch.is-hidden {
	display: none;
}

.product-card__swatch--light {
	border-color: #b8b8b8;
}

/* Duo-tone (two-colour) variants — vertical 70/30 split painted from the
   --swatch-c1 / --swatch-c2 variables set inline by PHP. Lives in main.css
   because product cards render on the front page and other non-WC pages
   where woocommerce.css is not enqueued. */
.product-card__swatch.swatch--duo {
	background: linear-gradient(
		0deg,
		var(--swatch-c1, transparent) 0%,
		var(--swatch-c1, transparent) 70%,
		var(--swatch-c2, transparent) 70%,
		var(--swatch-c2, transparent) 100%
	);
}

/* Refined hover label — dark pill with downward arrow. Shared by variation
   swatches (.swatch) and product-card swatches (.product-card__swatch);
   lives in main.css because card swatches also render on the front page
   (where woocommerce.css is not enqueued). */
.swatch-tip {
	position: absolute;
	bottom: calc(100% + 8px);
	left: 50%;
	transform: translateX(-50%) translateY(4px);
	background: #1f1f1f;
	color: #fff;
	padding: 5px 9px;
	border-radius: 5px;
	font-family: var(--font-body, sans-serif);
	font-size: 11px;
	font-weight: 600;
	letter-spacing: 0.01em;
	white-space: nowrap;
	pointer-events: none;
	opacity: 0;
	transition: opacity 120ms ease, transform 120ms ease;
	z-index: 100;
}

.swatch-tip::after {
	content: '';
	position: absolute;
	top: 100%;
	left: 50%;
	transform: translateX(-50%);
	border: 5px solid transparent;
	border-top-color: #1f1f1f;
}

.swatch:hover > .swatch-tip,
.swatch:focus-visible > .swatch-tip,
.product-card__swatch:hover > .swatch-tip,
.product-card__swatch:focus-visible > .swatch-tip {
	opacity: 1;
	transform: translateX(-50%) translateY(0);
}

.product-card__swatches.is-expanded .product-card__swatch.is-hidden {
	display: inline-block;
}

.product-card__swatches-more {
	height: var(--swatch-size);
	min-width: var(--swatch-size);
	padding: 0 8px;
	border-radius: 50%;
	border: 1px solid var(--color-border);
	background: transparent;
	color: var(--color-text-muted);
	font-family: var(--font-body);
	font-size: var(--fs-xs);
	font-weight: var(--fw-semibold);
	line-height: 1;
	cursor: pointer;
	transition: background var(--transition), color var(--transition), border-color var(--transition);
}

.product-card__swatches-more:hover,
.product-card__swatches-more:focus-visible {
	outline: none;
	background: var(--color-text);
	border-color: var(--color-text);
	color: #fff;
}

.product-card__actions {
	padding: 0 var(--sp-lg) var(--sp-lg);
}

.product-card__add-to-cart {
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: var(--sp-sm) var(--sp-md);
	background: var(--color-bg-light);
	border: 1px solid var(--color-border);
	border-radius: var(--radius-md);
	color: var(--color-text);
	font-family: var(--font-body);
	font-size: var(--fs-sm);
	font-weight: var(--fw-semibold);
	cursor: pointer;
	transition: all var(--transition);
}

.product-card__add-to-cart:hover {
	background: var(--color-text);
	border-color: var(--color-text);
	color: #fff;
}

.product-card__add-to-cart.added::after {
	content: ' \2713';
}

/* ==========================================================================
   Blog Posts Grid
   ========================================================================== */

.posts-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
	gap: var(--sp-xl);
}

.post-card {
	border-radius: var(--radius-lg);
	overflow: hidden;
	border: 1px solid var(--color-border-light);
	transition: box-shadow var(--transition);
}

.post-card:hover {
	box-shadow: var(--shadow-md);
}

.post-card__image img {
	width: 100%;
	aspect-ratio: 16 / 9;
	object-fit: cover;
}

.post-card__content {
	padding: var(--sp-lg);
}

.post-card__title {
	font-size: var(--fs-lg);
	margin-bottom: var(--sp-sm);
}

.post-card__title a {
	color: var(--color-text);
}

.post-card__title a:hover {
	color: var(--color-primary);
}

.post-card__meta {
	font-size: var(--fs-sm);
	color: var(--color-text-muted);
	margin-bottom: var(--sp-md);
}

.post-card__excerpt {
	color: var(--color-text-light);
	font-size: var(--fs-sm);
	margin-bottom: var(--sp-md);
}

.post-card__link {
	display: inline-flex;
	align-items: center;
	gap: var(--sp-xs);
	font-size: var(--fs-sm);
	font-weight: var(--fw-semibold);
	color: var(--color-primary);
}

/* ==========================================================================
   Single Post
   ========================================================================== */

.single-post .post-header {
	margin-bottom: var(--sp-xl);
}

.single-post .post-title {
	font-size: var(--fs-3xl);
	margin-bottom: var(--sp-md);
}

.single-post .post-meta {
	display: flex;
	gap: var(--sp-lg);
	color: var(--color-text-muted);
	font-size: var(--fs-sm);
}

.single-post .post-thumbnail {
	margin-bottom: var(--sp-xl);
	border-radius: var(--radius-lg);
	overflow: hidden;
}

.single-post .entry-content {
	font-size: var(--fs-md);
	line-height: 1.8;
}

.single-post .entry-content p {
	margin-bottom: var(--sp-lg);
}

.single-post .post-footer {
	margin-top: var(--sp-2xl);
	padding-top: var(--sp-lg);
	border-top: 1px solid var(--color-border);
}

.post-tags {
	font-size: var(--fs-sm);
	color: var(--color-text-light);
}

.post-tags a {
	color: var(--color-text-light);
	text-decoration: underline;
}

/* Post navigation */
.post-navigation {
	margin-top: var(--sp-2xl);
	padding-top: var(--sp-xl);
	border-top: 1px solid var(--color-border);
}

.post-navigation .nav-links {
	display: flex;
	justify-content: space-between;
	gap: var(--sp-xl);
}

.post-navigation .nav-subtitle {
	display: block;
	font-size: var(--fs-xs);
	color: var(--color-text-muted);
	text-transform: uppercase;
	letter-spacing: 0.5px;
	margin-bottom: var(--sp-xs);
}

.post-navigation .nav-title {
	font-weight: var(--fw-semibold);
	color: var(--color-text);
}

/* ==========================================================================
   Page Templates
   ========================================================================== */

.page-header {
	margin-bottom: var(--sp-2xl);
}

.page-title {
	font-size: var(--fs-3xl);
}

.entry-content {
	line-height: var(--lh-base);
}

.entry-content img {
	border-radius: var(--radius-lg);
}

/* Archive */
.archive-header {
	margin-bottom: var(--sp-2xl);
}

.archive-title {
	font-size: var(--fs-2xl);
}

.archive-description {
	color: var(--color-text-light);
	margin-top: var(--sp-sm);
}

/* Search */
.search-header {
	margin-bottom: var(--sp-2xl);
}

.search-title {
	font-size: var(--fs-2xl);
}

.search-title span {
	color: var(--color-primary);
}

/* 404 */
.error-404 {
	text-align: center;
	padding: var(--sp-4xl) 0;
}

.error-404__title {
	font-size: 8rem;
	color: var(--color-primary);
	line-height: 1;
	margin-bottom: var(--sp-md);
}

.error-404__text {
	font-size: var(--fs-lg);
	color: var(--color-text-light);
	margin-bottom: var(--sp-2xl);
}

.error-404 .btn {
	margin: 0 var(--sp-sm);
}

/* No results */
.no-results {
	text-align: center;
	padding: var(--sp-4xl) 0;
}

.no-results__title {
	margin-bottom: var(--sp-md);
}

/* ==========================================================================
   Forms (general)
   ========================================================================== */

input[type="text"],
input[type="email"],
input[type="tel"],
input[type="url"],
input[type="password"],
input[type="number"],
input[type="search"],
textarea,
select {
	width: 100%;
	padding: 0.75rem 1rem;
	font-family: var(--font-body);
	font-size: var(--fs-base);
	color: var(--color-text);
	background: var(--color-bg);
	border: 1px solid var(--color-border);
	border-radius: var(--radius-md);
	transition: border-color var(--transition);
	appearance: none;
}

input:focus,
textarea:focus,
select:focus {
	border-color: var(--color-primary);
	outline: none;
	box-shadow: 0 0 0 3px var(--color-primary-light);
}

label {
	display: block;
	font-size: var(--fs-sm);
	font-weight: var(--fw-semibold);
	margin-bottom: var(--sp-xs);
}

/* ==========================================================================
   Pagination
   ========================================================================== */

.pagination,
.woocommerce-pagination {
	margin-top: var(--sp-2xl);
	display: flex;
	justify-content: center;
}

.page-numbers {
	display: flex;
	list-style: none;
	padding: 0;
	margin: 0;
	gap: var(--sp-xs);
	flex-wrap: wrap;
}

.page-numbers li a,
.page-numbers li span {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 42px;
	height: 42px;
	border-radius: var(--radius-md);
	font-size: var(--fs-sm);
	font-weight: var(--fw-semibold);
	color: var(--color-text);
	border: 1px solid var(--color-border);
	transition: all var(--transition);
	text-decoration: none;
}

.page-numbers li a:hover {
	background: var(--color-text);
	border-color: var(--color-text);
	color: #fff;
}

.page-numbers li span.current {
	background: var(--color-text);
	border-color: var(--color-text);
	color: #fff;
}

/* ==========================================================================
   Responsive
   ========================================================================== */

@media (max-width: 1024px) {
	:root {
		--container-padding: 1.5rem;
	}

	.product-grid--4,
	.product-grid--5 {
		grid-template-columns: repeat(3, 1fr);
	}

	.contact-layout {
		grid-template-columns: 1fr;
	}

	.contact-form-wrap {
		padding: var(--sp-2xl);
	}

	/* Mega menu 3-col on tablet */
	.mega-menu__inner {
		grid-template-columns: 1fr 1fr 1.5fr;
		gap: var(--sp-2xl);
	}

	.mega-menu__image {
		display: none;
	}

	.footer-grid {
		grid-template-columns: 1fr 1fr;
		gap: var(--sp-2xl);
	}
}

@media (max-width: 768px) {
	:root {
		--fs-3xl: 2rem;
		--fs-2xl: 1.5rem;
		--fs-4xl: 2.5rem;
		--fs-5xl: 3rem;
		--header-height: 64px;
		--container-padding: 1.25rem;
	}

	/* Hide desktop mega nav, show hamburger */
	.mega-nav {
		display: none;
	}

	.hamburger {
		display: flex;
	}

	.header-account-text {
		display: none;
	}

	/* Cart drawer full-width on mobile */
	.cart-drawer {
		width: 100%;
		right: -100%;
	}

	.cart-drawer__item-img {
		width: 72px;
		height: 90px;
	}

	.product-grid--2,
	.product-grid--3,
	.product-grid--4,
	.product-grid--5 {
		grid-template-columns: repeat(2, 1fr);
	}


	.product-grid {
		gap: var(--sp-md);
	}

	.posts-grid {
		grid-template-columns: 1fr;
	}

	/* Footer stacks on mobile */
	.footer-grid {
		grid-template-columns: 1fr;
		gap: var(--sp-2xl);
	}

	.footer-bottom__inner {
		flex-direction: column;
		gap: var(--sp-md);
		text-align: center;
	}

	.error-404__title {
		font-size: 5rem;
	}

	.post-navigation .nav-links {
		flex-direction: column;
	}
}

@media (max-width: 560px) {
	.product-card__swatches {
		display: none;
	}
}

@media (max-width: 480px) {
	.product-card__info {
		padding: var(--sp-sm);
	}

	.product-card__title {
		font-size: var(--fs-xs);
	}

	.mobile-menu {
		width: 300px;
		left: -300px;
	}
}

/* ==========================================================================
   Page Hero (shared across page templates)
   ========================================================================== */

.page-hero {
	text-align: center;
	padding: var(--sp-2xl) 0 var(--sp-3xl);
}

.page-hero--compact {
	padding: var(--sp-2xl) 0 var(--sp-xl);
}

.page-hero__label {
	display: block;
	font-family: var(--font-body);
	font-size: 0.6875rem;
	font-weight: var(--fw-bold);
	text-transform: uppercase;
	letter-spacing: 0.2em;
	color: var(--color-primary);
	margin-bottom: var(--sp-md);
}

.page-hero__title {
	font-family: var(--font-heading);
	font-size: var(--fs-4xl);
	font-weight: var(--fw-normal);
	line-height: var(--lh-tight);
	margin-bottom: var(--sp-md);
}

.page-hero__subtitle {
	font-size: var(--fs-md);
	color: var(--color-text-light);
	max-width: 560px;
	margin: 0 auto;
	line-height: 1.7;
}

/* ==========================================================================
   Post Hero (single post)
   ========================================================================== */

.post-hero {
	text-align: center;
	padding: var(--sp-3xl) 0 var(--sp-2xl);
}

.post-hero__meta {
	font-size: var(--fs-sm);
	color: var(--color-text-muted);
	margin-bottom: var(--sp-md);
}

.post-hero__meta a {
	color: var(--color-primary);
}

.post-hero__sep {
	margin: 0 var(--sp-sm);
}

.post-hero__title {
	font-family: var(--font-heading);
	font-size: var(--fs-4xl);
	font-weight: var(--fw-normal);
	line-height: var(--lh-tight);
	max-width: 720px;
	margin: 0 auto;
}

/* ==========================================================================
   Contact Page
   ========================================================================== */

.contact-cards {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: var(--sp-lg);
	margin-bottom: var(--sp-4xl);
}

.contact-card {
	background: var(--color-bg-light);
	border-radius: var(--radius-xl);
	padding: var(--sp-2xl);
	text-align: center;
	transition: box-shadow var(--transition);
}

.contact-card:hover {
	box-shadow: var(--shadow-md);
}

.contact-card__icon {
	display: flex;
	justify-content: center;
	margin-bottom: var(--sp-lg);
	color: var(--color-primary);
}

.contact-card__title {
	font-family: var(--font-body);
	font-size: var(--fs-xs);
	font-weight: var(--fw-bold);
	text-transform: uppercase;
	letter-spacing: 0.1em;
	color: var(--color-text-muted);
	margin-bottom: var(--sp-sm);
}

.contact-card__value {
	display: block;
	font-size: var(--fs-base);
	color: var(--color-text);
	text-decoration: none;
	margin-bottom: var(--sp-sm);
}

.contact-card__value p {
	margin: 0;
}

a.contact-card__value:hover {
	color: var(--color-primary);
}

.contact-card__note {
	font-size: var(--fs-xs);
	color: var(--color-text-muted);
}

.contact-card__link {
	display: inline-block;
	font-size: var(--fs-sm);
	font-weight: var(--fw-semibold);
	color: var(--color-primary);
	text-decoration: none;
	margin-top: var(--sp-xs);
	transition: color var(--transition);
}

.contact-card__link:hover {
	color: var(--color-primary-hover);
}

/* Layout: form + sidebar */

.contact-layout {
	display: grid;
	grid-template-columns: 3fr 2fr;
	gap: var(--sp-3xl);
	align-items: start;
	margin-bottom: var(--sp-4xl);
}

/* Contact form */

.contact-form-wrap {
	background: var(--color-bg-light);
	border-radius: var(--radius-xl);
	padding: var(--sp-2xl) var(--sp-3xl);
}

.contact-form__heading {
	font-family: var(--font-heading);
	font-size: var(--fs-2xl);
	font-weight: var(--fw-normal);
	margin-bottom: var(--sp-sm);
}

.contact-form__intro {
	font-size: var(--fs-sm);
	color: var(--color-text-light);
	margin-bottom: var(--sp-xl);
}

.contact-form__row {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: var(--sp-lg);
}

.contact-form__field {
	margin-bottom: var(--sp-lg);
}

.contact-form__field .required {
	color: var(--color-primary);
}

.contact-form__field textarea {
	max-width: 650px;
}

.contact-form__footer {
	display: flex;
	align-items: center;
	gap: var(--sp-lg);
	flex-wrap: wrap;
}

.contact-form__status {
	font-size: var(--fs-sm);
	font-weight: var(--fw-medium);
}

.contact-form__status--success {
	color: var(--color-success);
}

.contact-form__status--error {
	color: var(--color-error);
}

/* Sidebar */

.contact-sidebar {
	display: flex;
	flex-direction: column;
	gap: var(--sp-xl);
}

.contact-sidebar__section {
	background: var(--color-bg-light);
	border-radius: var(--radius-xl);
	padding: var(--sp-2xl);
}

.contact-sidebar__title {
	font-family: var(--font-body);
	font-size: var(--fs-xs);
	font-weight: var(--fw-bold);
	text-transform: uppercase;
	letter-spacing: 0.1em;
	color: var(--color-text-muted);
	margin-bottom: var(--sp-md);
}

.contact-sidebar__hours {
	font-size: var(--fs-sm);
	color: var(--color-text-light);
	line-height: 1.8;
	margin-bottom: var(--sp-lg);
}

.contact-sidebar__nav-link {
	display: inline-flex;
	align-items: center;
	gap: var(--sp-sm);
	font-size: var(--fs-sm);
	font-weight: var(--fw-semibold);
	color: var(--color-primary);
	text-decoration: none;
	transition: color var(--transition);
}

.contact-sidebar__nav-link:hover {
	color: var(--color-primary-hover);
}

.contact-sidebar__text {
	font-size: var(--fs-sm);
	color: var(--color-text-light);
	line-height: 1.8;
}

/* Google Map */

.contact-map {
	margin-top: var(--sp-4xl);
	line-height: 0;
}

.contact-map iframe {
	display: block;
	width: 100%;
	height: 450px;
	border: 0;
}

/* ==========================================================================
   Size Guide
   ========================================================================== */

.sg-section {
	margin-bottom: var(--sp-4xl);
}

.sg-section__title {
	font-family: var(--font-heading);
	font-size: var(--fs-2xl);
	font-weight: var(--fw-normal);
	margin-bottom: var(--sp-xl);
}

.sg-intro {
	color: var(--color-text-light);
	margin-bottom: var(--sp-xl);
	max-width: 72ch;
}

/* Category tabs (Dámy / Páni / Deti) */
.sg-tabs {
	display: flex;
	justify-content: center;
	gap: var(--sp-xl);
	border-bottom: 1px solid var(--color-border-light);
	margin-bottom: var(--sp-2xl);
	flex-wrap: wrap;
}

.sg-tabs__btn {
	background: none;
	border: 0;
	padding: var(--sp-md) var(--sp-sm);
	font-family: inherit;
	font-size: var(--fs-sm);
	font-weight: var(--fw-medium);
	text-transform: uppercase;
	letter-spacing: 0.15em;
	color: var(--color-text-muted);
	cursor: pointer;
	position: relative;
	transition: color 0.2s ease;
}

.sg-tabs__btn:hover {
	color: var(--color-text);
}

.sg-tabs__btn.is-active {
	color: var(--color-primary);
}

.sg-tabs__btn.is-active::after {
	content: '';
	position: absolute;
	left: var(--sp-sm);
	right: var(--sp-sm);
	bottom: -1px;
	height: 2px;
	background: var(--color-primary);
}

/* Accordions container (tabpanel) */
.sg-accordions {
	margin-top: var(--sp-xl);
	max-width: 1000px;
}

/* How-to-measure block: intro on the left, numbered items on the right */
.sg-measure-block {
	background: var(--color-bg-light);
	border-radius: var(--radius-xl);
	padding: var(--sp-3xl);
	margin-bottom: var(--sp-3xl);
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(0, 1.8fr);
	gap: var(--sp-3xl);
	align-items: start;
}

.sg-measure-block__title {
	font-family: var(--font-heading);
	font-size: var(--fs-2xl);
	font-weight: var(--fw-normal);
	margin: 0 0 var(--sp-md);
	line-height: 1.2;
}

.sg-measure-block__desc {
	font-size: var(--fs-sm);
	color: var(--color-text-light);
	line-height: 1.7;
	margin: 0;
}

.sg-measure-block__items {
	list-style: none;
	margin: 0;
	padding: 0;
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: var(--sp-2xl) var(--sp-xl);
}

.sg-measure-item {
	display: grid;
	grid-template-columns: auto minmax(0, 1fr);
	gap: var(--sp-md);
	align-items: start;
}

.sg-measure-item__num {
	font-family: var(--font-heading);
	font-size: var(--fs-xl);
	font-weight: var(--fw-normal);
	color: #dee0d9;
	line-height: 1;
	letter-spacing: 0.02em;
}

.sg-measure-item__body {
	min-width: 0;
}

.sg-measure-item__title {
	font-family: var(--font-heading);
	font-size: var(--fs-md);
	font-weight: var(--fw-normal);
	margin: 0 0 var(--sp-xs);
	color: var(--color-text);
	line-height: 1.3;
}

.sg-measure-item__desc {
	font-size: var(--fs-sm);
	color: var(--color-text-light);
	line-height: 1.6;
	margin: 0;
}

.sg-measure-block__tip {
	grid-column: 1 / -1;
	font-size: var(--fs-sm);
	color: var(--color-text-muted);
	line-height: 1.7;
	margin: var(--sp-xl) 0 0;
	padding-top: var(--sp-xl);
	border-top: 1px solid var(--color-border-light);
}

/* Intro headline over the table groups */
.sg-section--tables {
	margin-bottom: var(--sp-2xl);
	max-width: 1000px;
}

/* Accordion: collapsible size table */
.sg-accordion {
	background: #fff;
	box-shadow: 0px 2px 4px -3px #0000001f;
	border-radius: var(--radius-lg);
	margin-bottom: var(--sp-md);
	overflow: hidden;
	transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.sg-accordion[open] {
	border-color: var(--color-border);
	box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04);
}

.sg-accordion__summary {
	list-style: none;
	cursor: pointer;
	padding: var(--sp-lg) var(--sp-xl);
	display: flex;
	align-items: center;
	gap: var(--sp-md);
	user-select: none;
	transition: background 0.2s ease;
}

.sg-accordion__summary::-webkit-details-marker,
.sg-accordion__summary::marker {
	display: none;
	content: '';
}

.sg-accordion__summary:hover {
	background: var(--color-bg-light);
}

.sg-accordion__label {
	flex: 1 1 auto;
	font-family: var(--font-heading);
	font-size: var(--fs-md);
	font-weight: var(--fw-normal);
	color: var(--color-text-light);
	line-height: 1.3;
	min-width: 0;
}

.sg-accordion__variant {
	font-style: normal;
	font-size: var(--fs-sm);
	color: var(--color-text-muted);
	margin-left: var(--sp-xs);
}

.sg-accordion__tags {
	display: inline-flex;
	flex-wrap: wrap;
	gap: var(--sp-xs);
	flex-shrink: 0;
}

.sg-accordion__icon {
	flex-shrink: 0;
	width: 8px;
	height: 8px;
	border-right: 2px solid var(--color-text-muted);
	border-bottom: 2px solid var(--color-text-muted);
	transform: rotate(45deg);
	transition: transform 0.25s ease;
	margin-bottom: 4px;
}

.sg-accordion[open] > .sg-accordion__summary .sg-accordion__icon {
	transform: rotate(-135deg);
	margin-top: 4px;
	margin-bottom: 0;
}

.sg-accordion__content {
	padding: 0 var(--sp-xl) var(--sp-xl);
}

.sg-accordion__content > .sg-table-wrapper:first-child {
	margin-top: var(--sp-sm);
}

.sg-accordion__text {
	font-size: var(--fs-sm);
	color: var(--color-text-light);
	line-height: 1.7;
	margin: var(--sp-lg) 0 0;
}

.sg-subtable-title {
	font-family: var(--font-heading);
	font-size: var(--fs-sm);
	font-weight: var(--fw-normal);
	color: var(--color-text-muted);
	margin: var(--sp-lg) 0 var(--sp-sm);
	text-transform: uppercase;
	letter-spacing: 0.08em;
}

/* Category tags (pill badges) */
.sg-tag {
	display: inline-flex;
	align-items: center;
	padding: 4px 10px;
	border-radius: var(--radius-full);
	font-family: var(--font-body);
	font-size: 0.75rem;
	font-weight: var(--fw-normal);
	line-height: 1.4;
	white-space: nowrap;
	background: var(--color-bg-light);
	color: var(--color-text-muted);
}

.sg-tag--women { background: rgba(225, 112, 85, 0.15); color: #b0462e; }
.sg-tag--men { background: rgba(88, 135, 168, 0.15); color: #3d6b8a; }
.sg-tag--girls { background: rgba(214, 128, 168, 0.15); color: #a44d7c; }
.sg-tag--boys { background: rgba(108, 162, 180, 0.15); color: #3a6e82; }
.sg-tag--kids { background: rgba(166, 152, 120, 0.18); color: #6e5f3a; }
.sg-tag--unisex { background: rgba(120, 130, 120, 0.15); color: #4f5a4f; }
.sg-tag--panties { background: rgba(250, 177, 160, 0.25); color: #a35840; }
.sg-tag--tops { background: rgba(0, 184, 148, 0.15); color: #0a7458; }
.sg-tag--bra { background: rgba(253, 203, 110, 0.25); color: #8a6a1c; }
.sg-tag--sport { background: rgba(125, 155, 200, 0.18); color: #3c5a85; }
.sg-tag--socks { background: rgba(180, 160, 200, 0.18); color: #5f4780; }

.sg-table-wrapper {
	overflow-x: auto;
	-webkit-overflow-scrolling: touch;
	margin-bottom: var(--sp-md);
}

.sg-table {
	width: 100%;
	border-collapse: collapse;
	font-size: var(--fs-sm);
}

.sg-table th,
.sg-table td {
	padding: var(--sp-md) var(--sp-lg);
	text-align: center;
	border-bottom: 1px solid var(--color-border-light);
}

.sg-table th {
	font-weight: var(--fw-semibold);
	color: var(--color-text);
	background: var(--color-bg-light);
	border-bottom: none;

	&:first-child {
		border-radius: var(--radius-md) 0 0 var(--radius-md);
	}
	&:last-child {
		border-radius: 0 var(--radius-md) var(--radius-md) 0;
	}
}

.sg-table th:first-child,
.sg-table td:first-child {
	text-align: left;
	font-weight: var(--fw-semibold);
	color: var(--color-text-muted);
}

.sg-table tbody tr:hover {
	background: var(--color-bg-light);
}

.sg-note {
	font-size: var(--fs-sm);
	color: var(--color-text-muted);
	line-height: 1.7;
	padding: var(--sp-lg);
	background: var(--color-bg-light);
	border-radius: var(--radius-lg);
}

/* Shared CTA block */
.sg-cta {
	text-align: center;
	padding: var(--sp-4xl) var(--sp-xl);
	background: var(--color-bg-light);
	border-radius: var(--radius-xl);
	margin-top: var(--sp-3xl);
}

.sg-cta h2 {
	font-family: var(--font-heading);
	font-size: var(--fs-2xl);
	font-weight: var(--fw-normal);
	margin-bottom: var(--sp-sm);
}

.sg-cta p {
	color: var(--color-text-light);
	margin-bottom: var(--sp-xl);
}

/* ==========================================================================
   Returns Page
   ========================================================================== */

.returns-steps {
	display: grid;
	gap: var(--sp-lg);
	margin-bottom: var(--sp-4xl);
}

.returns-step {
	display: flex;
	gap: var(--sp-xl);
	align-items: flex-start;
	padding: var(--sp-xl);
	background: var(--color-bg-light);
	border-radius: var(--radius-xl);
}

.returns-step__num {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	width: 40px;
	height: 40px;
	border-radius: 50%;
	background: var(--color-text);
	color: var(--color-bg);
	font-weight: var(--fw-bold);
	font-size: var(--fs-sm);
}

.returns-step h3 {
	font-family: var(--font-heading);
	font-size: var(--fs-md);
	font-weight: var(--fw-normal);
	margin-bottom: var(--sp-xs);
}

.returns-step p {
	font-size: var(--fs-sm);
	color: var(--color-text-light);
	margin: 0;
	line-height: 1.7;
}

/* ==========================================================================
   Info Grid (shared: returns, shipping)
   ========================================================================== */

.info-section {
	margin-bottom: var(--sp-4xl);
}

.info-section h2 {
	font-family: var(--font-heading);
	font-size: var(--fs-2xl);
	font-weight: var(--fw-normal);
	margin-bottom: var(--sp-xl);
}

.info-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: var(--sp-lg);
}

.info-card {
	background: var(--color-bg-light);
	border-radius: var(--radius-xl);
	padding: var(--sp-2xl);
}

.info-card--highlight {
	background: var(--color-text);
	color: var(--color-bg);
}

.info-card--highlight h3 {
	color: var(--color-bg);
}

.info-card--highlight p {
	color: rgba(250, 250, 245, 0.8);
}

.info-card h3 {
	font-family: var(--font-heading);
	font-size: var(--fs-md);
	font-weight: var(--fw-normal);
	margin-bottom: var(--sp-sm);
}

.info-card p {
	font-size: var(--fs-sm);
	color: var(--color-text-light);
	margin: 0 0 var(--sp-sm);
	line-height: 1.7;
}

.info-card__price {
	font-size: var(--fs-lg);
	font-weight: var(--fw-bold);
	color: var(--color-primary);
}

.info-card--highlight .info-card__price {
	color: #fff;
}

/* ==========================================================================
   Returns & Withdrawal pages — wider container + collapsible legal text
   ========================================================================== */

/* The interactive forms need more room than the 800px reading column. */
.container--returns {
	max-width: 1080px;
}

/* Collapsible legal disclosure ("Poučenie …") — native <details>, no JS. */
.legal-disclosure {
	border: 1px solid var(--color-border-light);
	border-radius: var(--radius-xl);
	background: var(--color-bg-light);
	margin-bottom: var(--sp-3xl);
	overflow: hidden;
}

.legal-disclosure > summary {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: var(--sp-md);
	padding: var(--sp-lg) var(--sp-xl);
	cursor: pointer;
	list-style: none;
	font-family: var(--font-heading);
	font-size: var(--fs-md);
	color: var(--color-text);
	-webkit-user-select: none;
	user-select: none;
}

.legal-disclosure > summary::-webkit-details-marker {
	display: none;
}

/* Chevron that flips when opened. */
.legal-disclosure > summary::after {
	content: "";
	flex-shrink: 0;
	width: 9px;
	height: 9px;
	margin-right: 4px;
	border-right: 2px solid var(--color-text-muted);
	border-bottom: 2px solid var(--color-text-muted);
	transform: rotate(45deg);
	transition: transform var(--transition);
}

.legal-disclosure[open] > summary::after {
	transform: rotate(-135deg);
}

.legal-disclosure > summary:hover {
	color: var(--color-primary);
}

.legal-disclosure__body {
	padding: 0 var(--sp-xl) var(--sp-xl);
}

.legal-disclosure__body > :first-child {
	margin-top: 0;
}

.legal-disclosure__body h3 {
	font-family: var(--font-heading);
	font-size: var(--fs-md);
	font-weight: var(--fw-semibold);
	margin: var(--sp-xl) 0 var(--sp-sm);
}

.legal-disclosure__body p,
.legal-disclosure__body li {
	font-size: var(--fs-sm);
	color: var(--color-text-light);
	line-height: 1.75;
}

.legal-disclosure__intro {
	color: var(--color-text-muted) !important;
	margin-bottom: var(--sp-lg);
}

/* ==========================================================================
   About Page
   ========================================================================== */

.about-section {
	margin-bottom: var(--sp-4xl);
}

.about-section__heading {
	font-family: var(--font-heading);
	font-size: var(--fs-2xl);
	font-weight: var(--fw-normal);
	margin-bottom: var(--sp-2xl);
}

.about-block {
	max-width: 640px;
}

.about-block__title {
	font-family: var(--font-heading);
	font-size: var(--fs-3xl);
	font-weight: var(--fw-normal);
	font-style: italic;
	margin-bottom: var(--sp-lg);
}

.about-block__text {
	font-size: var(--fs-md);
	color: var(--color-text-light);
	line-height: 1.8;
}

.about-values {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: var(--sp-lg);
}

.about-value {
	background: var(--color-bg-light);
	border-radius: var(--radius-xl);
	padding: var(--sp-2xl);
}

.about-value__num {
	display: block;
	font-family: var(--font-heading);
	font-size: var(--fs-3xl);
	font-weight: var(--fw-normal);
	color: var(--color-border);
	margin-bottom: var(--sp-md);
	line-height: 1;
}

.about-value h3 {
	font-family: var(--font-heading);
	font-size: var(--fs-md);
	font-weight: var(--fw-normal);
	margin-bottom: var(--sp-sm);
}

.about-value p {
	font-size: var(--fs-sm);
	color: var(--color-text-light);
	margin: 0;
	line-height: 1.7;
}

/* ==========================================================================
   Brands Page
   ========================================================================== */

.brands-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
	gap: var(--sp-lg);
	margin-bottom: var(--sp-4xl);
}

.brand-card {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: var(--sp-md);
	background: var(--color-bg-light);
	border-radius: var(--radius-xl);
	padding: var(--sp-2xl);
	text-decoration: none;
	color: var(--color-text);
	transition: box-shadow var(--transition-slow), transform var(--transition-slow);
	min-height: 180px;
	text-align: center;
}

.brand-card:hover {
	box-shadow: var(--shadow-md);
	transform: translateY(-2px);
	color: var(--color-text);
}

.brand-card__logo {
	max-height: 60px;
	width: auto;
	object-fit: contain;
}

.brand-card__name {
	font-family: var(--font-heading);
	font-size: var(--fs-lg);
	font-weight: var(--fw-normal);
}

.brand-card__count {
	font-size: var(--fs-xs);
	color: var(--color-text-muted);
	text-transform: uppercase;
	letter-spacing: 0.05em;
}

/* ==========================================================================
   404 Enhancements
   ========================================================================== */

.error-404__label {
	display: block;
	font-family: var(--font-body);
	font-size: 0.6875rem;
	font-weight: var(--fw-bold);
	text-transform: uppercase;
	letter-spacing: 0.2em;
	color: var(--color-text-muted);
	margin-bottom: var(--sp-md);
}

.error-404__actions {
	display: flex;
	gap: var(--sp-md);
	justify-content: center;
	flex-wrap: wrap;
}

/* ==========================================================================
   Page Template Responsive
   ========================================================================== */

@media (max-width: 1024px) {
	.contact-cards {
		grid-template-columns: repeat(2, 1fr);
	}

	.sg-measure-block {
		grid-template-columns: 1fr;
		gap: var(--sp-xl);
		padding: var(--sp-2xl);
	}
}

@media (max-width: 640px) {
	.sg-measure-block__items {
		grid-template-columns: 1fr;
	}

	.sg-accordion__summary {
		flex-wrap: wrap;
		padding: var(--sp-md) var(--sp-lg);
	}

	.sg-accordion__label {
		flex: 1 1 100%;
		order: 1;
	}

	.sg-accordion__tags {
		order: 2;
	}

	.sg-accordion__icon {
		order: 3;
		margin-left: auto;
	}

	.sg-accordion__content {
		padding: 0 var(--sp-lg) var(--sp-lg);
	}
}

@media (max-width: 768px) {
	.page-hero__title {
		font-size: var(--fs-3xl);
	}

	.post-hero__title {
		font-size: var(--fs-3xl);
	}

	.contact-cards {
		grid-template-columns: 1fr;
	}

	.contact-layout {
		grid-template-columns: 1fr;
	}

	.contact-form__row {
		grid-template-columns: 1fr;
	}

	.contact-form-wrap {
		padding: var(--sp-xl);
	}

	.contact-map iframe {
		height: 300px;
	}

	.info-grid {
		grid-template-columns: 1fr;
	}

	.about-values {
		grid-template-columns: 1fr;
	}

	.brands-grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.error-404__title {
		font-size: 5rem;
	}
}
