﻿/* ==========================================================================
   B'galz Boutique — Plus Size Fashion
   Design system: minimal editorial (Reformation/Ganni inspired).
   Refined oxblood, cream, deep ink, warm gray. Lots of whitespace.
   ========================================================================== */

:root {
	--bg-bg:           #f7f3ed;          /* refined warm cream */
	--bg-paper:        #ffffff;
	--bg-ink:          #231f1c;          /* deep warm black */
	--bg-ink-soft:     #524841;
	--bg-muted:        #8a8079;
	--bg-line:         #e8e1d6;
	--bg-line-strong:  #cbbfaf;

	--bg-accent:       #7a1e2b;          /* oxblood — refined, not loud */
	--bg-accent-dark:  #5a141e;
	--bg-accent-soft:  #f0e0e0;
	--bg-champagne:    #c9a774;          /* warm tan, less yellow */
	--bg-champagne-soft:#ede0c8;
	--bg-blush:        #ead7cf;          /* dusty blush */
	--bg-plum:         #3a2530;          /* deep plum — for dark sections */

	--bg-radius-sm: 4px;
	--bg-radius:    8px;
	--bg-radius-lg: 14px;

	--bg-shadow-sm: 0 1px 2px rgba(28,23,20,0.04);
	--bg-shadow:    0 4px 14px rgba(28,23,20,0.06);
	--bg-shadow-lg: 0 24px 48px rgba(28,23,20,0.10);

	--bg-font-display: 'Cormorant Garamond', 'Playfair Display', Georgia, serif;
	--bg-font-body:    'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

	--bg-container: 1400px;
	--bg-gutter:    32px;
}

/* ----- Reset / base ----- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; }
body {
	margin: 0;
	font-family: var(--bg-font-body);
	font-size: 16px;
	line-height: 1.6;
	color: var(--bg-ink);
	background: var(--bg-bg);
	-webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--bg-accent); text-decoration: none; transition: color .2s; }
a:hover { color: var(--bg-accent-dark); }
button { font-family: inherit; cursor: pointer; }
h1, h2, h3, h4, h5, h6 {
	font-family: var(--bg-font-display);
	font-weight: 600;
	color: var(--bg-ink);
	letter-spacing: -0.005em;
	line-height: 1.18;
	margin: 0 0 0.6em;
}
h1 { font-size: clamp(2.2rem, 4vw, 3.6rem); }
h2 { font-size: clamp(1.7rem, 3vw, 2.6rem); }
h3 { font-size: clamp(1.25rem, 2vw, 1.6rem); }
em { font-style: italic; color: var(--bg-accent); }
p { margin: 0 0 1em; }

.container {
	max-width: var(--bg-container);
	margin: 0 auto;
	padding: 0 var(--bg-gutter);
}
.screen-reader-text {
	position: absolute !important;
	width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden;
	clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}
.skip-link {
	position: absolute; top: -100px; left: 12px;
	background: var(--bg-ink); color: #fff;
	padding: 10px 16px; border-radius: var(--bg-radius-sm);
	z-index: 9999;
}
.skip-link:focus { top: 12px; }

/* ==========================================================================
   Top bar
   ========================================================================== */
.top-bar {
	background: var(--bg-ink);
	color: #f7f3ed;
	font-size: 0.74rem;
	letter-spacing: 0.22em;
	text-transform: uppercase;
	padding: 11px 0;
	font-weight: 500;
}
.top-bar__text { margin: 0; text-align: center; }

/* ==========================================================================
   Header
   ========================================================================== */
.site-header {
	background: var(--bg-paper);
	border-bottom: 1px solid var(--bg-line);
	position: sticky; top: 0; z-index: 100;
}
.site-header__inner {
	display: grid;
	grid-template-columns: auto 1fr auto auto;
	align-items: center;
	gap: 26px;
	padding: 16px 24px;
}
.site-branding .site-title {
	font-family: var(--bg-font-display);
	font-size: 1.8rem;
	font-weight: 500;
	letter-spacing: -0.01em;
	color: var(--bg-ink);
}
.custom-logo { max-height: 60px; width: auto; }

.site-search {
	position: relative;
	max-width: 520px;
	width: 100%;
	justify-self: center;
}
.site-search__icon {
	position: absolute;
	left: 16px; top: 50%; transform: translateY(-50%);
	color: var(--bg-muted); pointer-events: none;
}
.site-search__input {
	width: 100%;
	height: 46px;
	border: 1px solid var(--bg-line-strong);
	background: var(--bg-bg);
	border-radius: 999px;
	padding: 0 56px 0 44px;
	font: inherit; color: var(--bg-ink);
	transition: border-color .2s, background .2s;
}
.site-search__input:focus {
	outline: none;
	border-color: var(--bg-accent);
	background: var(--bg-paper);
}
.site-search__submit {
	position: absolute;
	right: 5px; top: 50%; transform: translateY(-50%);
	width: 38px; height: 38px;
	border: 0; border-radius: 50%;
	background: var(--bg-accent); color: #fff;
	display: grid; place-items: center;
	transition: background .2s;
}
.site-search__submit:hover { background: var(--bg-accent-dark); }

.site-header__actions { display: flex; align-items: center; gap: 8px; }
.header-action {
	width: 42px; height: 42px;
	display: grid; place-items: center;
	color: var(--bg-ink);
	border-radius: 50%;
	position: relative;
	transition: background .2s, color .2s;
}
.header-action:hover { background: var(--bg-accent-soft); color: var(--bg-accent-dark); }
.header-cart .cart-count {
	position: absolute;
	top: 4px; right: 2px;
	min-width: 18px; height: 18px;
	background: var(--bg-accent);
	color: #fff;
	border-radius: 999px;
	font-size: 10px; font-weight: 700;
	display: grid; place-items: center;
	padding: 0 5px;
	border: 2px solid var(--bg-paper);
}

.nav-toggle {
	width: 40px; height: 40px;
	border: 0; background: transparent;
	display: none;
	flex-direction: column; gap: 5px;
	align-items: center; justify-content: center;
}
.nav-toggle__line {
	width: 22px; height: 2px;
	background: var(--bg-ink);
	border-radius: 2px;
}

/* Primary nav row */
.site-header__nav-row {
	background: var(--bg-paper);
	border-top: 1px solid var(--bg-line);
}
.primary-nav { display: flex; align-items: center; justify-content: center; }
.primary-menu {
	list-style: none;
	margin: 0; padding: 0;
	display: flex; flex-wrap: wrap;
	gap: 4px;
}
.primary-menu > li > a {
	display: inline-flex;
	align-items: center;
	padding: 14px 18px;
	font-size: 0.92rem;
	font-weight: 500;
	color: var(--bg-ink);
	letter-spacing: 0.02em;
	position: relative;
}
.primary-menu > li > a::after {
	content: '';
	position: absolute;
	left: 18px; right: 18px; bottom: 8px;
	height: 2px; background: var(--bg-accent);
	transform: scaleX(0); transform-origin: left;
	transition: transform .25s;
}
.primary-menu > li > a:hover { color: var(--bg-accent); }
.primary-menu > li > a:hover::after,
.primary-menu > li.current-menu-item > a::after { transform: scaleX(1); }
.primary-menu li { position: relative; }
.primary-menu .sub-menu {
	position: absolute;
	top: 100%; left: 0;
	min-width: 220px;
	list-style: none; margin: 0; padding: 8px;
	background: var(--bg-paper);
	border: 1px solid var(--bg-line);
	border-radius: var(--bg-radius);
	box-shadow: var(--bg-shadow-lg);
	opacity: 0; visibility: hidden;
	transform: translateY(8px);
	transition: opacity .2s, transform .2s, visibility .2s;
	z-index: 50;
}
.primary-menu li:hover > .sub-menu {
	opacity: 1; visibility: visible; transform: translateY(0);
}
.primary-menu .sub-menu a {
	display: block;
	padding: 9px 14px;
	font-size: 0.9rem;
	color: var(--bg-ink-soft);
	border-radius: var(--bg-radius-sm);
}
.primary-menu .sub-menu a:hover {
	background: var(--bg-accent-soft);
	color: var(--bg-accent-dark);
}
.drawer-brand, .drawer-shortcuts { display: none; }

/* ==========================================================================
   Hero — bold editorial spread
   ========================================================================== */
.bg-hero {
	background: linear-gradient(135deg, var(--bg-bg) 0%, var(--bg-blush) 100%);
	padding: 80px 0 90px;
	position: relative;
	overflow: hidden;
}
.bg-hero::before {
	content: '';
	position: absolute;
	top: -80px; right: -80px;
	width: 380px; height: 380px;
	background: var(--bg-champagne-soft);
	border-radius: 50%;
	opacity: 0.55;
	z-index: 0;
}
.bg-hero__inner {
	display: grid;
	grid-template-columns: 1.1fr 1fr;
	gap: 60px;
	align-items: center;
	position: relative;
	z-index: 1;
}
.bg-hero__copy { max-width: 580px; }
.bg-hero__eyebrow {
	display: inline-flex;
	align-items: center; gap: 10px;
	font-size: 0.78rem;
	letter-spacing: 0.22em;
	text-transform: uppercase;
	color: var(--bg-accent);
	font-weight: 700;
	margin-bottom: 18px;
}
.bg-hero__eyebrow::before {
	content: '';
	width: 32px; height: 1px;
	background: var(--bg-accent);
}
.bg-hero__title {
	font-size: clamp(2.6rem, 5.2vw, 4.6rem);
	line-height: 1.02;
	margin: 0 0 22px;
	font-weight: 700;
	letter-spacing: -0.015em;
}
.bg-hero__title em {
	font-style: italic;
	color: var(--bg-accent);
	font-family: var(--bg-font-display);
}
.bg-hero__sub {
	font-size: 1.08rem;
	color: var(--bg-ink-soft);
	max-width: 500px;
	margin-bottom: 32px;
}
.bg-hero__cta { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; }

.btn-primary {
	display: inline-flex; align-items: center; gap: 10px;
	background: var(--bg-accent); color: #fff;
	padding: 16px 32px;
	border-radius: 999px;
	font-weight: 600; font-size: 0.95rem;
	border: 0;
	transition: background .2s, transform .2s;
	box-shadow: 0 6px 20px rgba(200,37,59,0.25);
}
.btn-primary:hover {
	background: var(--bg-accent-dark);
	color: #fff;
	transform: translateY(-2px);
	box-shadow: 0 10px 26px rgba(200,37,59,0.32);
}
.btn-secondary {
	display: inline-flex; align-items: center; gap: 8px;
	color: var(--bg-ink);
	font-weight: 600;
	padding: 14px 4px;
	border-bottom: 2px solid var(--bg-ink);
	transition: color .2s, border-color .2s;
}
.btn-secondary:hover { color: var(--bg-accent); border-color: var(--bg-accent); }

.bg-hero__visual {
	position: relative;
	aspect-ratio: 4/5;
	border-radius: var(--bg-radius-lg);
	overflow: hidden;
	background: var(--bg-accent);
	box-shadow: var(--bg-shadow-lg);
}
.bg-hero__visual img,
.bg-hero__visual video {
	width: 100%; height: 100%;
	object-fit: cover;
}
.bg-hero__badge {
	position: absolute;
	top: 22px; left: 22px;
	background: var(--bg-paper);
	border-radius: 999px;
	padding: 10px 18px;
	font-size: 0.74rem;
	letter-spacing: 0.2em;
	text-transform: uppercase;
	font-weight: 700;
	color: var(--bg-accent);
	box-shadow: var(--bg-shadow);
}
.bg-hero__sticker {
	position: absolute;
	bottom: -32px; right: -32px;
	width: 150px; height: 150px;
	background: var(--bg-champagne);
	color: var(--bg-plum);
	border-radius: 50%;
	display: grid; place-items: center;
	text-align: center;
	font-family: var(--bg-font-display);
	font-style: italic;
	font-weight: 600;
	font-size: 1.1rem;
	transform: rotate(8deg);
	box-shadow: var(--bg-shadow);
	padding: 18px;
	line-height: 1.2;
}

/* USP strip */
.bg-usp {
	margin-top: 56px;
	background: var(--bg-paper);
	border: 1px solid var(--bg-line);
	border-radius: var(--bg-radius-lg);
	padding: 26px 28px;
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 24px;
	box-shadow: var(--bg-shadow-sm);
}
.bg-usp__item {
	display: flex; align-items: center; gap: 14px;
	font-size: 0.92rem;
}
.bg-usp__item svg { color: var(--bg-accent); flex-shrink: 0; }
.bg-usp__item strong { display: block; color: var(--bg-ink); font-weight: 600; }
.bg-usp__item span { color: var(--bg-muted); font-size: 0.82rem; }

/* ==========================================================================
   Section base
   ========================================================================== */
.bg-section { padding: 90px 0; }
.bg-section--alt {
	background: var(--bg-paper);
	border-top: 1px solid var(--bg-line);
	border-bottom: 1px solid var(--bg-line);
}
.bg-section--dark {
	background: var(--bg-plum);
	color: #f3e3c4;
}
.bg-section--dark h2 { color: #fff; }
.bg-section--dark h2 em { color: var(--bg-champagne); }
.bg-section__head {
	display: flex;
	align-items: end;
	justify-content: space-between;
	gap: 40px;
	margin-bottom: 44px;
	flex-wrap: wrap;
}
.bg-section__head-text { max-width: 620px; }
.bg-section__head-text.is-center {
	margin: 0 auto;
	text-align: center;
}
.bg-section__head-text.is-center .bg-eyebrow { justify-content: center; }
.bg-section__head-text.is-center .bg-eyebrow::before { display: none; }
.bg-eyebrow {
	display: inline-flex; align-items: center; gap: 10px;
	font-size: 0.78rem;
	letter-spacing: 0.22em;
	text-transform: uppercase;
	color: var(--bg-accent);
	font-weight: 700;
	margin-bottom: 12px;
}
.bg-eyebrow::before { content: ''; width: 24px; height: 1px; background: var(--bg-accent); }
.bg-section__title { font-size: clamp(1.8rem, 3.4vw, 2.8rem); margin: 0; font-weight: 700; }
.bg-section__title em { font-style: italic; color: var(--bg-accent); }

/* ==========================================================================
   Categories grid
   ========================================================================== */
.bg-cats {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 20px;
}
.bg-cat-card {
	display: block;
	position: relative;
	border-radius: var(--bg-radius);
	overflow: hidden;
	background: var(--bg-paper);
	border: 1px solid var(--bg-line);
	aspect-ratio: 3/4;
	transition: transform .25s, box-shadow .25s;
}
.bg-cat-card:hover { transform: translateY(-4px); box-shadow: var(--bg-shadow-lg); }
.bg-cat-card__img {
	position: absolute; inset: 0;
	width: 100%; height: 100%;
	object-fit: cover;
}
.bg-cat-card__placeholder {
	position: absolute; inset: 0;
	background: linear-gradient(135deg, var(--bg-blush), var(--bg-accent));
	display: grid; place-items: center;
	color: rgba(255,255,255,0.85);
}
.bg-cat-card__placeholder svg { width: 56px; height: 56px; opacity: 0.7; }
.bg-cat-card__overlay {
	position: absolute; inset: auto 0 0 0;
	padding: 22px;
	background: linear-gradient(0deg, rgba(28,23,20,0.85), rgba(28,23,20,0) 80%);
	color: #fff;
}
.bg-cat-card__name {
	font-family: var(--bg-font-display);
	font-size: 1.3rem;
	font-weight: 600;
	margin: 0 0 4px;
}
.bg-cat-card__count {
	font-size: 0.82rem;
	opacity: 0.85;
	letter-spacing: 0.04em;
}

/* ==========================================================================
   Best sellers / product cards
   ========================================================================== */
.bg-products {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 28px 22px;
}
.bg-product {
	background: var(--bg-paper);
	border-radius: var(--bg-radius);
	overflow: hidden;
	border: 1px solid var(--bg-line);
	transition: border-color .2s, transform .2s, box-shadow .2s;
	display: flex; flex-direction: column;
}
.bg-product:hover {
	border-color: var(--bg-accent-soft);
	transform: translateY(-3px);
	box-shadow: var(--bg-shadow);
}
.bg-product__media {
	position: relative;
	aspect-ratio: 3/4;
	overflow: hidden;
	background: var(--bg-bg);
}
.bg-product__media img {
	width: 100%; height: 100%;
	object-fit: cover;
	transition: transform .5s ease;
}
.bg-product:hover .bg-product__media img { transform: scale(1.04); }
.bg-product__badges {
	position: absolute; top: 12px; left: 12px;
	display: flex; flex-direction: column; gap: 6px;
	z-index: 2;
}
.bg-badge {
	font-size: 0.7rem; font-weight: 700;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	padding: 5px 10px;
	border-radius: 999px;
	color: #fff;
}
.bg-badge--sale { background: var(--bg-accent); }
.bg-badge--new  { background: var(--bg-plum); }
.bg-badge--hot  { background: var(--bg-champagne); color: var(--bg-plum); }
.bg-product__quick {
	position: absolute;
	bottom: 12px; left: 12px; right: 12px;
	background: var(--bg-paper);
	border-radius: var(--bg-radius-sm);
	padding: 10px;
	text-align: center;
	font-size: 0.85rem; font-weight: 600;
	color: var(--bg-ink);
	opacity: 0; transform: translateY(8px);
	transition: opacity .25s, transform .25s;
}
.bg-product:hover .bg-product__quick { opacity: 1; transform: translateY(0); }
.bg-product__body { padding: 14px 16px 18px; flex: 1; display: flex; flex-direction: column; }
.bg-product__cat {
	font-size: 0.72rem;
	letter-spacing: 0.16em;
	text-transform: uppercase;
	color: var(--bg-muted);
	margin-bottom: 4px;
}
.bg-product__title {
	font-family: var(--bg-font-body);
	font-size: 0.98rem;
	font-weight: 600;
	color: var(--bg-ink);
	margin: 0 0 6px;
	line-height: 1.35;
}
.bg-product__title a { color: inherit; }
.bg-product__title a:hover { color: var(--bg-accent); }
.bg-product__price {
	margin-top: auto;
	font-family: var(--bg-font-display);
	font-size: 1.18rem;
	font-weight: 600;
	color: var(--bg-ink);
}
.bg-product__price del { color: var(--bg-muted); font-size: 0.85em; margin-right: 6px; }
.bg-product__price ins { text-decoration: none; color: var(--bg-accent); }

/* ==========================================================================
   Story / editorial split
   ========================================================================== */
.bg-story {
	display: grid;
	grid-template-columns: 1fr 1.05fr;
	gap: 60px;
	align-items: center;
}
.bg-story__media {
	position: relative;
	aspect-ratio: 5/6;
	border-radius: var(--bg-radius-lg);
	overflow: hidden;
	background: var(--bg-blush);
}
.bg-story__media img { width: 100%; height: 100%; object-fit: cover; }
.bg-story__media::after {
	content: '';
	position: absolute; inset: -8px auto auto -8px;
	width: 56px; height: 56px;
	border-left: 2px solid var(--bg-accent);
	border-top: 2px solid var(--bg-accent);
}
.bg-story__copy h2 { margin-bottom: 22px; }
.bg-story__copy p {
	font-size: 1.04rem;
	color: var(--bg-ink-soft);
	margin-bottom: 16px;
}
.bg-story__signature {
	font-family: var(--bg-font-display);
	font-style: italic;
	font-size: 1.6rem;
	color: var(--bg-accent);
	margin: 8px 0 22px;
}
.bg-story__stats {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 16px;
	margin: 32px 0;
	padding: 24px 0;
	border-top: 1px solid var(--bg-line);
	border-bottom: 1px solid var(--bg-line);
}
.bg-story__stat-num {
	font-family: var(--bg-font-display);
	font-size: 2.2rem;
	font-weight: 700;
	color: var(--bg-accent);
	margin-bottom: 4px;
	line-height: 1;
}
.bg-story__stat-label {
	font-size: 0.85rem;
	color: var(--bg-muted);
	letter-spacing: 0.04em;
}

/* ==========================================================================
   Body-positive promise band
   ========================================================================== */
.bg-promise {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 22px;
}
.bg-promise__card {
	background: var(--bg-paper);
	border: 1px solid var(--bg-line);
	border-radius: var(--bg-radius);
	padding: 32px 24px;
	text-align: left;
	transition: transform .2s, border-color .2s, box-shadow .2s;
}
.bg-promise__card:hover {
	transform: translateY(-3px);
	border-color: var(--bg-accent-soft);
	box-shadow: var(--bg-shadow);
}
.bg-promise__icon {
	width: 52px; height: 52px;
	background: var(--bg-accent-soft);
	color: var(--bg-accent);
	border-radius: var(--bg-radius-sm);
	display: grid; place-items: center;
	margin-bottom: 18px;
}
.bg-promise__card h4 { font-family: var(--bg-font-display); font-size: 1.2rem; margin: 0 0 8px; font-weight: 600; }
.bg-promise__card p { font-size: 0.92rem; color: var(--bg-ink-soft); margin: 0; line-height: 1.55; }

/* ==========================================================================
   Testimonials
   ========================================================================== */
.bg-test-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 24px;
}
.bg-test-card {
	background: var(--bg-paper);
	border: 1px solid var(--bg-line);
	border-radius: var(--bg-radius);
	padding: 28px 24px 26px;
	display: flex; flex-direction: column;
	position: relative;
}
.bg-test-card::before {
	content: '“';
	position: absolute;
	top: 4px; right: 18px;
	font-family: var(--bg-font-display);
	font-size: 5rem;
	color: var(--bg-accent-soft);
	line-height: 1;
}
.bg-test-card__rating {
	color: var(--bg-champagne);
	font-size: 0.95rem;
	margin-bottom: 14px;
	letter-spacing: 2px;
}
.bg-test-card__text {
	font-size: 0.98rem;
	color: var(--bg-ink-soft);
	line-height: 1.6;
	margin-bottom: 22px;
	flex: 1;
}
.bg-test-card__author {
	display: flex; align-items: center; gap: 12px;
	margin-top: auto;
	border-top: 1px solid var(--bg-line);
	padding-top: 14px;
}
.bg-test-card__avatar {
	width: 38px; height: 38px;
	background: var(--bg-accent-soft);
	color: var(--bg-accent);
	border-radius: 50%;
	display: grid; place-items: center;
	font-weight: 700;
	font-size: 0.85rem;
}
.bg-test-card__name { font-weight: 600; font-size: 0.92rem; color: var(--bg-ink); }
.bg-test-card__role { font-size: 0.78rem; color: var(--bg-muted); }

/* ==========================================================================
   Newsletter band — blush-cream pastel
   ========================================================================== */
.bg-news-band {
	background: linear-gradient(135deg, var(--bg-accent), var(--bg-plum));
	color: #fff7e6;
	border-radius: var(--bg-radius-lg);
	padding: 60px 50px;
	display: grid;
	grid-template-columns: 1.1fr 1fr;
	gap: 50px;
	align-items: center;
	position: relative;
	overflow: hidden;
}
.bg-news-band::before {
	content: '';
	position: absolute;
	top: -60px; right: -60px;
	width: 280px; height: 280px;
	background: var(--bg-champagne);
	border-radius: 50%;
	opacity: 0.18;
}
.bg-news-band__copy { position: relative; z-index: 1; }
.bg-news-band__copy h2 { color: #fff; margin-bottom: 12px; }
.bg-news-band__copy h2 em { color: var(--bg-champagne); }
.bg-news-band__copy p { color: rgba(255,247,230,0.85); margin: 0; }
.bg-news-band__form {
	position: relative; z-index: 1;
	display: flex;
	background: var(--bg-paper);
	border-radius: 999px;
	padding: 6px;
	box-shadow: var(--bg-shadow);
}
.bg-news-band__form input {
	flex: 1;
	border: 0; background: transparent;
	padding: 0 22px;
	font: inherit; color: var(--bg-ink);
	min-width: 0;
}
.bg-news-band__form input:focus { outline: none; }
.bg-news-band__form button {
	background: var(--bg-accent); color: #fff;
	border: 0; border-radius: 999px;
	padding: 14px 26px;
	font-weight: 600;
	transition: background .2s;
}
.bg-news-band__form button:hover { background: var(--bg-accent-dark); }
.bg-news-band__note {
	font-size: 0.78rem;
	color: rgba(255,247,230,0.7);
	margin-top: 12px;
	display: block;
}

/* ==========================================================================
   Trust badges
   ========================================================================== */
.bg-trust {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 20px;
	padding: 30px 0;
	border-top: 1px solid var(--bg-line);
	margin-top: 40px;
}
.bg-trust__item {
	display: flex; align-items: center; gap: 14px;
	color: var(--bg-ink-soft);
	font-size: 0.92rem;
}
.bg-trust__item svg { color: var(--bg-accent); }
.bg-trust__item strong { color: var(--bg-ink); display: block; }

/* ==========================================================================
   Footer (goviloop-style: dark plum, CONTACT US heading, payment cards)
   ========================================================================== */
.site-footer {
	background: #1c1714;
	color: #c4b4a3;
	padding: 64px 0 0;
	margin-top: 80px;
}
.home .site-footer { margin-top: 0; }
.footer-grid {
	display: grid;
	grid-template-columns: 1.4fr 1fr 1fr 1.3fr;
	gap: 48px;
	padding-bottom: 48px;
	border-bottom: 1px solid #3a302a;
}
.footer-col h4 {
	font-family: var(--bg-font-body);
	font-size: 14px;
	color: #fff;
	margin: 0 0 20px;
	letter-spacing: 1.8px;
	font-weight: 600;
	text-transform: uppercase;
}
.footer-col p,
.footer-col .footer-menu,
.footer-col .footer-menu li,
.footer-col address {
	font-size: 13px;
	line-height: 1.9;
	color: #c4b4a3;
	font-style: normal;
}
.footer-col p { margin: 0 0 8px; }
.footer-col a { color: #c4b4a3; transition: color .2s; }
.footer-col a:hover { color: #fff; }

.footer-logo {
	font-family: var(--bg-font-display);
	font-size: 28px;
	color: #fff;
	margin: 0 0 22px;
	font-weight: 500;
	letter-spacing: -0.005em;
	display: inline-block;
}
img.footer-logo { max-width: 200px; height: auto; }
.footer-address { margin: 0 0 14px; }

.footer-menu { list-style: none; padding: 0; margin: 0; }
.footer-menu li { list-style: none; margin: 0; }
.footer-menu a { display: block; padding: 4px 0; }

.footer-social {
	display: flex; gap: 10px;
	margin-top: 20px;
	flex-wrap: wrap;
}
.footer-social__link {
	width: 36px; height: 36px;
	border-radius: 50%;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	color: #fff;
	background: #2c241f;
	transition: transform .2s, box-shadow .2s, filter .2s;
}
.footer-social__link svg { width: 18px; height: 18px; }
.footer-social__link:hover {
	transform: translateY(-2px);
	filter: brightness(1.1);
	box-shadow: 0 4px 14px rgba(0,0,0,0.3);
}
.footer-social__link[aria-label="Facebook"] { background: #1877F2; }
.footer-social__link[aria-label="Facebook"] svg { width: 36px; height: 36px; }
.footer-social__link[aria-label="Instagram"] { background: linear-gradient(45deg, #F58529 0%, #DD2A7B 35%, #8134AF 65%, #515BD4 100%); }
.footer-social__link[aria-label="Tiktok"]    { background: #000; }

.footer-newsletter {
	display: flex;
	border-bottom: 1px solid #4a4338;
	padding-bottom: 8px;
	margin: 14px 0 20px;
}
.footer-newsletter input {
	flex: 1;
	background: transparent;
	border: 0;
	color: #fff;
	font-size: 13px;
	outline: none;
	padding: 6px 0;
	min-width: 0;
}
.footer-newsletter input::placeholder { color: #6f6657; }
.footer-newsletter button {
	color: #fff; background: none; border: 0; cursor: pointer;
	padding: 6px;
	display: inline-flex;
}
.footer-newsletter__desc {
	font-size: 12px;
	line-height: 1.7;
	color: #8a8378;
	margin: 0 0 6px;
}

.payment-methods {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	margin-top: 24px;
	align-items: center;
}
.payment-icon {
	background: transparent;
	border-radius: 5px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	transition: transform .2s;
	overflow: hidden;
}
.payment-icon:hover { transform: translateY(-2px); }
.payment-icon svg { display: block; height: 38px; width: auto; }

.footer-bottom {
	padding: 24px 0;
	display: flex;
	justify-content: space-between;
	align-items: center;
	font-size: 12px;
	color: #777062;
}
.footer-copyright { margin: 0; }
.footer-bottom__links {
	list-style: none;
	display: flex;
	gap: 24px;
	margin: 0; padding: 0;
}
.footer-bottom__links a { color: #777062; }
.footer-bottom__links a:hover { color: #fff; }

/* ==========================================================================
   WooCommerce loop
   ========================================================================== */
.woocommerce-main { padding: 60px 0 100px; }
.woocommerce ul.products,
.woocommerce-page ul.products {
	display: grid !important;
	grid-template-columns: repeat(4, 1fr) !important;
	gap: 28px 22px !important;
	margin: 0 !important;
	padding: 0 !important;
	list-style: none !important;
}
.woocommerce ul.products li.product { width: auto !important; margin: 0 !important; float: none !important; }
.woocommerce ul.products li.product .woocommerce-LoopProduct-link {
	display: block;
	background: var(--bg-paper);
	border: 1px solid var(--bg-line);
	border-radius: var(--bg-radius);
	overflow: hidden;
	transition: border-color .2s, transform .2s, box-shadow .2s;
}
.woocommerce ul.products li.product .woocommerce-LoopProduct-link:hover {
	border-color: var(--bg-accent-soft);
	transform: translateY(-3px);
	box-shadow: var(--bg-shadow);
}
.woocommerce ul.products li.product img { margin: 0 !important; border-radius: 0 !important; box-shadow: none !important; width: 100% !important; }
.woocommerce ul.products li.product .woocommerce-loop-product__title {
	padding: 14px 16px 6px !important;
	font-family: var(--bg-font-body) !important;
	font-size: 0.98rem !important;
	font-weight: 600 !important;
	color: var(--bg-ink) !important;
}
.woocommerce ul.products li.product .price {
	padding: 0 16px 16px !important;
	font-family: var(--bg-font-display) !important;
	font-size: 1.15rem !important;
	color: var(--bg-ink) !important;
	font-weight: 600 !important;
}
.woocommerce ul.products li.product .price del { color: var(--bg-muted) !important; font-size: 0.85em !important; }
.woocommerce ul.products li.product .price ins { color: var(--bg-accent) !important; text-decoration: none !important; }
.woocommerce ul.products li.product .button {
	display: inline-block !important;
	margin: 0 16px 16px !important;
	background: var(--bg-accent) !important;
	color: #fff !important;
	border-radius: 999px !important;
	padding: 9px 18px !important;
	font-size: 0.85rem !important;
	font-weight: 600 !important;
	border: 0 !important;
	text-shadow: none !important;
	box-shadow: none !important;
}
.woocommerce ul.products li.product .button:hover { background: var(--bg-accent-dark) !important; }
.woocommerce ul.products li.product .onsale,
.woocommerce span.onsale {
	background: var(--bg-accent) !important;
	color: #fff !important;
	border-radius: 999px !important;
	padding: 4px 10px !important;
	font-size: 0.7rem !important;
	font-weight: 700 !important;
	letter-spacing: 0.1em !important;
	min-height: auto !important;
	min-width: auto !important;
	line-height: 1.4 !important;
	top: 12px !important; left: 12px !important; right: auto !important;
}
.woocommerce-Price-amount { font-weight: 600; }

/* breadcrumbs */
.bg-breadcrumb,
.woocommerce-breadcrumb {
	font-size: 0.85rem !important;
	color: var(--bg-muted) !important;
	margin-bottom: 26px !important;
}
.bg-breadcrumb a, .woocommerce-breadcrumb a { color: var(--bg-ink-soft) !important; }
.bg-breadcrumb a:hover, .woocommerce-breadcrumb a:hover { color: var(--bg-accent) !important; }
.crumb-sep { margin: 0 8px; color: var(--bg-line-strong); }

.woocommerce-products-header__title {
	font-family: var(--bg-font-display) !important;
	font-size: clamp(1.8rem, 3vw, 2.6rem) !important;
	margin: 0 0 30px !important;
	font-weight: 700 !important;
}

/* single product */
.single-product .product { margin-top: 40px; }
.single-product .summary h1.product_title {
	font-family: var(--bg-font-display) !important;
	font-size: 2rem !important;
	margin-bottom: 14px !important;
	font-weight: 700 !important;
}
.single-product .summary .price {
	font-family: var(--bg-font-display) !important;
	font-size: 1.7rem !important;
	color: var(--bg-accent) !important;
	font-weight: 700 !important;
}
.single-product .summary .single_add_to_cart_button {
	background: var(--bg-accent) !important;
	color: #fff !important;
	border-radius: 999px !important;
	padding: 14px 32px !important;
	font-weight: 600 !important;
	letter-spacing: 0.04em !important;
}
.single-product .summary .single_add_to_cart_button:hover { background: var(--bg-accent-dark) !important; }
.single-product .quantity .qty {
	border: 1px solid var(--bg-line-strong) !important;
	border-radius: var(--bg-radius-sm) !important;
	padding: 12px !important;
	width: 80px !important;
}

.woocommerce-tabs ul.tabs.wc-tabs {
	border: 0 !important;
	padding: 0 !important;
	margin: 40px 0 0 !important;
	border-bottom: 1px solid var(--bg-line) !important;
}
.woocommerce-tabs ul.tabs.wc-tabs::before { display: none !important; }
.woocommerce-tabs ul.tabs.wc-tabs li {
	background: transparent !important;
	border: 0 !important;
	border-radius: 0 !important;
	padding: 0 !important;
	margin: 0 24px 0 0 !important;
}
.woocommerce-tabs ul.tabs.wc-tabs li a {
	font-family: var(--bg-font-body) !important;
	font-weight: 600 !important;
	color: var(--bg-muted) !important;
	padding: 14px 0 !important;
	border-bottom: 2px solid transparent !important;
}
.woocommerce-tabs ul.tabs.wc-tabs li.active a {
	color: var(--bg-ink) !important;
	border-bottom-color: var(--bg-accent) !important;
}
.woocommerce-tabs .wc-tab { padding-top: 28px !important; }

/* cart / checkout */
.woocommerce-cart .cart-collaterals .cart_totals,
.woocommerce-checkout #order_review {
	background: var(--bg-paper);
	border: 1px solid var(--bg-line);
	border-radius: var(--bg-radius);
	padding: 26px;
}
.woocommerce-checkout button.button.alt,
.woocommerce-page button.button.alt,
.woocommerce #respond input#submit,
.woocommerce a.button.alt,
.woocommerce-cart .checkout-button,
.woocommerce button.button.alt {
	background: var(--bg-accent) !important;
	color: #fff !important;
	border-radius: 999px !important;
	padding: 14px 32px !important;
	font-weight: 600 !important;
	border: 0 !important;
	text-shadow: none !important;
	box-shadow: none !important;
}
.woocommerce-checkout button.button.alt:hover,
.woocommerce a.button.alt:hover,
.woocommerce-cart .checkout-button:hover,
.woocommerce button.button.alt:hover { background: var(--bg-accent-dark) !important; }
.woocommerce form .form-row input.input-text,
.woocommerce form .form-row textarea,
.woocommerce form .form-row select,
.select2-container--default .select2-selection--single {
	border: 1px solid var(--bg-line-strong) !important;
	border-radius: var(--bg-radius-sm) !important;
	padding: 11px 14px !important;
	background: var(--bg-paper) !important;
	font: inherit !important;
}

/* messages */
.woocommerce-message,
.woocommerce-info,
.woocommerce-error {
	border-top-color: var(--bg-accent) !important;
	background: var(--bg-paper) !important;
	border-radius: var(--bg-radius-sm) !important;
}

/* Track Order page styling */
.woocommerce form.track_order {
	max-width: 640px;
	margin: 0 auto;
	background: var(--bg-paper);
	border: 1px solid var(--bg-line);
	border-radius: var(--bg-radius);
	padding: 36px 40px;
	box-shadow: var(--bg-shadow-sm);
}
.woocommerce form.track_order p {
	display: flex;
	flex-direction: column;
	gap: 8px;
	margin: 0 0 18px;
}
.woocommerce form.track_order p > label {
	font-size: 0.82rem;
	font-weight: 600;
	letter-spacing: 0.04em;
	color: var(--bg-ink);
	margin: 0;
}
.woocommerce form.track_order p input,
.woocommerce form.track_order input[type="text"],
.woocommerce form.track_order input[type="email"] {
	width: 100% !important;
	border: 1px solid var(--bg-line-strong) !important;
	background: var(--bg-bg) !important;
	border-radius: var(--bg-radius-sm) !important;
	padding: 13px 16px !important;
	font: inherit !important;
	color: var(--bg-ink) !important;
}
.woocommerce form.track_order p input:focus {
	outline: none !important;
	border-color: var(--bg-accent) !important;
	background: var(--bg-paper) !important;
}
.woocommerce form.track_order .button,
.woocommerce form.track_order button[type="submit"],
.woocommerce form.track_order input[type="submit"] {
	display: inline-block !important;
	background: var(--bg-accent) !important;
	color: #fff !important;
	border: 0 !important;
	border-radius: 999px !important;
	padding: 14px 36px !important;
	font: inherit !important;
	font-weight: 600 !important;
	box-shadow: 0 6px 18px rgba(200,37,59,0.22) !important;
	cursor: pointer !important;
	min-width: 160px !important;
	margin-top: 8px !important;
}
.woocommerce form.track_order .button:hover { background: var(--bg-accent-dark) !important; }

.woocommerce input[type="text"],
.woocommerce input[type="email"],
.woocommerce input[type="password"],
.woocommerce input[type="number"] {
	border: 1px solid var(--bg-line-strong) !important;
	background: var(--bg-paper) !important;
	border-radius: var(--bg-radius-sm) !important;
	padding: 12px 14px !important;
	font: inherit !important;
}
.woocommerce input[type="submit"],
.woocommerce button[type="submit"],
.woocommerce .button {
	background: var(--bg-accent) !important;
	color: #fff !important;
	border: 0 !important;
	border-radius: 999px !important;
	padding: 12px 28px !important;
	font-weight: 600 !important;
}
.woocommerce input[type="submit"]:hover,
.woocommerce button[type="submit"]:hover,
.woocommerce .button:hover { background: var(--bg-accent-dark) !important; }

/* ==========================================================================
   Single page / post
   ========================================================================== */
.site-main.standard-page,
.page main#primary,
body.page > main { padding: 60px 0 90px; }
.entry-content { font-size: 1.02rem; line-height: 1.75; color: var(--bg-ink-soft); }
.entry-content h2, .entry-content h3 { color: var(--bg-ink); }
.entry-content a { text-decoration: underline; text-decoration-color: var(--bg-accent-soft); text-underline-offset: 4px; }
.page .entry-header { text-align: center; margin-bottom: 36px; }
.page .entry-title {
	font-family: var(--bg-font-display);
	font-size: clamp(2rem, 4vw, 3.2rem);
	margin: 0 0 12px;
	font-weight: 700;
}
.page .entry-content > p:first-child {
	max-width: 640px;
	margin: 0 auto 28px;
	text-align: center;
	color: var(--bg-ink-soft);
}

/* ==========================================================================
   Responsive
   ========================================================================== */
@media (max-width: 1100px) {
	.site-header__inner { grid-template-columns: auto 1fr auto; }
	.site-search { grid-column: 1 / -1; order: 5; }
	.bg-cats, .bg-products, .bg-promise { grid-template-columns: repeat(3, 1fr); }
	.woocommerce ul.products { grid-template-columns: repeat(3, 1fr) !important; }
	.bg-test-grid { grid-template-columns: repeat(2, 1fr); }
	.bg-trust { grid-template-columns: repeat(2, 1fr); }
	.bg-usp { grid-template-columns: repeat(2, 1fr); }
	.footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 820px) {
	.bg-hero__inner, .bg-story, .bg-news-band { grid-template-columns: 1fr; gap: 32px; }
	.bg-news-band { padding: 40px 30px; }
	.bg-cats, .bg-products { grid-template-columns: repeat(2, 1fr); }
	.woocommerce ul.products { grid-template-columns: repeat(2, 1fr) !important; }
	.bg-promise { grid-template-columns: repeat(2, 1fr); }
	.bg-section { padding: 64px 0; }

	.nav-toggle { display: flex; }
	body.bg-drawer-open::before {
		content: '';
		position: fixed;
		inset: 0;
		background: rgba(28,23,20,0.45);
		z-index: 150;
	}
	.site-header__nav-row { display: none; }
	.site-header__nav-row.is-open {
		display: block;
		position: fixed;
		top: 0; left: 0;
		width: 86%; max-width: 360px;
		height: 100vh;
		background: var(--bg-paper);
		z-index: 200;
		overflow-y: auto;
		padding: 0;
		box-shadow: var(--bg-shadow-lg);
	}
	.site-header__nav-row.is-open > .container {
		padding: 22px 22px 30px;
		max-width: none;
	}
	.primary-nav { display: block; }
	.primary-menu { flex-direction: column; gap: 0; }
	.primary-menu > li {
		width: 100%;
		border-bottom: 1px solid var(--bg-line);
	}
	.primary-menu > li > a { padding: 14px 0; width: 100%; font-size: 0.98rem; }
	.primary-menu > li > a::after { display: none; }
	.primary-menu .sub-menu {
		position: static; opacity: 1; visibility: visible; transform: none;
		box-shadow: none; border: 0; padding: 0 0 14px 14px;
		min-width: 0;
	}
	.primary-menu .sub-menu a { font-size: 0.88rem; color: var(--bg-ink-soft); }

	.drawer-brand {
		display: flex;
		align-items: center;
		justify-content: space-between;
		padding: 0 0 16px;
		border-bottom: 1px solid var(--bg-line);
		margin: 0 0 6px;
	}
	.drawer-brand .site-title,
	.drawer-brand .drawer-brand__title {
		font-family: var(--bg-font-display);
		font-size: 1.5rem;
		font-style: italic;
		font-weight: 700;
		color: var(--bg-accent);
	}
	.drawer-shortcuts {
		list-style: none;
		padding: 18px 0 0;
		margin: 18px 0 0;
		border-top: 1px solid var(--bg-line);
		display: grid;
		grid-template-columns: 1fr 1fr;
		gap: 10px;
	}
	.drawer-shortcuts a {
		display: flex;
		align-items: center;
		gap: 8px;
		padding: 12px 14px;
		color: var(--bg-ink);
		font-weight: 500;
		font-size: 0.88rem;
		background: var(--bg-bg);
		border: 1px solid var(--bg-line);
		border-radius: 999px;
		justify-content: center;
	}
	.drawer-shortcuts a:hover { background: var(--bg-accent-soft); border-color: var(--bg-accent-soft); color: var(--bg-accent-dark); }
	.drawer-shortcuts__badge {
		background: var(--bg-accent); color: #fff;
		border-radius: 999px;
		padding: 1px 7px;
		font-size: 0.72rem; font-weight: 700;
	}
	.footer-grid { grid-template-columns: 1fr; gap: 36px; }
}

@media (max-width: 540px) {
	.bg-cats, .bg-products, .bg-promise, .bg-test-grid,
	.bg-trust, .bg-usp { grid-template-columns: 1fr; }
	.woocommerce ul.products { grid-template-columns: 1fr !important; }
	.bg-hero { padding: 50px 0 70px; }
	.site-header__inner { padding: 14px 16px; gap: 12px; }
	.bg-section { padding: 50px 0; }
}

.error-404, .search-no-results {
	text-align: center;
	padding: 100px 20px;
}
.error-404 h1 { font-family: var(--bg-font-display); font-size: 5rem; margin-bottom: 12px; color: var(--bg-accent); }

/* ==========================================================================
   Section base (refined — Reformation/Ganni minimal)
   ========================================================================== */
.bg-eyebrow {
	display: inline-block;
	font-family: var(--bg-font-body);
	font-size: 0.72rem;
	font-weight: 500;
	letter-spacing: 0.24em;
	text-transform: uppercase;
	color: var(--bg-muted);
	margin-bottom: 14px;
}
.bg-eyebrow::before { content: none; }
.bg-section__title {
	font-family: var(--bg-font-display);
	font-size: clamp(2rem, 3.4vw, 3rem);
	font-weight: 500;
	letter-spacing: -0.01em;
	margin: 0;
	line-height: 1.12;
	color: var(--bg-ink);
}
.bg-link-arrow {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	font-family: var(--bg-font-body);
	font-size: 0.82rem;
	font-weight: 500;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	color: var(--bg-ink);
	border-bottom: 1px solid var(--bg-ink);
	padding-bottom: 4px;
	transition: gap .25s ease;
}
.bg-link-arrow:hover { color: var(--bg-accent); border-color: var(--bg-accent); gap: 12px; }

/* ==========================================================================
   Hero — full-bleed photo, minimal overlay
   ========================================================================== */
.bg-hero {
	position: relative;
	height: clamp(620px, 88vh, 820px);
	background: var(--bg-ink);
	overflow: hidden;
}
.bg-hero__track {
	position: relative;
	width: 100%; height: 100%;
}
.bg-hero__slide {
	position: absolute;
	inset: 0;
	opacity: 0;
	visibility: hidden;
	transition: opacity 1.4s ease, visibility 1.4s;
}
.bg-hero__slide.is-active {
	opacity: 1;
	visibility: visible;
	z-index: 2;
}
.bg-hero__media {
	position: absolute;
	inset: 0;
	overflow: hidden;
}
.bg-hero__media img {
	width: 100%; height: 100%;
	object-fit: cover;
	transform: scale(1.04);
	transition: transform 9s ease;
}
.bg-hero__slide.is-active .bg-hero__media img { transform: scale(1); }
.bg-hero__media::after {
	content: '';
	position: absolute;
	inset: 0;
	background: linear-gradient(0deg, rgba(28,23,20,0.55) 0%, rgba(28,23,20,0.18) 35%, rgba(28,23,20,0) 70%);
}
.bg-hero__copy {
	position: absolute;
	left: 0; right: 0; bottom: 0;
	padding: 0 var(--bg-gutter) 90px;
	z-index: 3;
}
.bg-hero__copy-inner {
	max-width: var(--bg-container);
	margin: 0 auto;
	color: #fff;
	transform: translateY(16px);
	opacity: 0;
	transition: transform 1s ease .4s, opacity 1s ease .4s;
}
.bg-hero__slide.is-active .bg-hero__copy-inner {
	transform: translateY(0);
	opacity: 1;
}
.bg-hero__eyebrow {
	font-family: var(--bg-font-body);
	font-size: 0.72rem;
	font-weight: 500;
	letter-spacing: 0.32em;
	text-transform: uppercase;
	color: rgba(255,255,255,0.85);
	display: block;
	margin-bottom: 22px;
}
.bg-hero__title {
	font-family: var(--bg-font-display);
	font-size: clamp(2.4rem, 5vw, 4.4rem);
	font-weight: 400;
	letter-spacing: -0.015em;
	line-height: 1.04;
	color: #fff;
	margin: 0 0 32px;
	max-width: 720px;
}
.bg-hero__link {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	font-family: var(--bg-font-body);
	font-size: 0.82rem;
	font-weight: 500;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: #fff;
	border-bottom: 1px solid rgba(255,255,255,0.7);
	padding-bottom: 5px;
	transition: gap .25s ease, border-color .2s, color .2s;
}
.bg-hero__link:hover {
	color: #fff;
	border-color: #fff;
	gap: 14px;
}

.bg-hero__dots {
	position: absolute;
	bottom: 32px; left: 50%;
	transform: translateX(-50%);
	display: flex;
	gap: 10px;
	z-index: 5;
}
.bg-hero__dot {
	width: 9px; height: 9px;
	background: transparent;
	border: 1px solid rgba(255,255,255,0.6);
	border-radius: 50%;
	cursor: pointer;
	padding: 0;
	transition: background .25s, border-color .25s;
}
.bg-hero__dot.is-active {
	background: #fff;
	border-color: #fff;
}

@media (max-width: 820px) {
	.bg-hero { height: clamp(540px, 78vh, 680px); }
	.bg-hero__copy { padding-bottom: 80px; padding-left: 20px; padding-right: 20px; }
	.bg-hero__title { font-size: clamp(2rem, 7vw, 2.8rem); }
}

/* ==========================================================================
   Quiet announcement bar (replaces marquee)
   ========================================================================== */
.bg-announce {
	background: var(--bg-bg);
	border-bottom: 1px solid var(--bg-line);
	padding: 14px 0;
}
.bg-announce .container {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 18px;
	flex-wrap: wrap;
}
.bg-announce__item {
	font-family: var(--bg-font-body);
	font-size: 0.74rem;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	color: var(--bg-ink-soft);
	font-weight: 500;
}
.bg-announce__sep {
	color: var(--bg-line-strong);
	font-size: 0.82rem;
}

/* ==========================================================================
   Category mosaic (3 panels)
   ========================================================================== */
.bg-mosaic {
	padding: 100px 0;
	background: var(--bg-bg);
	position: relative;
	z-index: 1;
	isolation: isolate;
}
.bg-mosaic__grid {
	display: grid;
	grid-template-columns: 1.2fr 1fr;
	gap: 16px;
	height: clamp(560px, 70vw, 760px);
}
.bg-mosaic__col {
	display: grid;
	grid-template-rows: 1fr 1fr;
	gap: 16px;
}
.bg-mosaic__panel {
	position: relative;
	overflow: hidden;
	display: block;
	background: var(--bg-line);
	border-radius: 2px;
}
.bg-mosaic__panel img {
	width: 100%; height: 100%;
	object-fit: cover;
	transition: transform 1.4s ease;
}
.bg-mosaic__panel:hover img { transform: scale(1.04); }
.bg-mosaic__panel::after {
	content: '';
	position: absolute;
	inset: 0;
	background: linear-gradient(0deg, rgba(28,23,20,0.5) 0%, rgba(28,23,20,0.05) 50%, rgba(28,23,20,0) 100%);
	pointer-events: none;
}
.bg-mosaic__copy {
	position: absolute;
	left: 32px; bottom: 32px; right: 32px;
	z-index: 2;
	color: #fff;
}
.bg-mosaic__eyebrow {
	display: block;
	font-family: var(--bg-font-body);
	font-size: 0.7rem;
	font-weight: 500;
	letter-spacing: 0.28em;
	text-transform: uppercase;
	color: rgba(255,255,255,0.85);
	margin-bottom: 8px;
}
.bg-mosaic__title {
	font-family: var(--bg-font-display);
	font-size: clamp(1.6rem, 2.6vw, 2.4rem);
	font-weight: 400;
	color: #fff;
	margin: 0 0 14px;
	line-height: 1.1;
	letter-spacing: -0.01em;
}
.bg-mosaic__cta {
	display: inline-block;
	font-family: var(--bg-font-body);
	font-size: 0.78rem;
	font-weight: 500;
	letter-spacing: 0.16em;
	text-transform: uppercase;
	color: #fff;
	border-bottom: 1px solid rgba(255,255,255,0.8);
	padding-bottom: 4px;
	transition: padding .25s, border-color .2s;
}
.bg-mosaic__panel:hover .bg-mosaic__cta { padding-right: 8px; }

@media (max-width: 820px) {
	.bg-mosaic__grid { grid-template-columns: 1fr; height: auto; }
	.bg-mosaic__panel { aspect-ratio: 4/5; }
	.bg-mosaic__col { grid-template-rows: auto auto; }
}

/* ==========================================================================
   Lookbook (new arrivals) — clean horizontal scroll
   ========================================================================== */
.bg-lookbook {
	padding: 110px 0 100px;
	background: var(--bg-paper);
	overflow: hidden;
	position: relative;
	z-index: 1;
	isolation: isolate;
}
.bg-lookbook__head {
	display: flex;
	align-items: end;
	justify-content: space-between;
	gap: 40px;
	margin-bottom: 56px;
	flex-wrap: wrap;
}
.bg-lookbook__head h2 { margin: 6px 0 0; }
.bg-lookbook__nav {
	display: flex;
	align-items: center;
	gap: 28px;
}
.bg-lookbook__arrows {
	display: flex;
	gap: 6px;
}
.bg-lookbook__arrow {
	width: 40px; height: 40px;
	border: 1px solid var(--bg-line-strong);
	background: transparent;
	border-radius: 50%;
	cursor: pointer;
	display: grid; place-items: center;
	color: var(--bg-ink);
	transition: background .2s, color .2s, border-color .2s;
}
.bg-lookbook__arrow:hover {
	background: var(--bg-ink);
	color: #fff;
	border-color: var(--bg-ink);
}
.bg-lookbook__track {
	display: grid;
	grid-auto-flow: column;
	grid-auto-columns: 320px;
	gap: 24px;
	overflow-x: auto;
	scroll-snap-type: x mandatory;
	scroll-behavior: smooth;
	scrollbar-width: none;
	padding-bottom: 12px;
}
.bg-lookbook__track::-webkit-scrollbar { display: none; }
.bg-look {
	scroll-snap-align: start;
	display: block;
	color: inherit;
}
.bg-look__media {
	aspect-ratio: 3/4;
	overflow: hidden;
	margin-bottom: 18px;
	background: var(--bg-line);
}
.bg-look__media img {
	width: 100%; height: 100%;
	object-fit: cover;
	transition: transform 1.2s ease;
}
.bg-look:hover .bg-look__media img { transform: scale(1.04); }
.bg-look__placeholder {
	width: 100%; height: 100%;
	background: linear-gradient(135deg, var(--bg-blush), var(--bg-champagne-soft));
}
.bg-look__caption {
	display: flex;
	justify-content: space-between;
	align-items: baseline;
	gap: 12px;
	padding: 0 2px;
}
.bg-look__title {
	font-family: var(--bg-font-display);
	font-size: 1.1rem;
	font-weight: 400;
	margin: 0;
	color: var(--bg-ink);
	letter-spacing: -0.005em;
	line-height: 1.3;
}
.bg-look__price {
	font-family: var(--bg-font-display);
	font-size: 1.05rem;
	color: var(--bg-ink);
	font-weight: 400;
	white-space: nowrap;
}

@media (max-width: 820px) {
	.bg-lookbook__track { grid-auto-columns: 78%; }
	.bg-lookbook__arrows { display: none; }
}

/* ==========================================================================
   Editorial split — minimal asymmetric, no giant number
   ========================================================================== */
.bg-editorial {
	padding: 110px 0;
	background: var(--bg-bg);
}
.bg-editorial__grid {
	display: grid;
	grid-template-columns: 1.05fr 1fr;
	gap: 88px;
	align-items: center;
}
.bg-editorial__media {
	position: relative;
	min-height: 580px;
}
.bg-editorial__img {
	margin: 0;
	overflow: hidden;
	background: var(--bg-line);
}
.bg-editorial__img img {
	width: 100%; height: 100%;
	object-fit: cover;
	display: block;
}
.bg-editorial__img--big {
	width: 86%;
	aspect-ratio: 4/5;
}
.bg-editorial__img--small {
	position: absolute;
	bottom: -30px; right: 0;
	width: 50%;
	aspect-ratio: 3/4;
	box-shadow: 0 30px 60px rgba(28,23,20,0.18);
}
.bg-editorial__title {
	font-family: var(--bg-font-display);
	font-size: clamp(2.2rem, 3.6vw, 3.2rem);
	font-weight: 400;
	margin: 16px 0 28px;
	line-height: 1.08;
	letter-spacing: -0.01em;
	color: var(--bg-ink);
	max-width: 480px;
}
.bg-editorial__copy p {
	font-size: 1.02rem;
	color: var(--bg-ink-soft);
	line-height: 1.75;
	margin: 0 0 18px;
	max-width: 460px;
}
.bg-editorial__copy .bg-link-arrow { margin-top: 18px; }

@media (max-width: 820px) {
	.bg-editorial__grid { grid-template-columns: 1fr; gap: 50px; }
	.bg-editorial__media { min-height: 0; }
	.bg-editorial__img--big { width: 100%; }
	.bg-editorial__img--small { width: 60%; bottom: -24px; }
}

/* ==========================================================================
   Instagram / UGC — tight square grid, soft hover
   ========================================================================== */
.bg-ig {
	padding: 100px 0;
	background: var(--bg-paper);
	border-top: 1px solid var(--bg-line);
}
.bg-ig__head {
	text-align: center;
	margin-bottom: 48px;
}
.bg-ig__head h2 { margin: 4px auto 0; max-width: 620px; }
.bg-ig__grid {
	display: grid;
	grid-template-columns: repeat(6, 1fr);
	gap: 4px;
}
.bg-ig__tile {
	position: relative;
	aspect-ratio: 1/1;
	overflow: hidden;
	display: block;
	background: var(--bg-line);
}
.bg-ig__tile img {
	width: 100%; height: 100%;
	object-fit: cover;
	transition: transform 1s ease;
}
.bg-ig__tile:hover img { transform: scale(1.06); }
.bg-ig__overlay {
	position: absolute;
	inset: 0;
	background: rgba(28,23,20,0.45);
	color: #fff;
	display: grid; place-items: center;
	opacity: 0;
	transition: opacity .3s;
}
.bg-ig__tile:hover .bg-ig__overlay { opacity: 1; }
.bg-ig__foot { text-align: center; margin-top: 36px; }

@media (max-width: 820px) { .bg-ig__grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 540px) { .bg-ig__grid { grid-template-columns: repeat(2, 1fr); } }

/* ==========================================================================
   Quote strip (replaces fake press logos)
   ========================================================================== */
.bg-quote {
	padding: 110px 0;
	background: var(--bg-bg);
	text-align: center;
}
.bg-quote__body {
	max-width: 780px;
	margin: 0 auto;
	border: 0;
	padding: 0;
	position: relative;
}
.bg-quote__mark {
	display: block;
	font-family: var(--bg-font-display);
	font-size: 4.5rem;
	color: var(--bg-accent);
	font-style: italic;
	line-height: 0.6;
	margin-bottom: 14px;
}
.bg-quote__body p {
	font-family: var(--bg-font-display);
	font-size: clamp(1.5rem, 2.6vw, 2.2rem);
	font-weight: 400;
	font-style: italic;
	color: var(--bg-ink);
	line-height: 1.35;
	margin: 0 0 22px;
	letter-spacing: -0.005em;
}
.bg-quote__body cite {
	font-family: var(--bg-font-body);
	font-style: normal;
	font-size: 0.78rem;
	font-weight: 500;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	color: var(--bg-muted);
}

/* ==========================================================================
   Newsletter — minimal cream split
   ========================================================================== */
.bg-newsletter {
	padding: 100px 0;
	background: var(--bg-paper);
	border-top: 1px solid var(--bg-line);
	border-bottom: 1px solid var(--bg-line);
}
.bg-newsletter__inner {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 80px;
	align-items: center;
	max-width: 1100px;
	margin: 0 auto;
}
.bg-newsletter__title {
	font-family: var(--bg-font-display);
	font-size: clamp(1.6rem, 2.8vw, 2.4rem);
	font-weight: 400;
	margin: 4px 0 14px;
	line-height: 1.15;
	letter-spacing: -0.005em;
	color: var(--bg-ink);
}
.bg-newsletter__sub {
	font-size: 0.92rem;
	color: var(--bg-muted);
	margin: 0;
}
.bg-newsletter__form {
	display: flex;
	border-bottom: 1px solid var(--bg-ink);
	padding-bottom: 6px;
}
.bg-newsletter__form input {
	flex: 1;
	border: 0;
	background: transparent;
	padding: 14px 0;
	font: inherit;
	color: var(--bg-ink);
	min-width: 0;
}
.bg-newsletter__form input::placeholder {
	color: var(--bg-muted);
	font-style: italic;
}
.bg-newsletter__form input:focus { outline: none; }
.bg-newsletter__form button {
	background: transparent;
	border: 0;
	padding: 14px 0 14px 16px;
	font: inherit;
	font-weight: 500;
	font-size: 0.82rem;
	letter-spacing: 0.16em;
	text-transform: uppercase;
	color: var(--bg-ink);
	cursor: pointer;
	transition: color .2s;
}
.bg-newsletter__form button:hover { color: var(--bg-accent); }

@media (max-width: 820px) {
	.bg-newsletter__inner { grid-template-columns: 1fr; gap: 36px; }
}

/* ==========================================================================
   Bestsellers — 4-col static grid
   ========================================================================== */
.bg-grid-section {
	padding: 110px 0;
	background: var(--bg-paper);
	border-top: 1px solid var(--bg-line);
	position: relative;
	z-index: 1;
	isolation: isolate;
}
.bg-grid-section__head {
	display: flex;
	align-items: end;
	justify-content: space-between;
	gap: 40px;
	margin-bottom: 56px;
	flex-wrap: wrap;
}
.bg-grid-section__head h2 { margin: 6px 0 0; }
.bg-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 32px 24px;
}
.bg-grid__card {
	display: block;
	color: inherit;
}
.bg-grid__media {
	position: relative;
	aspect-ratio: 3/4;
	overflow: hidden;
	margin-bottom: 16px;
	background: var(--bg-line);
}
.bg-grid__media img {
	width: 100%; height: 100%;
	object-fit: cover;
	transition: transform 1.2s ease;
}
.bg-grid__card:hover img { transform: scale(1.04); }
.bg-grid__placeholder {
	width: 100%; height: 100%;
	background: linear-gradient(135deg, var(--bg-blush), var(--bg-champagne-soft));
}
.bg-grid__tag {
	position: absolute;
	top: 14px; left: 14px;
	background: var(--bg-paper);
	color: var(--bg-ink);
	font-family: var(--bg-font-body);
	font-size: 0.66rem;
	font-weight: 600;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	padding: 5px 10px;
}
.bg-grid__caption {
	display: flex;
	flex-direction: column;
	gap: 4px;
	padding: 0 2px;
}
.bg-grid__cat {
	font-family: var(--bg-font-body);
	font-size: 0.7rem;
	font-weight: 500;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	color: var(--bg-muted);
}
.bg-grid__title {
	font-family: var(--bg-font-display);
	font-size: 1.08rem;
	font-weight: 400;
	margin: 2px 0;
	color: var(--bg-ink);
	line-height: 1.3;
	letter-spacing: -0.005em;
}
.bg-grid__price {
	font-family: var(--bg-font-display);
	font-size: 1rem;
	color: var(--bg-ink);
	font-weight: 400;
}
.bg-grid__price del { color: var(--bg-muted); margin-right: 8px; font-size: 0.9em; }
.bg-grid__price ins { text-decoration: none; color: var(--bg-accent); }

@media (max-width: 1100px) { .bg-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 820px)  { .bg-grid { grid-template-columns: repeat(2, 1fr); gap: 26px 16px; } }

/* ==========================================================================
   Sale rail — horizontal scroll on dark cream band
   ========================================================================== */
.bg-sale {
	padding: 110px 0;
	background: var(--bg-bg);
	overflow: hidden;
	position: relative;
	z-index: 1;
	isolation: isolate;
	border-top: 1px solid var(--bg-line);
	border-bottom: 1px solid var(--bg-line);
}
.bg-sale__head {
	display: flex;
	align-items: end;
	justify-content: space-between;
	gap: 40px;
	margin-bottom: 48px;
	flex-wrap: wrap;
}
.bg-sale__head h2 { margin: 6px 0 0; }
.bg-eyebrow--accent {
	color: var(--bg-accent);
	font-weight: 600;
}
.bg-sale__nav {
	display: flex;
	align-items: center;
	gap: 28px;
}
.bg-sale__arrows { display: flex; gap: 6px; }
.bg-sale__arrow {
	width: 40px; height: 40px;
	border: 1px solid var(--bg-line-strong);
	background: transparent;
	border-radius: 50%;
	cursor: pointer;
	display: grid; place-items: center;
	color: var(--bg-ink);
	transition: background .2s, color .2s, border-color .2s;
}
.bg-sale__arrow:hover {
	background: var(--bg-accent);
	color: #fff;
	border-color: var(--bg-accent);
}
.bg-sale__track {
	display: grid;
	grid-auto-flow: column;
	grid-auto-columns: 260px;
	gap: 18px;
	overflow-x: auto;
	scroll-snap-type: x mandatory;
	scroll-behavior: smooth;
	scrollbar-width: none;
	padding-bottom: 12px;
}
.bg-sale__track::-webkit-scrollbar { display: none; }
.bg-sale__card {
	scroll-snap-align: start;
	display: block;
	color: inherit;
}
.bg-sale__media {
	position: relative;
	aspect-ratio: 3/4;
	overflow: hidden;
	margin-bottom: 14px;
	background: var(--bg-line);
}
.bg-sale__media img {
	width: 100%; height: 100%;
	object-fit: cover;
	transition: transform 1.2s ease;
}
.bg-sale__card:hover img { transform: scale(1.05); }
.bg-sale__badge {
	position: absolute;
	top: 14px; right: 14px;
	background: var(--bg-accent);
	color: #fff;
	font-family: var(--bg-font-body);
	font-size: 0.78rem;
	font-weight: 600;
	letter-spacing: 0.04em;
	padding: 5px 10px;
	border-radius: 999px;
}
.bg-sale__caption {
	display: flex;
	justify-content: space-between;
	align-items: baseline;
	gap: 10px;
	padding: 0 2px;
}
.bg-sale__title {
	font-family: var(--bg-font-display);
	font-size: 1rem;
	font-weight: 400;
	margin: 0;
	color: var(--bg-ink);
	line-height: 1.3;
}
.bg-sale__price {
	font-family: var(--bg-font-display);
	font-size: 0.98rem;
	color: var(--bg-ink);
	white-space: nowrap;
}
.bg-sale__price del { color: var(--bg-muted); margin-right: 6px; font-size: 0.88em; }
.bg-sale__price ins { text-decoration: none; color: var(--bg-accent); }

@media (max-width: 820px) {
	.bg-sale__track { grid-auto-columns: 64%; }
	.bg-sale__arrows { display: none; }
}

/* ==========================================================================
   Editor's Picks — 1 big feature + 4 small list items
   ========================================================================== */
.bg-picks {
	padding: 110px 0;
	background: var(--bg-paper);
	border-top: 1px solid var(--bg-line);
	position: relative;
	z-index: 1;
	isolation: isolate;
}
.bg-picks__grid {
	display: grid;
	grid-template-columns: 1.05fr 1fr;
	gap: 60px;
	align-items: stretch;
}
.bg-picks__feature {
	position: relative;
	overflow: hidden;
	background: var(--bg-line);
	min-height: 600px;
	border-radius: 2px;
	display: block;
}
.bg-picks__feature img {
	width: 100%; height: 100%;
	object-fit: cover;
	transition: transform 1.4s ease;
	position: absolute;
	inset: 0;
}
.bg-picks__feature:hover img { transform: scale(1.04); }
.bg-picks__feature::after {
	content: '';
	position: absolute;
	inset: 0;
	background: linear-gradient(0deg, rgba(28,23,20,0.65) 0%, rgba(28,23,20,0.05) 50%, rgba(28,23,20,0) 100%);
	pointer-events: none;
}
.bg-picks__feature-copy {
	position: absolute;
	left: 36px; right: 36px; bottom: 36px;
	z-index: 2;
	color: #fff;
}
.bg-eyebrow--light { color: rgba(255,255,255,0.85); }
.bg-picks__feature-title {
	font-family: var(--bg-font-display);
	font-size: clamp(1.6rem, 2.6vw, 2.4rem);
	font-weight: 400;
	color: #fff;
	margin: 4px 0 12px;
	line-height: 1.1;
	letter-spacing: -0.01em;
}
.bg-picks__feature-copy p {
	font-size: 0.92rem;
	color: rgba(255,255,255,0.85);
	max-width: 380px;
	margin: 0 0 18px;
	line-height: 1.6;
}
.bg-picks__feature-cta {
	display: inline-flex;
	align-items: center; gap: 10px;
	font-family: var(--bg-font-body);
	font-size: 0.78rem;
	font-weight: 500;
	letter-spacing: 0.16em;
	text-transform: uppercase;
	color: #fff;
	border-bottom: 1px solid rgba(255,255,255,0.85);
	padding-bottom: 4px;
	transition: gap .25s;
}
.bg-picks__feature:hover .bg-picks__feature-cta { gap: 14px; }

.bg-picks__list {
	display: flex;
	flex-direction: column;
	justify-content: center;
}
.bg-picks__item {
	display: grid;
	grid-template-columns: 38px 90px 1fr 18px;
	gap: 22px;
	align-items: center;
	padding: 22px 0;
	border-bottom: 1px solid var(--bg-line);
	color: inherit;
	transition: padding .25s;
}
.bg-picks__item:first-child { padding-top: 0; }
.bg-picks__item:last-child  { border-bottom: 0; }
.bg-picks__item:hover { padding-left: 4px; }
.bg-picks__num {
	font-family: var(--bg-font-display);
	font-style: italic;
	font-size: 1.4rem;
	font-weight: 400;
	color: var(--bg-accent);
}
.bg-picks__thumb {
	width: 90px; height: 110px;
	overflow: hidden;
	background: var(--bg-line);
}
.bg-picks__thumb img {
	width: 100%; height: 100%;
	object-fit: cover;
	transition: transform 1s ease;
}
.bg-picks__item:hover .bg-picks__thumb img { transform: scale(1.06); }
.bg-picks__body { display: flex; flex-direction: column; gap: 4px; }
.bg-picks__body h3 {
	font-family: var(--bg-font-display);
	font-size: 1.15rem;
	font-weight: 400;
	margin: 0;
	color: var(--bg-ink);
	line-height: 1.25;
	letter-spacing: -0.005em;
}
.bg-picks__price {
	font-family: var(--bg-font-display);
	font-size: 1rem;
	color: var(--bg-ink-soft);
}
.bg-picks__arrow {
	color: var(--bg-muted);
	transition: color .2s, transform .25s;
	justify-self: end;
}
.bg-picks__item:hover .bg-picks__arrow {
	color: var(--bg-accent);
	transform: translateX(4px);
}

@media (max-width: 1100px) {
	.bg-picks__grid { grid-template-columns: 1fr; gap: 40px; }
	.bg-picks__feature { min-height: 480px; }
}
@media (max-width: 540px) {
	.bg-picks__item { grid-template-columns: 32px 70px 1fr 16px; gap: 14px; padding: 18px 0; }
	.bg-picks__thumb { width: 70px; height: 88px; }
	.bg-picks__num { font-size: 1.2rem; }
	.bg-picks__body h3 { font-size: 1rem; }
}

/* Section spacing tweaks */
@media (max-width: 820px) {
	.bg-mosaic,
	.bg-lookbook,
	.bg-editorial,
	.bg-ig,
	.bg-quote,
	.bg-newsletter,
	.bg-grid-section,
	.bg-sale,
	.bg-picks { padding: 70px 0; }
}
