/* Centered shop title and cart icon row */
.brand-banner-inner {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
}

.brand-banner-inner>div:first-child {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 18px;
	width: 100%;
}

.drop-title {
	margin: 0;
	text-align: center;
}

.drop-title .drop-kicker {
	display: block;
	font-size: 4rem;
	font-weight: 700;
	letter-spacing: 0.08em;
	color: var(--gold) !important;
}

.drop-title .drop-sub {
	display: block;
	font-size: 1.1rem;
	font-weight: 400;
	margin-top: 2px;
}

.brand-banner-inner #cart-button {
	margin-left: 24px;
}

/* Crop sides for Kaftan 2 image */
.img-crop-sides {
	clip-path: inset(0 10% 0 10%);
}

/* Reset + project styles extracted from index.html */
* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

/* Disable double-click zoom */
* {
	touch-action: manipulation;
}

/* Re-enable text selection for input fields and text areas */
input,
textarea,
[contenteditable] {
	-webkit-user-select: text;
	-moz-user-select: text;
	-ms-user-select: text;
	user-select: text;
}

/* Luxury palette */
:root {
	--gold: #C6A15A;
	--charcoal-hex: #111217;
	--charcoal-rgb: 17, 18, 23;
	--white: #ffffff;
}

body {
	font-family: 'Montserrat', sans-serif;
	background: #ffffff;
	color: var(--charcoal-hex);
	line-height: 1.6;
	scroll-behavior: smooth;
}

h1,
h2,
h3 {
	font-family: 'Playfair Display', serif;
}

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

/* Hero — Parallax + Big Brand */
.hero {
	position: relative;
	height: 60vh;
	min-height: 320px;
	width: 100%;
	overflow: hidden;
	display: flex;
	align-items: center;
	justify-content: center;
}

.hero-media {
	position: absolute;
	inset: 0;
}

.hero .layer {
	position: absolute;
	inset: 0;
	background-size: cover;
	background-position: center;
	will-change: transform;
	filter: saturate(0.9) contrast(1.05);
}

/* Hide default video controls and overlays */
.main-brand-bg-video::-webkit-media-controls,
.main-brand-bg-video::-webkit-media-controls-start-playback-button,
.main-brand-bg-video::-webkit-media-controls-play-button {
	display: none !important;
	-webkit-appearance: none;
	opacity: 0;
}

.hero .layer-1 {
	background: radial-gradient(circle at 30% 40%, rgba(198, 161, 90, 0.12), transparent 60%), linear-gradient(180deg, #ffffff 0%, #f7f8f9 100%);
}

.hero .layer-2 {
	background: linear-gradient(120deg, rgba(198, 161, 90, 0.12), transparent 55%);
	mix-blend-mode: overlay;
}

.bg-stack {
	position: fixed;
	inset: 0;
	z-index: -10;
	overflow: hidden;
	display: none;
}

.bg-layer {
	position: absolute;
	inset: 0;
}

.bg-gradient {
	background:
		radial-gradient(circle at 18% 28%, rgba(198, 161, 90, 0.12), transparent 60%),
		radial-gradient(circle at 82% 70%, rgba(198, 161, 90, 0.09), transparent 65%),
		linear-gradient(160deg, #0c0d10 0%, #191b20 45%, #0d0e11 100%),
		url('background.jpg') center/cover no-repeat;
	background-blend-mode: overlay, overlay, normal, normal;
	filter: contrast(1.05) saturate(0.95);
}

.bg-sheen {
	background: linear-gradient(110deg, rgba(198, 161, 90, 0) 0%, rgba(198, 161, 90, 0.15) 45%, rgba(198, 161, 90, 0) 70%);
	animation: sheen-move 14s linear infinite;
	mix-blend-mode: overlay;
}

.bg-pattern {
	background-image: repeating-linear-gradient(45deg, rgba(255, 255, 255, 0.03) 0 10px, transparent 10px 20px);
	opacity: 0.08;
	filter: blur(1px);
}

.bg-noise {
	background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="400" height="400" viewBox="0 0 400 400"><filter id="n"><feTurbulence type="fractalNoise" baseFrequency="0.9" numOctaves="4" stitchTiles="stitch"/></filter><rect width="400" height="400" filter="url(%23n)" opacity="0.08"/></svg>');
	mix-blend-mode: overlay;
}

.bg-vignette {
	position: absolute;
	inset: 0;
	background: radial-gradient(circle at center, rgba(0, 0, 0, 0) 55%, rgba(0, 0, 0, 0.55) 100%);
	pointer-events: none;
}

@keyframes sheen-move {
	0% {
		transform: translateX(-30%);
	}

	50% {
		transform: translateX(10%);
	}

	100% {
		transform: translateX(90%);
	}
}

.hero .grain {
	position: absolute;
	inset: 0;
	pointer-events: none;
	background-image: none;
}

.hero-inner {
	position: relative;
	text-align: center;
	padding: 0 20px;
	z-index: 2;
}

.brand-display {
	font-family: 'Bodoni Moda', 'Playfair Display', serif;
	font-weight: 900;
	font-size: clamp(3.8rem, 9vw, 12rem);
	letter-spacing: 0.06em;
	text-transform: uppercase;
	color: var(--gold);
	text-shadow: 0 14px 50px rgba(198, 161, 90, 0.28), 0 3px 14px rgba(0, 0, 0, 0.2);
	line-height: 0.9;
}

.brand-display .tm {
	font-family: inherit;
	font-weight: 700;
	font-size: 0.38em;
	vertical-align: super;
	margin-left: 0.08em;
	letter-spacing: 0;
	color: currentColor;
	opacity: 0.9;
}

.brand-left {
	text-align: left;
}

.brand-banner {
	position: relative;
	padding: 140px 60px 40px;
}

.hero-left {
	text-align: left;
	max-width: 1600px;
	margin: 0 auto;
	padding-left: 60px;
	padding-top: 60px;
}

.brand-banner-inner {
	max-width: 1400px;
	margin: 0 auto;
}

.tagline {
	margin-top: 12px;
	color: #333333;
	font-size: clamp(0.9rem, 2vw, 1.1rem);
}

.cta {
	display: inline-block;
	margin-top: 22px;
	padding: 12px 22px;
	background: var(--gold);
	color: var(--charcoal-hex);
	font-weight: 700;
	letter-spacing: 0.06em;
	border: 1px solid rgba(198, 161, 90, 0.35);
	box-shadow: 0 10px 30px rgba(198, 161, 90, 0.15);
	transition: transform 0.2s ease, filter 0.2s ease;
	text-align: center;
}

.cta:hover {
	transform: translateY(-2px);
	filter: brightness(0.96);
}

.scroll-cue-animated {
	position: absolute;
	bottom: 32px;
	left: 50%;
	transform: translateX(-50%);
	background: none;
	border: none;
	cursor: pointer;
	outline: none;
	z-index: 10;
	display: flex;
	flex-direction: column;
	align-items: center;
	animation: scroll-cue-fadein 1.2s cubic-bezier(.4, 0, .2, 1);
}

.scroll-cue-circle {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 56px;
	height: 56px;
	border-radius: 50%;
	background: rgba(198, 161, 90, 0.10);
	box-shadow: 0 4px 18px rgba(198, 161, 90, 0.10);
	border: 2px solid var(--gold);
	transition: box-shadow 0.2s;
}

.scroll-cue-animated:hover .scroll-cue-circle {
	box-shadow: 0 8px 32px rgba(198, 161, 90, 0.18);
}

.scroll-cue-arrow {
	display: block;
	margin: 0 auto;
	animation: scroll-cue-bounce 1.2s infinite cubic-bezier(.4, 0, .2, 1);
}

@keyframes scroll-cue-bounce {

	0%,
	100% {
		transform: translateY(0);
	}

	50% {
		transform: translateY(10px);
	}
}

@keyframes scroll-cue-fadein {
	from {
		opacity: 0;
		transform: translateY(30px) scale(0.9);
	}

	to {
		opacity: 1;
		transform: translateY(0) scale(1);
	}
}

/* Story panels (scrollytelling) */
.story {
	position: relative;
}

.story .panel {
	position: relative;
	height: 100vh;
	display: grid;
	place-items: center;
	overflow: hidden;
}

.story .panel .shop-panel-inner {
	width: 100%;
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 24px;
}

.story .panel .shop-panel-inner .grid {
	gap: 24px;
}

.story .panel .shop-panel-inner .grid-item img {
	height: 320px;
	object-fit: cover;
}

.story .panel .shop-panel-inner .grid-item .product-info {
	padding: 12px;
}

.story .panel-copy {
	position: relative;
	z-index: 1;
	text-align: center;
	padding: 0 24px;
}

.story .panel-copy h3 {
	font-size: clamp(1.6rem, 4vw, 3rem);
	color: var(--charcoal-hex);
}

.story .panel-copy p {
	margin-top: 8px;
	color: #333333;
	max-width: 720px;
}

.story .panel {
	position: relative;
	height: 100vh;
	display: grid;
	place-items: center;
	overflow: hidden;
	background: linear-gradient(180deg, #ffffff 0%, #f7f8f9 100%);
	border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.story .panel::before,
.story .panel::after {
	content: none;
}

.story .panel-copy h3 {
	font-size: clamp(1.6rem, 4vw, 3rem);
	color: var(--charcoal-hex);
}

.story .panel-copy p {
	margin-top: 8px;
	color: #333333;
	max-width: 720px;
}

/* Cinematic gold stroke reveal */
.title-frame {
	display: inline-block;
	position: relative;
	padding: 6px 18px;
}

.title-frame::before {
	content: "";
	position: absolute;
	inset: 0;
	border: 2px solid var(--gold);
	opacity: 0;
	transform: scale(0.9);
}

.title-text {
	position: relative;
}

/* Auto-scroll toggle */
.auto-toggle {
	position: fixed;
	right: 20px;
	bottom: 24px;
	background: var(--gold);
	color: var(--charcoal-hex);
	border: none;
	padding: 10px 16px;
	font-weight: 600;
	letter-spacing: 0.05em;
	cursor: pointer;
	box-shadow: 0 8px 24px rgba(198, 161, 90, 0.25);
	transition: filter 0.25s, transform 0.25s;
	z-index: 1200;
}

.auto-toggle[aria-pressed="true"] {
	filter: brightness(0.9);
	transform: translateY(-2px);
}

/* Magnetic CTA glow effect */
.cta {
	position: relative;
	overflow: hidden;
}

.cta::after {
	content: "";
	position: absolute;
	top: var(--y, 50%);
	left: var(--x, 50%);
	width: 160px;
	height: 160px;
	background: radial-gradient(circle, rgba(255, 255, 255, 0.65), rgba(255, 255, 255, 0) 70%);
	transform: translate(-50%, -50%);
	pointer-events: none;
	opacity: 0;
	transition: opacity 0.25s;
}

.cta:hover::after {
	opacity: 0.45;
}

/* Instagram-themed CTA variant */
.insta-cta {
	background: radial-gradient(circle at 35% 30%, #feda75, #d62976 40%, #962fbf 65%, #4f5bd5 85%);
	color: #fff !important;
	border: none;
	box-shadow: 0 10px 30px rgba(150, 47, 191, 0.25);
	letter-spacing: 0.08em;
	font-weight: 800;
}

.insta-cta:hover {
	filter: brightness(1.02);
}

/* Header */
/* Header */
header {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	padding: 20px 40px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	z-index: 1000;
	background: rgba(255, 255, 255, 0.35);
	/* Semi-transparent "glass" - increased opacity */
	backdrop-filter: blur(12px);
	/* Blur effect */
	border-bottom: 1px solid rgba(255, 255, 255, 0.15);
	transition: background 0.3s ease, padding 0.3s ease, box-shadow 0.3s ease;
}

header.scrolled {
	opacity: 0;
	transition: opacity 0.3s ease, visibility 0.3s ease;
}

.logo {
	font-family: 'Cormorant Garamond', 'Bodoni Moda', 'Playfair Display', serif;
	font-size: 1.25rem;
	font-weight: 600;
	letter-spacing: 0.22em;
	text-transform: uppercase;
	color: var(--charcoal-hex);
	line-height: 1;
	font-variant-caps: small-caps;
	position: relative;
	padding-bottom: 6px;
}

.logo-img {
	height: 48px;
	width: 48px;
	max-height: 48px;
	max-width: 48px;
	margin-right: 10px;
	vertical-align: middle;
	border-radius: 50%;
	object-fit: cover;
	border: 2px solid var(--gold, #d4af37);
	background: #fff;
}

.logo::after {
	content: "";
	position: absolute;
	left: 0;
	bottom: 0;
	width: 64px;
	height: 2px;
	background: var(--gold);
	opacity: 0.8;
}

.logo .tm {
	font-size: 0.5em;
	vertical-align: super;
	margin-left: 0.18em;
	opacity: 0.8;
	font-weight: 600;
}

nav ul {
	list-style: none;
	display: flex;
	gap: 35px;
}

nav ul li a {
	position: relative;
	font-family: 'Montserrat', system-ui, -apple-system, sans-serif;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.12em;
	color: var(--charcoal-hex);
	padding-bottom: 6px;
	transition: color 0.25s ease;
}

nav ul li a::after {
	content: "";
	position: absolute;
	left: 0;
	bottom: 0;
	width: 0;
	height: 2px;
	background: var(--gold);
	transition: width 0.25s ease;
}

nav ul li a:hover {
	color: var(--charcoal-hex);
}

nav ul li a:hover::after {
	width: 100%;
}

/* Cart button in header */
.cart-button {
	position: relative;
	display: inline-flex;
	align-items: center;
	gap: 10px;
	margin-left: 18px;
	padding: 8px 12px;
	background: #fff;
	border: 1px solid rgba(0, 0, 0, 0.08);
	cursor: pointer;
	color: var(--charcoal-hex);
}

.cart-button:hover {
	filter: brightness(0.98);
}

.cart-button svg {
	width: 20px;
	height: 20px;
	fill: none;
	stroke: currentColor;
	stroke-width: 1.6;
}

.cart-badge {
	position: absolute;
	top: -6px;
	right: -6px;
	min-width: 20px;
	height: 20px;
	padding: 0 6px;
	border-radius: 999px;
	background: var(--gold);
	color: var(--charcoal-hex);
	font-size: 12px;
	font-weight: 800;
	display: flex;
	align-items: center;
	justify-content: center;
	border: 1px solid rgba(198, 161, 90, 0.5);
}

.cart-inline-total {
	font-weight: 700;
	color: var(--charcoal-hex);
	font-size: 0.9rem;
}

/* Hero */
#home {
	display: flex;
	justify-content: center;
	align-items: center;
	height: 90vh;
	background: linear-gradient(180deg, #ffffff 0%, #f6f7f8 100%);
	color: var(--charcoal-hex);
	text-align: center;
}

#home h1 {
	font-size: 3rem;
	text-shadow: none;
	color: var(--gold);
}

/* Sections */
main {
	padding-top: 120px;
}

.section-title {
	font-size: 2rem;
	margin-bottom: 30px;
	text-transform: uppercase;
	letter-spacing: 2px;
	text-align: center;
}

/* Grid */
.grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: 40px;
}

.grid-item {
	position: relative;
	overflow: hidden;
	border: 1px solid rgba(0, 0, 0, 0.08);
	background: #ffffff;
	transition: transform 0.4s, box-shadow 0.4s;
}

.grid-item img {
	width: 100%;
	display: block;
	transition: transform 0.4s;
}

.grid-item:hover img {
	transform: scale(1.05);
}

.grid-item .product-info {
	padding: 20px;
	text-align: center;
}

.grid-item h3 {
	font-family: 'Playfair Display', serif;
	margin-bottom: 10px;
	color: var(--charcoal-hex);
}

.grid-item p {
	color: var(--gold);
	font-size: 0.95rem;
}

/* Product options (size/color) */
.product-options {
	display: flex;
	flex-direction: column;
	/* Stack options vertically */
	gap: 12px;
	align-items: stretch;
	padding: 12px;
	background: #fff;
	border: 1px solid rgba(0, 0, 0, 0.06);
	border-radius: 12px;
}

.product-options .option-group {
	display: flex;
	flex-direction: column;
	gap: 6px;
	min-width: 140px;
}

.product-options .option-label {
	display: flex;
	align-items: center;
	gap: 8px;
	font-weight: 700;
	letter-spacing: 0.02em;
	color: var(--charcoal-hex);
}

.product-options .option-label .option-icon svg {
	width: 16px;
	height: 16px;
	fill: none;
	stroke: var(--gold);
	stroke-width: 1.6;
}

.product-options select {
	padding: 10px 12px;
	border: 1px solid rgba(198, 161, 90, 0.45);
	border-radius: 8px;
	background: #fff;
	color: var(--charcoal-hex);
	transition: box-shadow 0.2s, border-color 0.2s;
}

.product-options select:focus {
	outline: none;
	box-shadow: 0 0 0 3px rgba(198, 161, 90, 0.22);
	border-color: var(--gold);
}

/* Colour swatches */
.color-swatch-mount {
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.swatch-tabs {
	display: flex;
	gap: 6px;
	flex-wrap: wrap;
}

.swatch-tab {
	padding: 6px 10px;
	border: 1px solid rgba(198, 161, 90, 0.4);
	background: #fff;
	color: var(--charcoal-hex);
	border-radius: 999px;
	font-size: 0.8rem;
	font-weight: 700;
	letter-spacing: 0.02em;
	cursor: pointer;
}

.swatch-tab[aria-selected="true"] {
	background: var(--gold);
	color: var(--charcoal-hex);
	border-color: var(--gold);
	box-shadow: 0 6px 16px rgba(198, 161, 90, 0.25);
}

.swatch-category {
	display: flex;
	flex-direction: column;
	gap: 6px;
}

.swatch-category[hidden] {
	display: none !important;
}

.swatch-category-label {
	font-size: 0.7rem;
	letter-spacing: 0.15em;
	text-transform: uppercase;
	color: #666;
	font-weight: 600;
}

.swatch-row {
	display: flex;
	flex-wrap: wrap;
	gap: 6px;
}

.color-swatch {
	width: 26px;
	height: 26px;
	border-radius: 50%;
	border: 2px solid #fff;
	box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.15);
	cursor: pointer;
	position: relative;
	transition: transform 0.25s, box-shadow 0.25s;
}

.color-swatch:hover {
	transform: translateY(-2px);
}

.color-swatch[data-selected="true"] {
	box-shadow: 0 0 0 2px var(--gold), 0 0 0 4px rgba(198, 161, 90, 0.35);
}

.color-swatch:focus-visible {
	outline: 3px solid rgba(198, 161, 90, 0.5);
	outline-offset: 2px;
}

.color-swatch[data-selected="true"]::after {
	content: "";
	position: absolute;
	inset: 6px;
	border: 2px solid #fff;
	border-radius: 50%;
}

/* Hover Add to Cart */
.grid-item .add-to-cart {
	position: relative;
	width: 100%;
	margin-top: 12px;
	padding: 10px 20px;
	background: var(--gold);
	color: var(--charcoal-hex);
	border: none;
	cursor: pointer;
	opacity: 1;
	transition: opacity 0.3s, filter 0.2s;
	font-weight: 600;
}

.grid-item .add-to-cart:hover {
	filter: brightness(0.95);
}

.grid-item:hover .add-to-cart {
	opacity: 1;
}

/* Lookbook hover */
.grid-item:hover {
	box-shadow: 0 15px 25px rgba(0, 0, 0, 0.1);
	cursor: pointer;
}

/* View Gallery Badge for Multi-Image Products */
.zoom-btn {
	position: absolute;
	bottom: 15px;
	right: 15px;
	background: rgba(0, 0, 0, 0.75);
	color: white;
	border: none;
	border-radius: 4px;
	padding: 8px 16px;
	font-size: 0.75rem;
	font-weight: 600;
	letter-spacing: 0.05em;
	text-transform: uppercase;
	cursor: pointer;
	opacity: 1;
	transition: all 0.2s ease;
	z-index: 5;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.zoom-btn:hover {
	background: rgba(0, 0, 0, 0.9);
	transform: translateY(-2px);
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
}

.zoom-btn:active {
	transform: translateY(0);
}

/* Contact Form */
form {
	max-width: 600px;
	margin: 0 auto;
}

input,
textarea {
	display: block;
	width: 100%;
	margin-bottom: 15px;
	padding: 12px;
	border: 1px solid rgba(0, 0, 0, 0.12);
	background: #ffffff;
	color: var(--charcoal-hex);
	font-size: 1rem;
}

input::placeholder,
textarea::placeholder {
	color: #777777;
}

button {
	padding: 12px 25px;
	border: none;
	background: var(--gold);
	color: var(--charcoal-hex);
	cursor: pointer;
	font-weight: 600;
	transition: filter 0.3s;
}

button:hover {
	filter: brightness(0.95);
}

/* Contact actions (Call / WhatsApp) */
.contact-actions {
	margin-top: 16px;
	display: flex;
	gap: 12px;
	justify-content: center;
	align-items: center;
	flex-wrap: wrap;
}

.btn-outline {
	display: inline-block;
	padding: 12px 22px;
	background: transparent;
	border: 1px solid rgba(198, 161, 90, 0.8);
	color: var(--charcoal-hex);
	font-weight: 700;
	letter-spacing: 0.04em;
	transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.btn-outline:hover {
	background: var(--gold);
	color: var(--charcoal-hex);
	border-color: var(--gold);
}

/* Contact actions responsiveness */
@media(max-width:600px) {
	.contact-actions {
		flex-direction: column;
		align-items: stretch;
	}

	.contact-actions .cta,
	.contact-actions .btn-outline {
		width: 100%;
		text-align: center;
	}
}

/* Contact info links */
.contact-info {
	display: flex;
	flex-direction: column;
	gap: 10px;
	align-items: center;
	margin: 0 auto 18px;
	max-width: 600px;
}

.contact-info a {
	width: 100%;
	text-align: center;
	padding: 12px 18px;
	border-radius: 8px;
	font-weight: 700;
	letter-spacing: 0.03em;
}

.btn-whatsapp {
	background: #25D366;
	color: #0b2617;
	border: 1px solid rgba(0, 0, 0, 0.06);
}

.btn-whatsapp:hover {
	filter: brightness(0.95);
}

.btn-call {
	background: var(--gold);
	color: var(--charcoal-hex);
	border: 1px solid rgba(198, 161, 90, 0.4);
}

.btn-call:hover {
	filter: brightness(0.95);
}

.btn-email {
	background: #ffffff;
	color: var(--charcoal-hex);
	border: 1px solid rgba(0, 0, 0, 0.12);
}

.btn-email:hover {
	background: #fafafa;
}

/* Footer (Standard/Old) */
footer {
	text-align: center;
	padding: 40px 20px;
	border-top: 1px solid rgba(0, 0, 0, 0.08);
	font-size: 0.9rem;
	color: #555555;
}

footer a {
	color: var(--charcoal-hex);
	opacity: 0.8;
}

footer a:hover {
	color: var(--gold);
	opacity: 1;
}

/* Social links (Shared) */
.socials {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 12px;
	margin: 6px 0 12px;
}

/* Footer (New - Main Page) */
.site-footer {
	background-color: #FAF4E6;
	color: var(--charcoal-hex);
	padding: 60px 20px;
	text-align: center;
	border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.footer-content {
	max-width: 1200px;
	margin: 0 auto;
	display: flex;
	flex-direction: column;
	align-items: center;
}

.footer-domain {
	font-family: 'Playfair Display', serif;
	font-size: 1.5rem;
	color: var(--gold);
	margin-bottom: 24px;
	letter-spacing: 0.05em;
}

.footer-nav {
	margin-bottom: 24px;
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	gap: 24px;
}

.footer-nav a {
	color: var(--charcoal-hex);
	text-decoration: none;
	text-transform: uppercase;
	font-size: 0.85rem;
	letter-spacing: 0.1em;
	transition: color 0.3s ease;
	font-family: 'Montserrat', sans-serif;
	font-weight: 500;
	cursor: pointer;
	position: relative;
	z-index: 10;
}

.footer-nav a:hover {
	color: var(--gold);
}

.footer-socials {
	margin-bottom: 24px;
	display: flex;
	justify-content: center;
	gap: 20px;
}

.footer-socials .social-link {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	border-radius: 50%;
	background: rgba(0, 0, 0, 0.05);
	transition: all 0.3s ease;
	color: var(--charcoal-hex);
}

.footer-socials .social-link:hover {
	background: var(--gold);
	color: #ffffff;
	transform: translateY(-2px);
}

.footer-socials svg {
	width: 20px;
	height: 20px;
	fill: none;
	stroke: currentColor;
	stroke-width: 2;
	stroke-linecap: round;
	stroke-linejoin: round;
}

.footer-copyright {
	font-size: 0.75rem;
	opacity: 0.6;
	letter-spacing: 0.05em;
	font-family: 'Montserrat', sans-serif;
	color: var(--charcoal-hex);
}

/* Mobile adjustments */
@media (max-width: 768px) {
	.site-footer {
		padding: 40px 20px;
	}

	.footer-domain {
		font-size: 1.3rem;
	}

	.footer-nav {
		gap: 16px;
	}

	.footer-nav a {
		font-size: 0.75rem;
	}
}


.social-link {
	width: 36px;
	height: 36px;
	display: inline-flex;
	justify-content: center;
	align-items: center;
	border: 1px solid rgba(0, 0, 0, 0.12);
	border-radius: 999px;
	color: var(--charcoal-hex);
	background: #ffffff;
	transition: background 0.25s ease, color 0.25s ease, border-color 0.25s ease, filter 0.25s;
	overflow: hidden;
}

.social-link:hover {
	filter: brightness(0.95);
}

.social-link.instagram {
	background: radial-gradient(circle at 35% 30%, #feda75, #d62976 40%, #962fbf 65%, #4f5bd5 85%);
	border: none;
	color: #fff;
}

.social-link.instagram:hover {
	filter: brightness(1.07);
}

.social-link.threads {
	background: #000;
	color: #fff;
	border: none;
}

.social-link.threads:hover {
	background: #111;
}

.social-link svg {
	width: 18px;
	height: 18px;
	fill: none;
	stroke: currentColor;
	stroke-width: 1.6;
}

.sr-only {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	border: 0;
}

/* Cart Sidebar */
#cart-sidebar {
	position: fixed;
	top: 0;
	right: -400px;
	width: 350px;
	height: 100%;
	background: #ffffff;
	color: var(--charcoal-hex);
	box-shadow: -5px 0 20px rgba(0, 0, 0, 0.18);
	transition: right 0.4s;
	z-index: 2000;
	padding: 20px;
	display: flex;
	flex-direction: column;
	border-left: 1px solid rgba(0, 0, 0, 0.08);
}

#cart-sidebar h2 {
	margin-bottom: 10px;
	font-family: 'Playfair Display', serif;
	color: var(--charcoal-hex);
}

#cart-items {
	flex: 1;
	overflow-y: auto;
	margin-top: 10px;
}

#cart-sidebar .close-cart {
	position: absolute;
	top: 10px;
	right: 10px;
	cursor: pointer;
	font-size: 40px;
	padding: 10px;
	line-height: 0.8;
	z-index: 2001;
	color: #000;
}

.cart-summary {
	border-top: 1px solid rgba(0, 0, 0, 0.08);
	padding-top: 12px;
	margin-top: 12px;
}

.cart-summary-row {
	display: flex;
	justify-content: space-between;
	margin: 6px 0;
	font-weight: 700;
}

.cart-actions {
	display: flex;
	gap: 8px;
	margin-top: 12px;
}

.btn-checkout {
	flex: 1;
	text-align: center;
	padding: 12px 14px;
	background: var(--gold);
	color: var(--charcoal-hex);
	border: 1px solid rgba(198, 161, 90, 0.5);
	font-weight: 800;
	letter-spacing: 0.04em;
}

.btn-checkout:hover {
	filter: brightness(0.96);
}

.btn-clear {
	flex: 1;
	text-align: center;
	padding: 12px 14px;
	background: #fff;
	color: var(--charcoal-hex);
	border: 1px solid rgba(0, 0, 0, 0.12);
	font-weight: 700;
}

.btn-clear:hover {
	background: #f9f9f9;
}

.cart-item {
	display: grid;
	grid-template-columns: 1fr auto auto auto;
	gap: 8px;
	align-items: center;
	padding: 8px 0;
	border-bottom: 1px dashed rgba(0, 0, 0, 0.06);
	font-size: 0.95rem;
}

.cart-item-name {
	font-weight: 600;
}

.cart-item-meta {
	color: #555;
}

.cart-remove {
	background: transparent;
	border: none;
	color: #b00020;
	cursor: pointer;
	font-weight: 700;
}

.qty {
	display: flex;
	align-items: center;
	gap: 6px;
}

.qty button {
	width: 28px;
	height: 28px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	background: #fff;
	border: 1px solid rgba(0, 0, 0, 0.12);
	cursor: pointer;
	font-weight: 800;
	color: var(--charcoal-hex);
}

.qty .qty-val {
	min-width: 20px;
	text-align: center;
	font-weight: 700;
}

/* Toasts */
.toast-container {
	position: fixed;
	top: 20px;
	right: 20px;
	display: flex;
	flex-direction: column;
	gap: 10px;
	z-index: 2000;
}

.toast {
	background: #fff;
	border: 1px solid rgba(0, 0, 0, 0.12);
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
	padding: 10px 14px;
	display: flex;
	align-items: center;
	gap: 10px;
}

.toast strong {
	color: var(--charcoal-hex);
}

.toast .toast-actions {
	margin-left: auto;
	display: flex;
	gap: 8px;
}

.toast .toast-actions button {
	background: var(--gold);
	color: var(--charcoal-hex);
	padding: 6px 10px;
	font-weight: 700;
	cursor: pointer;
}

/* Lightbox */
#lightbox {
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.8);
	justify-content: center;
	align-items: center;
	z-index: 1002;
}

#lightbox img {
	max-width: 90%;
	max-height: 90%;
}

/* Responsive */
@media(max-width:768px) {
	header {
		flex-direction: row;
		/* Keep inline like laptop */
		flex-wrap: wrap;
		/* Allow wrapping if needed */
		justify-content: space-between;
		padding: 30px 20px;
		gap: 10px;
		border-bottom: none;
	}

	.logo {
		font-size: 1.1rem;
		/* Larger logo for mobile */
	}

	.logo-img {
		height: 24px;
		/* Smaller icon */
	}

	nav ul {
		flex-direction: row;
		/* Keep links inline */
		gap: 12px;
		/* More space between links */
		font-size: 0.75rem;
		/* Smaller text to fit */
		flex-wrap: wrap;
		justify-content: flex-end;
	}

	/* Mobile Layout Fixes */
	body {
		padding-top: 80px;
		/* Prevent content from hiding behind fixed header */
	}

	header {
		position: fixed;
		top: 0;
		left: 0;
		width: 100%;
		z-index: 1000;
		background: rgba(255, 255, 255, 0.95);
		/* Ensure readable background */
		backdrop-filter: blur(10px);
		box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
	}

	.brand-banner {
		padding: 120px 20px 40px;
	}

	body {
		padding-top: 140px;
		/* Fix Header Overlap */
	}

	.hero-left {
		padding-left: 20px;
		padding-right: 20px;
		padding-top: 40px;
	}

	/* Global Responsive Fixes */
	img,
	video {
		max-width: 100%;
		height: auto;
	}

	.container,
	section {
		padding-left: 20px;
		padding-right: 20px;
	}

	.brand-display {
		font-size: clamp(1.5rem, 5vw, 2.2rem);
		/* Reduced max size */
		line-height: 1.1;
		margin-bottom: 10px;
		word-break: normal;
		/* Prevent breaking words */
		overflow-wrap: normal;
		text-align: center;
		padding: 0 10px;
		/* Prevent edge touching */
	}

	.brand-display .tm {
		font-size: 0.3em;
	}

	/* =========================================
	   MOBILE-ONLY OVERRIDES (Max-Width: 768px)
	   ========================================= */
	@media (max-width: 768px) {

		/* 1. Fix White Gap & Header Overlap */
		body {
			padding-top: 80px !important;
			/* Reduced from 100px */
		}

		.brand-banner {
			padding-top: 40px !important;
			/* Reduced from 100px */
			padding-bottom: 20px !important;
		}

		/* 2. Make Brand Text Smaller for Mobile */
		.brand-display {
			font-size: 2.5rem !important;
			/* Smaller, more mobile-friendly size */
			line-height: 1.1;
			text-align: center;
		}

		/* ================================
		   USER PROVIDED CSS (PASTED)
		   ================================ */
		/* 1) FORCE the shop UL into 2-column grid */
		ul.products {
			display: grid !important;
			grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
			gap: 12px !important;
			padding: 0 10px !important;
		}

		/* 2) Make each product card behave inside the grid */
		ul.products li.product {
			width: 100% !important;
			margin: 0 !important;
			float: none !important;
		}

		/* 3) Images responsive and not too tall */
		ul.products li.product img {
			width: 100% !important;
			height: auto !important;
			object-fit: contain !important;
			/* Reverted to contain */
			display: block !important;
			background: #f9f9f9 !important;
		}

		/* Stop the variation table from forcing full width */
		ul.products li.product form.variations_form {
			width: 100% !important;
		}

		/* Stack Size + Colour vertically inside cards */
		ul.products li.product table.variations,
		ul.products li.product table.variations tbody,
		ul.products li.product table.variations tr {
			display: block !important;
			width: 100% !important;
		}

		ul.products li.product table.variations td {
			display: block !important;
			width: 100% !important;
			padding: 6px 0 !important;
		}

		/* Make dropdowns fit the card */
		ul.products li.product select {
			width: 100% !important;
			max-width: 100% !important;
			font-size: 13px !important;
		}

		/* Add to cart button full width but not huge */
		ul.products li.product .single_variation_wrap,
		ul.products li.product button.single_add_to_cart_button {
			width: 100% !important;
		}

		ul.products li.product button.single_add_to_cart_button {
			font-size: 13px !important;
			padding: 10px !important;
			margin-top: 6px !important;
		}

		/* ============================================================
		   ADAPTING USER CSS TO CURRENT HTML STRUCTURE (.grid, .grid-item)
		   ============================================================ */

		/* 1) FORCE the shop grid into 2-column grid - MOBILE ONLY */
		.products-section .grid {
			display: grid !important;
			grid-template-columns: repeat(2, 1fr) !important;
			gap: 8px !important;
			padding: 0 8px !important;
			max-width: 100% !important;
		}

		/* 2) Make each product card behave inside the grid */
		.grid-item {
			width: 100% !important;
			margin: 0 !important;
			float: none !important;
			border: 1px solid rgba(0, 0, 0, 0.06) !important;
		}

		/* 3) Images responsive with consistent height for clean grid */
		.grid-item img,
		.kaftan11-gallery img,
		.kaftan9-gallery img,
		.kaftan10-gallery img,
		.media-toggle img,
		.products-section img {
			width: 100% !important;
			height: 240px !important;
			object-fit: cover !important;
			display: block !important;
			margin: 0 !important;
			background: #fff !important;
		}

		/* Ensure gallery containers also have consistent height */
		.kaftan11-gallery,
		.kaftan9-gallery,
		.kaftan10-gallery,
		.media-toggle {
			height: 240px !important;
			position: relative !important;
			overflow: hidden !important;
		}

		/* Stop the variation form from forcing full width */
		.product-options,
		.option-group {
			width: 100% !important;
			display: block !important;
			padding: 6px !important;
			gap: 6px !important;
		}

		/* Compact product info for mobile */
		.grid-item .product-info {
			padding: 8px !important;
			text-align: center !important;
		}

		.grid-item .product-info h3 {
			font-size: 0.9rem !important;
			margin-bottom: 4px !important;
		}

		.grid-item .product-info p {
			font-size: 0.85rem !important;
		}

		/* Make dropdowns fit the card */
		.grid-item select {
			width: 100% !important;
			max-width: 100% !important;
			font-size: 11px !important;
			padding: 6px 8px !important;
			box-sizing: border-box !important;
		}

		/* Add to cart button full width but not huge */
		.grid-item button.add-to-cart {
			width: 100% !important;
			font-size: 12px !important;
			padding: 8px !important;
			margin-top: 6px !important;
			box-sizing: border-box !important;
		}

		/* 4. Home Page: Horizontal Scroll Collection */
		.home-shop-grid {
			display: flex !important;
			flex-wrap: nowrap !important;
			overflow-x: auto !important;
			gap: 15px !important;
			padding: 20px !important;
			justify-content: flex-start !important;
			/* Align left */
		}

		.home-shop-grid .grid-item {
			min-width: 70vw !important;
			/* Show 1 main item + hint */
			flex-shrink: 0 !important;
			scroll-snap-align: center !important;
		}

		.home-shop-grid img {
			width: 100% !important;
			height: 400px !important;
			/* Fixed height for consistency */
			object-fit: cover !important;
			max-width: none !important;
			/* Allow full width of card */
		}

		/* FORCE Collection 2 Text Visibility on Mobile */
		.home-shop-grid .grid-item[data-name="Collection 2"] .product-info {
			display: block !important;
			visibility: visible !important;
			opacity: 1 !important;
			position: relative !important;
			z-index: 10 !important;
			background: #ffffff !important;
			color: #000 !important;
			margin-top: 0 !important;
			padding: 10px 0 !important;
			width: 100% !important;
			bottom: 0 !important;
		}

		.home-shop-grid .grid-item[data-name="Collection 2"] .product-info h3 {
			display: block !important;
			visibility: visible !important;
			color: #000 !important;
			font-size: 1.1rem !important;
		}

		/* Restore Collection Text */
		.product-info {
			display: block !important;
			text-align: center !important;
			margin-top: 10px !important;
			color: #000 !important;
		}

		/* Shop/Collection Title - No sticky positioning */
		.shop-panel-inner h2.section-title {
			position: relative !important;
			background: transparent !important;
			padding: 10px 0 !important;
			text-align: center !important;
			width: 100% !important;
			margin-bottom: 20px !important;
		}

		/* Remove white header line on shop pages */
		.shop-page header {
			background: transparent !important;
			border-bottom: none !important;
			box-shadow: none !important;
		}

		.shop-page header.scrolled {
			background: transparent !important;
			border-bottom: none !important;
			box-shadow: none !important;
		}

		/* Fix Parent Overflow for Scroll */
		.story .panel {
			overflow: visible !important;
			/* Allow horizontal scroll to work */
			width: 100%;
		}

		/* Fix Title Cut Off */
		.shop-panel-inner {
			padding-top: 40px;
			/* Add internal spacing */
			margin-top: 20px;
		}

		/* Hero Text Alignment (Absolute Positioning) */
		.hero-text-container {
			position: absolute !important;
			bottom: 15%;
			right: 20px;
			width: auto !important;
			max-width: 200px;
			/* Constrain width */
			align-items: flex-end !important;
			text-align: right !important;
			z-index: 10;
		}

		.tagline {
			background: none !important;
			text-align: right !important;
			padding-left: 0;
			margin-right: 0;
			display: block;
			font-size: 0.8rem;
			margin-bottom: 10px;
			color: #000;
			/* Ensure visibility */
		}

		/* Mobile Luxury Circular Button for Shop the Drop */
		.cta {
			/* Transform into circular button on mobile */
			width: 60px !important;
			height: 60px !important;
			border-radius: 50% !important;
			padding: 0 !important;
			margin: 0 !important;
			margin-left: auto !important;
			display: flex !important;
			align-items: center !important;
			justify-content: center !important;
			flex-direction: column !important;
			font-size: 0.55rem !important;
			font-weight: 900 !important;
			letter-spacing: 0.1em !important;
			text-transform: uppercase !important;
			line-height: 1.1 !important;
			text-align: center !important;
			/* Cream/luxury background instead of gold */
			background: #FAF4E6 !important;
			/* Thin gold border */
			border: 2px solid var(--gold) !important;
			/* Gold text color */
			color: var(--gold) !important;
			box-shadow:
				0 0 20px rgba(198, 161, 90, 0.3),
				0 4px 12px rgba(0, 0, 0, 0.1),
				inset 0 1px 3px rgba(255, 255, 255, 0.5) !important;
			transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
			position: relative !important;
			overflow: visible !important;
			z-index: 9999 !important;
			/* CRITICAL: Force button to stay visible */
			opacity: 1 !important;
			visibility: visible !important;
			animation: none !important;
		}

		.cta::before {
			content: '' !important;
			position: absolute !important;
			inset: -4px !important;
			border-radius: 50% !important;
			background: linear-gradient(135deg, rgba(198, 161, 90, 0.15), rgba(212, 175, 55, 0.15)) !important;
			opacity: 0 !important;
			transition: opacity 0.3s ease !important;
			z-index: -1 !important;
		}

		.cta:active {
			transform: scale(0.95) !important;
			box-shadow:
				0 4px 12px rgba(198, 161, 90, 0.2),
				0 2px 6px rgba(0, 0, 0, 0.08),
				inset 0 1px 3px rgba(255, 255, 255, 0.3) !important;
		}

		.cta::before {
			opacity: 1 !important;
		}

		/* Shop Section Header (Mobile) */
		.drop-title .drop-kicker {
			font-size: 1.2rem;
			/* Much smaller */
		}

		/* Video Text Width Fix */
		.story .panel-copy {
			width: 90% !important;
			max-width: 320px !important;
			/* Prevent it from being too wide */
			margin: 0 auto !important;
			padding: 0 10px !important;
		}

		/* 3D Model Interaction */
		model-viewer {
			touch-action: pan-y;
			/* Allow scrolling while interacting */
			pointer-events: auto !important;
		}

		/* Lookbook specific adjustments */
		#lookbook {
			padding: 40px 20px;
		}

		#lookbook .section-title {
			padding-right: 0;
		}

		/* Contact Page Mobile Fixes */
		.contact-info a {
			font-size: 0.85rem !important;
			/* Smaller contact text */
			padding: 12px !important;
		}

		/* Legal / Terms */
		.legal {
			background: #ffffff;
			border-top: 1px solid rgba(0, 0, 0, 0.06);
			padding: 60px 20px;
		}

		.legal .legal-inner {
			max-width: 900px;
			margin: 0 auto;
			color: #555;
			font-size: 0.95rem;
		}

		.legal h2 {
			text-align: center;
			margin-bottom: 16px;
			color: var(--charcoal-hex);
		}

		.legal .legal-grid {
			display: grid;
			grid-template-columns: 1fr;
			gap: 14px;
			margin-top: 10px;
		}

		.legal .legal-block h3 {
			font-size: 1rem;
			color: var(--charcoal-hex);
			margin-bottom: 6px;
		}

		.legal .legal-block p {
			font-size: 0.95rem;
			color: #555;
		}

		/* ========================================
		   TERMS MODAL - MOBILE COMPACT VIEW
		   ======================================== */
		.modal-content.legal {
			margin: 2vh 10px !important;
			padding: 8px 0 12px !important;
			max-height: 92vh !important;
			border-radius: 8px !important;
		}

		.legal .legal-inner {
			padding: 12px 16px !important;
			max-width: 100% !important;
			font-size: 0.8rem !important;
		}

		.legal h2 {
			font-size: 1.3rem !important;
			margin-bottom: 10px !important;
			padding: 0 8px !important;
		}

		.legal .legal-grid {
			gap: 10px !important;
			margin-top: 8px !important;
		}

		.legal .legal-block {
			padding: 10px 12px !important;
			background: #f9f9f9;
			border-radius: 6px;
			border-left: 3px solid var(--gold);
		}

		.legal .legal-block h3 {
			font-size: 0.85rem !important;
			margin-bottom: 4px !important;
			font-weight: 700;
		}

		.legal .legal-block p {
			font-size: 0.75rem !important;
			line-height: 1.4 !important;
			margin: 0 !important;
		}

		.legal p[style*="margin-top"] {
			font-size: 0.65rem !important;
			margin-top: 12px !important;
			padding: 0 8px !important;
		}

		.modal-close {
			font-size: 32px !important;
			top: 4px !important;
			right: 8px !important;
			padding: 4px 8px !important;
			z-index: 10;
		}


		/* ========================================
		   LOOKBOOK IMAGE SIZING (Mobile Only)
		   ======================================== */
		#lookbook .grid {
			display: grid;
			grid-template-columns: repeat(2, 1fr);
			gap: 12px;
			padding: 0 12px;
			max-width: 900px;
			margin: 0 auto;
		}

		#lookbook .grid-item {
			display: flex;
			justify-content: center;
			align-items: center;
			overflow: hidden;
		}

		#lookbook .grid-item img {
			width: auto !important;
			height: auto !important;
			max-width: 100%;
			max-height: 300px;
			object-fit: contain !important;
			display: block;
		}


	}



	@media(min-width:900px) {
		.legal .legal-grid {
			grid-template-columns: 1fr 1fr;
			gap: 18px;
		}
	}

	/* Modal */
	.modal {
		position: fixed;
		inset: 0;
		display: none;
		z-index: 1200;
	}

	.modal[aria-hidden="true"] {
		display: none !important;
	}

	.modal[aria-hidden="false"] {
		display: block !important;
	}

	.modal-overlay {
		position: absolute;
		inset: 0;
		background: rgba(0, 0, 0, 0.45);
		backdrop-filter: blur(2px);
	}

	.modal-content {
		position: relative;
		margin: 6vh auto;
		max-width: 960px;
		background: #ffffff;
		border: 1px solid rgba(0, 0, 0, 0.08);
		box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
		border-radius: 12px;
		max-height: 88vh;
		overflow: auto;
	}

	.modal-content.legal {
		padding: 10px 0 20px;
	}

	.modal-close {
		position: absolute;
		top: 8px;
		right: 10px;
		background: transparent;
		border: none;
		font-size: 28px;
		line-height: 1;
		cursor: pointer;
		color: #333;
	}

	.modal-close:hover {
		color: var(--gold);
	}

	/* Modal z-index fix */
	.modal {
		z-index: 2000 !important;
	}

	.modal-overlay {
		z-index: 2001 !important;
	}

	/* Star Rating Styling */
	.stars {
		display: flex;
		flex-direction: row-reverse;
		justify-content: center;
		gap: 8px;
		margin-bottom: 16px;
	}

	.stars input[type="radio"] {
		display: none;
	}

	.stars label {
		font-size: 2.5rem;
		color: #e0e0e0;
		cursor: pointer;
		transition: color 0.2s;
		line-height: 1;
	}

	.stars label:hover,
	.stars label:hover~label,
	.stars input[type="radio"]:checked~label {
		color: var(--gold);
	}

	.modal-content {
		z-index: 2002 !important;
	}

	/* ========================================
   MOBILE HAMBURGER MENU (Mobile Only)
   ======================================== */

	/* Hamburger Button - Hidden on Desktop */
	.hamburger-btn {
		display: none;
		/* Hidden by default (desktop) */
		position: fixed;
		top: 20px;
		right: 20px;
		z-index: 1100;
		width: 44px;
		height: 44px;
		background: rgba(255, 255, 255, 0.95);
		border: 1px solid rgba(198, 161, 90, 0.3);
		border-radius: 8px;
		cursor: pointer;
		flex-direction: column;
		align-items: center;
		justify-content: center;
		gap: 6px;
		padding: 0;
		box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
		transition: all 0.3s ease;
	}

	.hamburger-btn:hover {
		background: rgba(255, 255, 255, 1);
		box-shadow: 0 6px 16px rgba(198, 161, 90, 0.2);
	}

	.hamburger-line {
		width: 22px;
		height: 2px;
		background: var(--gold, #C6A15A);
		border-radius: 2px;
		transition: all 0.3s ease;
	}


	/* Auto Scroll Toggle */
	.auto-toggle {
		position: fixed;
		bottom: 20px;
		right: 20px;
		z-index: 900;
		background: transparent;
		border: none;
		color: var(--charcoal-hex);
		width: auto;
		height: auto;
		cursor: pointer;
		display: flex;
		flex-direction: column;
		align-items: center;
		justify-content: center;
		box-shadow: none;
		transition: transform 0.3s ease;
		padding: 0;
	}

	.auto-toggle .auto-label {
		font-size: 0.6rem;
		font-weight: 700;
		text-transform: uppercase;
		letter-spacing: 0.05em;
		margin-bottom: -4px;
		color: var(--charcoal-hex);
		opacity: 0.7;
		transition: opacity 0.3s;
	}

	.auto-toggle svg {
		width: 32px;
		/* Bigger arrow */
		height: 32px;
		stroke: var(--gold);
		transition: transform 0.3s ease, stroke 0.3s ease;
		filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
	}

	.auto-toggle:hover {
		background: transparent;
		box-shadow: none;
		transform: translateY(-2px);
	}

	.auto-toggle:hover .auto-label {
		opacity: 1;
		color: var(--gold);
	}

	.auto-toggle[aria-pressed="true"] {
		background: transparent;
		border-color: transparent;
	}

	.auto-toggle[aria-pressed="true"] svg {
		stroke: #fff;
		animation: scroll-bounce 1.5s infinite;
	}

	@keyframes scroll-bounce {

		0%,
		100% {
			transform: translateY(0);
		}

		50% {
			transform: translateY(3px);
		}
	}

	/* Hamburger Animation - Transform to X */
	.hamburger-btn.active .hamburger-line:nth-child(1) {
		transform: translateY(8px) rotate(45deg);
	}

	.hamburger-btn.active .hamburger-line:nth-child(2) {
		opacity: 0;
	}

	.hamburger-btn.active .hamburger-line:nth-child(3) {
		transform: translateY(-8px) rotate(-45deg);
	}

	/* Overlay */
	.menu-overlay {
		display: none;
		position: fixed;
		inset: 0;
		background: rgba(255, 255, 255, 0.4);
		backdrop-filter: blur(8px);
		-webkit-backdrop-filter: blur(8px);
		z-index: 1050;
		opacity: 0;
		transition: opacity 0.3s ease;
	}

	.menu-overlay.active {
		display: block;
		opacity: 1;
	}

	/* Side Menu Drawer */
	.side-menu {
		position: fixed;
		top: 0;
		right: -70%;
		width: 70%;
		height: 100vh;
		background: linear-gradient(135deg, #ffffff 0%, #fafafa 100%);
		box-shadow: -4px 0 24px rgba(0, 0, 0, 0.15);
		z-index: 1060;
		padding: 80px 30px 30px;
		overflow-y: auto;
		transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
	}

	.side-menu.active {
		right: 0;
	}

	/* Menu List */
	.side-menu-list {
		list-style: none;
		padding: 0;
		margin: 0;
		display: flex;
		flex-direction: column;
		gap: 8px;
	}

	/* Menu Links */
	.side-menu-link {
		display: block;
		padding: 16px 20px;
		font-family: 'Montserrat', sans-serif;
		font-size: 1.1rem;
		font-weight: 600;
		letter-spacing: 0.08em;
		text-transform: uppercase;
		color: var(--charcoal-hex, #111217);
		text-decoration: none;
		border-radius: 8px;
		transition: all 0.25s ease;
		position: relative;
		overflow: hidden;
	}

	.side-menu-link::before {
		content: '';
		position: absolute;
		left: 0;
		top: 0;
		width: 4px;
		height: 100%;
		background: var(--gold, #C6A15A);
		transform: scaleY(0);
		transition: transform 0.25s ease;
	}

	.side-menu-link:hover {
		background: rgba(198, 161, 90, 0.08);
		padding-left: 28px;
	}

	.side-menu-link:hover::before {
		transform: scaleY(1);
	}

	.side-menu-link:active {
		background: rgba(198, 161, 90, 0.15);
	}

	/* Mobile Only - Show hamburger on screens <= 768px */
	@media (max-width: 768px) {
		.hamburger-btn {
			display: flex;
		}

		/* Hide desktop nav on mobile */
		header nav {
			display: none;
		}
	}

	/* Prevent body scroll when menu is open */
	body.menu-open {
		overflow: hidden;
	}

	/* ========================================
   COLLECTION 2 IMAGE ZOOM/CROP (Global)
   ======================================== */
	.grid-item[data-name="Collection 2"] img {
		object-fit: cover !important;
		object-position: center !important;
		transform: scale(1.3);
	}

	.grid-item[data-name="Collection 2"] {
		overflow: hidden;
	}
}