/* =========================================================================
   Rose — lightweight WooCommerce fashion theme
   Purple & pink editorial. Inter. Bold display, rounded panels.
   ========================================================================= */

/* --- Design tokens ------------------------------------------------------ */
:root {
	--bg: #FFFFFF;
	--surface: #FFFFFF;
	--tint: #F4F1FB;          /* soft lilac section background */
	--soft-white: #F6F3FC;    /* tinted white — blends with the --tint card bg */
	--violet: #7C5CE0;        /* primary */
	--violet-deep: #4B2FB3;   /* deep accents */
	--violet-soft: #EDE7FB;   /* pale violet fill */
	--lilac: #C6B4F0;
	--pink: #EC4899;          /* hot pink accent */
	--pink-soft: #FCE7F3;
	--ink: #1A1533;           /* near-black display / headings */
	--body: #4B4667;          /* body text */
	--muted: #8B85A8;         /* secondary text */
	--line: #ECE8F6;          /* hairline borders */

	--font: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

	--container: 1240px;
	--gutter: clamp(1rem, 4vw, 2.5rem);
	--radius: 10px;
	--radius-lg: 18px;
	--radius-xl: 28px;
	--radius-pill: 100px;
	--shadow-sm: 0 6px 18px -12px rgba(75, 47, 179, 0.35);
	--shadow: 0 20px 45px -25px rgba(75, 47, 179, 0.4);
	--shadow-lg: 0 30px 60px -30px rgba(75, 47, 179, 0.45);
	--ease: cubic-bezier(0.16, 1, 0.3, 1);
	--t: 0.35s var(--ease);
}

/* --- Reset -------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
/* The off-canvas mobile menu is parked off-screen with translateX. overflow-x
   on <body> doesn't clip position:fixed descendants, but on <html> with `clip`
   it does — this removes the phantom horizontal scroll on mobile. */
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; overflow-x: clip; }
body {
	margin: 0;
	background: var(--bg);
	color: var(--body);
	font-family: var(--font);
	font-size: 1rem;
	line-height: 1.65;
	-webkit-font-smoothing: antialiased;
	text-rendering: optimizeLegibility;
	overflow-x: clip;
}
img, picture, svg, video { max-width: 100%; height: auto; display: block; }
a { color: var(--violet); text-decoration: none; transition: color var(--t); }
a:hover { color: var(--violet-deep); }
h1, h2, h3, h4 { font-weight: 800; line-height: 1.1; color: var(--ink); margin: 0 0 0.5em; letter-spacing: -0.02em; }
p { margin: 0 0 1.1em; }
ul, ol { margin: 0 0 1.1em; padding-left: 1.2em; }
button { font-family: inherit; cursor: pointer; }
:focus-visible { outline: 2px solid var(--violet); outline-offset: 3px; }

.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; left: -9999px; top: 0; z-index: 1000;
	background: var(--violet); color: #fff; padding: 0.7rem 1.2rem; border-radius: 0 0 var(--radius) 0;
}
.skip-link:focus { left: 0; }

/* --- Layout helpers ----------------------------------------------------- */
.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: var(--gutter); }
.section { padding-block: clamp(2.5rem, 6vw, 4.5rem); }
.section--tint { background: var(--tint); }

/* Site-wide gap fix: give the main content area consistent breathing room below
   its content, so nothing ever sits flush against the footer / features strip.
   Front-page sections and .page-hero bring their own top spacing; this handles
   the bottom gap that was missing on inner + WooCommerce pages. */
.site-main { padding-bottom: clamp(2.5rem, 6vw, 4.5rem); }
/* When the last block is already a padded .section (e.g. the homepage's Best
   Seller row), it brings its own bottom spacing — drop the main's extra padding
   so the two don't stack into an oversized gap before the features strip. */
.site-main:has(> .section:last-child) { padding-bottom: 0; }

/* WooCommerce pages that fall through to page.php render their content inside
   .container--narrow without a .page-hero, so it sits flush under the sticky
   header. Add matching top spacing there so the header-to-content gap matches
   the content-to-footer gap. */
.woocommerce-account main.site-main > article > .container--narrow,
.woocommerce-cart main.site-main > article > .container--narrow,
.woocommerce-checkout main.site-main > article > .container--narrow,
.woocommerce main.site-main > article > .container--narrow { padding-top: clamp(2.5rem, 6vw, 4.5rem); }

.section__head {
	display: flex; align-items: center; justify-content: space-between;
	gap: 1rem; flex-wrap: wrap; margin-bottom: 1.6rem;
}
.section__title {
	display: inline-flex; align-items: center; gap: 0.5rem;
	font-size: clamp(1.2rem, 2.5vw, 1.6rem); font-weight: 800; margin: 0;
	text-transform: uppercase; letter-spacing: -0.01em;
}
.section__title .spark { color: var(--pink); }
.section__link {
	display: inline-flex; align-items: center; gap: 0.4rem;
	font-size: 0.85rem; font-weight: 600; color: var(--violet);
}
.section__link svg { transition: transform var(--t); }
.section__link:hover svg { transform: translateX(3px); }

.eyebrow {
	display: inline-flex; align-items: center; gap: 0.5rem;
	font-size: 0.72rem; font-weight: 700; letter-spacing: 0.14em;
	text-transform: uppercase; color: var(--violet);
}

/* --- Buttons ------------------------------------------------------------ */
.btn {
	display: inline-flex; align-items: center; justify-content: center; gap: 0.55rem;
	font-size: 0.92rem; font-weight: 700; line-height: 1;
	padding: 0.9rem 1.6rem; border-radius: var(--radius-pill);
	border: 1.5px solid transparent; background: var(--violet); color: #fff;
	transition: background var(--t), color var(--t), border-color var(--t), transform var(--t);
	white-space: nowrap;
}
.btn:hover { background: var(--violet-deep); color: #fff; transform: translateY(-2px); }
.btn svg { width: 18px; height: 18px; }
.btn--ghost { background: transparent; color: var(--violet); border-color: var(--lilac); }
.btn--ghost:hover { background: var(--violet); color: #fff; border-color: var(--violet); }
.btn--pink { background: var(--pink); }
.btn--pink:hover { background: #d13c85; }
.btn--block { width: 100%; }
.btn__arrow {
	display: inline-flex; align-items: center; justify-content: center;
	width: 26px; height: 26px; border-radius: 50%; background: rgba(255,255,255,0.2);
}

/* --- Top announcement bar ---------------------------------------------- */
.topbar {
	background: linear-gradient(90deg, var(--violet-deep), var(--violet));
	color: #fff; font-size: 0.82rem;
}
.topbar__inner {
	display: flex; align-items: center; justify-content: center;
	gap: 0.6rem 1.4rem; padding-block: 0.55rem; flex-wrap: wrap; text-align: center;
}
.topbar__sep { opacity: 0.45; }
@media (max-width: 720px) { .topbar__sep { display: none; } .topbar { font-size: 0.72rem; } }

/* --- Header ------------------------------------------------------------- */
.site-header { position: sticky; top: 0; z-index: 100; background: rgba(255,255,255,0.92); backdrop-filter: saturate(1.1) blur(10px); border-bottom: 1px solid var(--line); }
.site-header.is-scrolled { box-shadow: var(--shadow-sm); }
.site-header__bar { display: flex; align-items: center; gap: 1.5rem; min-height: 74px; }

.site-brand { display: inline-flex; flex-direction: column; line-height: 1; }
.site-brand__name { font-size: 1.7rem; font-weight: 800; letter-spacing: -0.02em; color: var(--violet); }
.site-brand__spark { color: var(--pink); font-size: 0.85rem; vertical-align: super; }
.site-brand__tag { font-size: 0.58rem; letter-spacing: 0.26em; text-transform: uppercase; color: var(--muted); margin-top: 3px; }
.custom-logo-link img { max-height: 46px; width: auto; }

.primary-nav { margin-inline: auto; }

/* Privacy Policy shows only inside the mobile menu (hamburger), not in the
   desktop top bar. */
@media (min-width: 981px) {
	.nav__item--privacy { display: none; }
}

/* Freeze the page behind the open mobile menu — no scrolling of the page or
   its popup. JS pins the scroll position via body.top; this locks both layers. */
html.nav-open { overflow: hidden; }
body.nav-open { position: fixed; left: 0; right: 0; width: 100%; overflow: hidden; }
.nav__list { display: flex; align-items: center; gap: 1.5rem; list-style: none; margin: 0; padding: 0; }
.nav__list a { color: var(--ink); font-size: 0.92rem; font-weight: 600; position: relative; padding: 0.4rem 0; }
.nav__list a:hover, .nav__list .current-menu-item > a { color: var(--violet); }
.nav__list .current-menu-item > a::after,
.nav__list a:hover::after { content: ""; position: absolute; left: 0; bottom: -2px; width: 100%; height: 2px; background: var(--violet); border-radius: 2px; }
.nav__list .menu-item-has-children > a::after { content: none; }

.header-actions { display: flex; align-items: center; gap: 0.4rem; }
.header-icon { position: relative; display: inline-flex; align-items: center; justify-content: center; width: 42px; height: 42px; border-radius: 50%; color: var(--ink); transition: background var(--t), color var(--t); }
button.header-icon { border: 0; background: none; cursor: pointer; font: inherit; }
.header-icon:hover { background: var(--violet-soft); color: var(--violet); }

/* --- Search bar (slides down under the header) -------------------------- */
.rose-search {
	position: fixed; inset: 0 0 auto 0; z-index: 90;
	background: #fff; border-bottom: 1px solid var(--line);
	box-shadow: 0 14px 30px -18px rgba(26,21,51,0.35);
	padding: 0.85rem 0;
	transform: translateY(-100%); opacity: 0; pointer-events: none;
	transition: transform 0.32s cubic-bezier(0.16,1,0.3,1), opacity 0.28s ease;
}
/* Slide down to just below the sticky header. */
.rose-search.is-open { transform: translateY(var(--rose-header-h, 68px)); }
.rose-search[hidden] { display: none; }
.rose-search.is-open { opacity: 1; pointer-events: auto; }

/* Search row: icon + input + button + close, on one clean line. */
.rose-search__form {
	position: relative;
	display: flex; align-items: center; gap: 0.6rem;
	background: var(--violet-soft);
	border: 1px solid transparent;
	border-radius: var(--radius-pill);
	padding: 0.35rem 0.35rem 0.35rem 1.1rem;
	transition: border-color var(--t), background var(--t), box-shadow var(--t);
}
.rose-search__form:focus-within {
	background: #fff; border-color: var(--lilac);
	box-shadow: 0 0 0 3px var(--violet-soft);
}
.rose-search__icon { display: inline-flex; color: var(--violet); flex-shrink: 0; }
.rose-search__input {
	flex: 1; min-width: 0; border: 0; background: none;
	font-size: 1.05rem; font-weight: 600; color: var(--ink);
	padding: 0.5rem 0; letter-spacing: -0.01em;
}
.rose-search__input:focus { outline: none; }
.rose-search__input::placeholder { color: var(--muted); font-weight: 500; }

/* Submit button — matches the theme's primary .btn colour. */
.rose-search__submit {
	flex-shrink: 0; border: 0; cursor: pointer;
	display: inline-flex; align-items: center; justify-content: center; gap: 0.4rem;
	padding: 0.62rem 1.4rem; border-radius: var(--radius-pill);
	font-weight: 700; font-size: 0.95rem; color: #fff;
	background: var(--violet);
	transition: background var(--t), transform var(--t);
}
.rose-search__submit .icon { color: #fff; width: 18px; height: 18px; }
.rose-search__submit:hover { background: var(--violet-deep); transform: translateY(-1px); }
.rose-search__submit:active { transform: translateY(0); }

/* Close button — sits inside the row on the far right. */
.rose-search__close {
	flex-shrink: 0; width: 40px; height: 40px; border-radius: 50%;
	border: 0; background: transparent; color: var(--muted);
	display: inline-flex; align-items: center; justify-content: center;
	cursor: pointer; transition: background var(--t), color var(--t);
}
.rose-search__close:hover { background: var(--pink-soft); color: var(--pink); }

@media (max-width: 560px) {
	.rose-search__form { padding-left: 0.9rem; gap: 0.35rem; }
	/* Icon-only submit on phones — a neat square button (not a bare pill). */
	.rose-search__submit { padding: 0.55rem 0.7rem; }
	.rose-search__submit-text { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); }
}
.header-badge, .cart-count {
	position: absolute; top: 4px; right: 4px; min-width: 18px; height: 18px;
	display: inline-flex; align-items: center; justify-content: center;
	padding: 0 5px; font-size: 0.66rem; font-weight: 700; line-height: 1;
	background: var(--pink); color: #fff; border-radius: var(--radius-pill);
}
.cart-count.is-empty { display: none; }

.nav-toggle { display: none; width: 42px; height: 42px; border-radius: 50%; border: 1px solid var(--line); background: #fff; color: var(--ink); align-items: center; justify-content: center; }

/* --- Features strip (between page content and footer) ------------------- */
.features-strip { padding-block: clamp(1.5rem, 3vw, 2.5rem); }
.features-strip__inner {
	display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem;
	background: var(--violet-soft); border-radius: var(--radius-lg); padding: 1.4rem 1.6rem;
}
.feature-item { display: flex; align-items: center; gap: 0.8rem; }
.feature-item + .feature-item { border-left: 1px solid rgba(124,92,224,0.18); padding-left: 1rem; }
.feature-item svg { color: var(--violet); flex-shrink: 0; }
.feature-item strong { display: block; color: var(--ink); font-size: 0.92rem; }
.feature-item span { font-size: 0.8rem; color: var(--muted); }

/* --- Footer ------------------------------------------------------------- */
.site-footer { background: var(--ink); color: #C7C1E0; }

.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.4fr; gap: 2rem; padding-block: 3rem 2rem; }
.footer-col h3 { color: #fff; font-size: 0.9rem; letter-spacing: 0.06em; text-transform: uppercase; margin-bottom: 1.1rem; }
.footer-brand__name { font-size: 1.6rem; font-weight: 800; color: #fff; margin-bottom: 0.2rem; }
.footer-brand__tag { font-size: 0.58rem; letter-spacing: 0.24em; text-transform: uppercase; color: var(--lilac); margin-bottom: 1rem; }
.footer-col ul { list-style: none; margin: 0; padding: 0; }
.footer-col li { margin-bottom: 0.55rem; }
.footer-col a { color: #C7C1E0; font-size: 0.9rem; }
.footer-col a:hover { color: #fff; }
.footer-contact li { display: flex; align-items: flex-start; gap: 0.6rem; font-size: 0.9rem; margin-bottom: 0.7rem; }
.footer-contact svg { color: var(--lilac); flex-shrink: 0; margin-top: 2px; }
.footer-social { display: flex; gap: 0.6rem; margin-top: 1.2rem; }
.footer-social a { width: 36px; height: 36px; border-radius: 50%; background: rgba(255,255,255,0.08); display: inline-flex; align-items: center; justify-content: center; color: #C7C1E0; }
.footer-social a:hover { background: var(--violet); color: #fff; }

.footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); padding-block: 1.3rem; display: flex; align-items: center; justify-content: space-between; gap: 1rem; flex-wrap: wrap; font-size: 0.82rem; }
.footer-pay { display: flex; align-items: center; gap: 0.6rem; flex-wrap: wrap; }
.pay-chip { background: #fff; color: var(--ink); font-size: 0.72rem; font-weight: 700; padding: 0.3rem 0.6rem; border-radius: 6px; }
/* Icon + label payment chip. The image is capped to the size set from the
   Customizer "Icon size" box (applied inline) while keeping its aspect ratio. */
.pay-chip--img { display: inline-flex; align-items: center; gap: 0.4rem; padding: 0.3rem 0.7rem 0.3rem 0.5rem; }
.pay-chip--img img { width: auto; height: auto; object-fit: contain; display: block; }
.pay-chip__label { font-size: 0.78rem; font-weight: 800; color: var(--ink); letter-spacing: -0.01em; }

/* --- State block (empty / 404) ----------------------------------------- */
.state-block { text-align: center; padding-block: clamp(3rem, 8vw, 6rem); }
.state-block h1 { font-size: clamp(3rem, 8vw, 6rem); color: var(--violet); }
.state-block h2 { font-size: 1.8rem; }
.state-block p { color: var(--muted); max-width: 46ch; margin-inline: auto; }

/* --- Pagination --------------------------------------------------------- */
/* Space the pager away from the product grid. Applied on the nav wrapper with
   enough specificity to beat WooCommerce's own .woocommerce nav rules. */
.rose-pagination, .woocommerce-pagination,
.woocommerce nav.woocommerce-pagination { margin-top: clamp(2rem, 4vw, 3rem); }
.rose-pagination ul, .woocommerce-pagination ul { list-style: none; display: flex; gap: 0.4rem; padding: 0; justify-content: center; margin-top: 0; }
.rose-pagination a, .rose-pagination span,
.woocommerce-pagination a, .woocommerce-pagination span {
	display: inline-flex; align-items: center; justify-content: center;
	width: 42px; height: 42px; border-radius: 50%; border: 1px solid var(--line);
	color: var(--ink); font-weight: 600;
}
.rose-pagination .current, .woocommerce-pagination .current { background: var(--violet); color: #fff; border-color: var(--violet); }

/* =========================================================================
   Homepage sections
   ========================================================================= */

/* --- Hero --------------------------------------------------------------- */
.hero {
	padding-block: clamp(1.5rem, 3vw, 2.5rem) clamp(2rem, 5vw, 3.5rem);
	overflow: hidden;
	background: linear-gradient(180deg, var(--tint) 0%, #FBFAFE 100%);
}
.hero__grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(1.5rem, 4vw, 3rem); align-items: center; }

.hero__kicker {
	display: inline-flex; align-items: center; gap: 0.4rem;
	font-size: 0.72rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase;
	color: var(--violet); background: var(--violet-soft); padding: 0.4rem 0.85rem;
	border-radius: var(--radius-pill); margin: 0 0 1.1rem;
}
.hero__title { font-size: clamp(2.4rem, 6vw, 4.6rem); font-weight: 900; line-height: 0.96; letter-spacing: -0.04em; margin: 0 0 1rem; }
.hero__line { display: block; }
.hero__lede { color: var(--muted); font-size: 1.05rem; margin: 0 0 1.3rem; }

.hero__bullets { list-style: none; margin: 0 0 1.6rem; padding: 0; display: grid; grid-template-columns: 1fr 1fr; gap: 0.55rem 1rem; max-width: 420px; }
.hero__bullets li { display: flex; align-items: center; gap: 0.5rem; font-size: 0.92rem; font-weight: 500; color: var(--ink); }
.hero__bullets svg { color: var(--violet); flex-shrink: 0; }

.hero__actions { display: flex; flex-wrap: wrap; gap: 0.8rem; margin-bottom: 1.6rem; }

.hero__trust { display: flex; align-items: center; gap: 0.7rem; }
.hero__avatars { display: inline-flex; }
.hero__avatars > span { width: 30px; height: 30px; border-radius: 50%; border: 2px solid #fff; margin-left: -10px; background: linear-gradient(135deg, var(--lilac), var(--violet)); overflow: hidden; }
.hero__avatars > span:first-child { margin-left: 0; }
/* Real reviewer avatar (Gravatar) fills its circle. */
.hero__avatar { padding: 0; }
.hero__avatar img, .hero__avatar-img { width: 100%; height: 100%; object-fit: cover; display: block; border-radius: 50%; }
.hero__trust-text { display: flex; flex-direction: column; font-size: 0.82rem; color: var(--muted); line-height: 1.3; }
.hero__stars { display: inline-flex; color: var(--pink); }
.hero__stars svg { fill: currentColor; }

.hero__media { position: relative; display: flex; align-items: flex-end; justify-content: center; min-height: 480px; }
.hero__blob {
	position: absolute; top: 44%; left: 50%; transform: translate(-50%, -50%);
	width: min(430px, 94%); aspect-ratio: 1 / 1;
	background: radial-gradient(circle at 50% 42%, var(--violet-soft) 0%, var(--lilac) 58%, var(--violet) 118%);
	border-radius: 50%; z-index: 0;
	box-shadow:
		inset 0 0 70px 20px rgba(255,255,255,0.55),
		0 0 60px 10px rgba(255,255,255,0.6);
}
/* Model image. Its size follows the Customizer scale (--hero-img-scale,
   default 1 = the original design size). It never overflows its column. */
.hero__model {
	position: relative; z-index: 1;
	width: calc(min(420px, 100%) * var(--hero-img-scale, 1));
	max-width: 100%; height: auto;
	object-fit: contain; object-position: bottom center;
	filter: drop-shadow(0 20px 30px rgba(75,47,179,0.25));
}
/* Customizer: image horizontal position (Left / Center / Right). */
.hero__media--left { justify-content: flex-start; }
.hero__media--center { justify-content: center; }
.hero__media--right { justify-content: flex-end; }

.hero__chip {
	position: absolute; z-index: 2; display: inline-flex; align-items: center; gap: 0.5rem;
	background: #fff; border-radius: 14px; box-shadow: var(--shadow); padding: 0.6rem 0.85rem; font-size: 0.75rem;
}
.hero__chip strong { display: block; color: var(--ink); }
.hero__chip span:last-child { color: var(--muted); }
.hero__chip-icon { display: inline-flex; color: var(--violet); }
.hero__chip--a { top: 6%; right: 2%; }
.hero__chip--b { top: 40%; left: -2%; }
.hero__chip--c { bottom: 8%; right: 4%; }

@media (max-width: 860px) {
	.hero__grid { grid-template-columns: 1fr; text-align: center; }
	.hero__copy { order: 1; }
	.hero__media { order: 2; min-height: 400px; }
	.hero__kicker, .hero__bullets { justify-self: center; margin-inline: auto; }
	.hero__bullets { text-align: left; }
	.hero__actions, .hero__trust { justify-content: center; }
	.hero__chip--b { left: 0; }
}
@media (max-width: 480px) {
	.hero__bullets { grid-template-columns: 1fr; }
	.hero__chip { font-size: 0.68rem; padding: 0.5rem 0.65rem; }
}

/* --- Phone hero: clean layout matching the reference banner -------------- *
 * Reference: bold headline top-left with the model image beside it (on a purple
 * blob), then sub-text, a single-column feature list, ONE "Shop Now" button and
 * the rating line — all full-width below. No floating chips, no second button. */
@media (max-width: 640px) {
	.hero { padding: 1.2rem 0 1.6rem; overflow: hidden; }
	/* Give the banner a tall min-height so the model image can be big (head to
	   shoes) even though the sub-text and bullets are hidden. */
	.hero__grid { grid-template-columns: 1fr; text-align: left; position: relative; min-height: 82vw; }
	.hero__copy { order: 1; position: relative; z-index: 1; }

	/* Headline — bold and readable, kept narrow so it clears the image.
	   !important overrides the inline font-size hero.php sets for the Customizer
	   title-size control (inline styles otherwise beat this media query). */
	.hero__title {
		font-size: clamp(1.5rem, 7.2vw, 2.1rem) !important;
		line-height: 1.05; margin-bottom: 1rem; max-width: 45%;
	}
	.hero__line { display: block; white-space: nowrap; }
	.hero__kicker { max-width: 45%; }

	/* Sub-text and feature list are hidden on phones for a cleaner banner. */
	.hero__lede { display: none; }
	.hero__bullets { display: none; }
	.hero__kicker { justify-self: start; margin-inline: 0; }

	/* Only the primary button on phones — small, inline pill like the reference
	   (not full-width). */
	.hero__actions { justify-content: flex-start; margin-bottom: 0.9rem; }
	.hero__actions .btn { flex: 0 0 auto; width: auto; padding: 0.55rem 1.1rem; font-size: 0.8rem; }
	.hero__actions .btn__arrow { width: 22px; height: 22px; }
	.hero__actions .btn--ghost { display: none; }

	/* Review line small like the reference — small stars + one compact line. */
	.hero__trust { justify-content: flex-start; gap: 0.4rem; }
	.hero__avatars > span { width: 19px; height: 19px; margin-left: -7px; border-width: 1.5px; }
	.hero__trust-text { font-size: 0.62rem; line-height: 1.2; }
	.hero__stars svg { width: 9px; height: 9px; }

	/* Model image beside the headline on the right — big, spanning the full
	   banner height (head to shoes), on a blob behind her, like the ref. */
	.hero__media {
		order: 0; position: absolute; top: 0; right: -2.8rem; bottom: 0;
		width: 76%; min-height: 0; z-index: 0;
		display: flex; align-items: flex-end; justify-content: center;
	}
	.hero__model {
		width: auto !important; max-width: 100% !important;
		height: 100% !important; max-height: none;
		object-fit: contain; object-position: bottom center;
	}
	/* Smaller blob centred behind her torso. */
	.hero__blob { top: 42%; left: 52%; width: 90%; }
	.hero__chip { display: none; }
}
/* Very narrow phones: give the headline a touch more room. */
@media (max-width: 370px) {
	.hero__title, .hero__kicker, .hero__lede { max-width: 54%; }
	.hero__bullets { max-width: 58%; }
	.hero__media { width: 54%; }
}

/* --- Shop by Category --------------------------------------------------- */
.cat-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.2rem; }
.cat-card {
	position: relative; display: block; border-radius: var(--radius-lg); overflow: hidden;
	aspect-ratio: 3 / 3.4; background: var(--violet-soft);
	box-shadow: var(--shadow-sm); transition: transform var(--t), box-shadow var(--t);
}
.cat-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.cat-card__media { position: absolute; inset: 0; }
.cat-card__media img, .cat-card__media svg { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s var(--ease); }
.cat-card:hover .cat-card__media img { transform: scale(1.05); }
.cat-card__body {
	position: absolute; inset: auto 0 0 0; padding: 1.2rem;
	background: linear-gradient(to top, rgba(26,21,51,0.6) 0%, rgba(26,21,51,0) 100%);
}
.cat-card__name { color: #fff; font-size: 1.2rem; font-weight: 800; margin: 0 0 0.3rem; line-height: 1.15; }
.cat-card__link { display: inline-flex; align-items: center; gap: 0.35rem; color: #fff; font-size: 0.82rem; font-weight: 600; }
.cat-card__link svg { transition: transform var(--t); }
.cat-card:hover .cat-card__link svg { transform: translateX(3px); }
.cat-card__count { display: inline-block; color: rgba(255,255,255,0.9); font-size: 0.8rem; font-weight: 600; }

@media (max-width: 900px) { .cat-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 480px) { .cat-grid { grid-template-columns: 1fr 1fr; gap: 0.8rem; } .cat-card__name { font-size: 1rem; } }

/* --- Phone: Shop by Category as a horizontal swipeable strip ------------- *
 * Only the homepage strip swipes. The All Categories page (.cat-grid--page)
 * keeps the normal grid so every category is shown at once, like on desktop. */
@media (max-width: 640px) {
	.cat-grid:not(.cat-grid--page) {
		display: flex; grid-template-columns: none;
		gap: 0.9rem; overflow-x: auto; -webkit-overflow-scrolling: touch;
		scroll-snap-type: x mandatory; padding-bottom: 0.5rem;
		scrollbar-width: none;
	}
	.cat-grid:not(.cat-grid--page)::-webkit-scrollbar { display: none; }
	.cat-grid:not(.cat-grid--page) .cat-card {
		flex: 0 0 46%; scroll-snap-align: start; aspect-ratio: 3 / 4;
	}
	.cat-card__name { font-size: 1.05rem; }

	/* All Categories page: a normal 2-column grid (no swipe). */
	.cat-grid--page { grid-template-columns: 1fr 1fr; gap: 0.9rem; }

	/* Grab cursor only on the swipeable homepage strip. */
	.cat-grid:not(.cat-grid--page), .tab-bar { cursor: grab; }
}

/* No text selection / snap fighting while a strip is being dragged. */
.cat-grid.is-dragging, .tab-bar.is-dragging { cursor: grabbing; user-select: none; scroll-snap-type: none; }
.cat-grid.is-dragging a, .tab-bar.is-dragging * { pointer-events: none; }

/* --- Tab bar ------------------------------------------------------------ */
.tab-bar { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-bottom: 1.6rem; }
.tab {
	padding: 0.5rem 1.1rem; border-radius: var(--radius-pill); border: 1px solid var(--line);
	background: #fff; color: var(--body); font-size: 0.85rem; font-weight: 600; transition: all var(--t);
}
.tab:hover { border-color: var(--violet); color: var(--violet); }
.tab.is-active { background: var(--violet); border-color: var(--violet); color: #fff; }

/* Phone: category tags in one swipeable row (no wrapping). */
@media (max-width: 640px) {
	.tab-bar {
		flex-wrap: nowrap; overflow-x: auto; -webkit-overflow-scrolling: touch;
		scroll-snap-type: x proximity; padding-bottom: 0.4rem; scrollbar-width: none;
	}
	.tab-bar::-webkit-scrollbar { display: none; }
	.tab { flex: 0 0 auto; scroll-snap-align: start; white-space: nowrap; }
}

/* --- Product grid + card ----------------------------------------------- */
.product-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 1.2rem; }
.pcard { background: #fff; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-sm); transition: transform var(--t), box-shadow var(--t); display: flex; flex-direction: column; }
.pcard:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.pcard__media { position: relative; aspect-ratio: 3 / 4; background: var(--violet-soft); overflow: hidden; }
.pcard__media-link { display: block; width: 100%; height: 100%; }
.pcard__media img, .pcard__media svg { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s var(--ease); }
.pcard:hover .pcard__media img { transform: scale(1.06); }

.pcard__badge { position: absolute; top: 10px; left: 10px; z-index: 2; font-size: 0.66rem; font-weight: 700; padding: 0.28rem 0.6rem; border-radius: var(--radius-pill); color: #fff; }
.pcard__badge--sale { background: var(--pink); }
.pcard__badge--new { background: var(--violet); }

.pcard__body { padding: 0.85rem 0.9rem 1rem; display: flex; flex-direction: column; gap: 0.3rem; flex: 1; }
.pcard__name { font-size: 0.9rem; font-weight: 600; line-height: 1.25; margin: 0; }
.pcard__name a { color: var(--ink); }
.pcard__name a:hover { color: var(--violet); }
.pcard__price { font-weight: 700; color: var(--violet); font-size: 0.95rem; margin-top: auto; }
.pcard__price del { color: var(--muted); font-weight: 500; margin-left: 0.35rem; font-size: 0.85rem; }
.pcard__price ins { text-decoration: none; }
.pcard__rating { display: inline-flex; align-items: center; gap: 0.25rem; font-size: 0.78rem; color: var(--ink); }
.pcard__rating svg { fill: var(--pink); color: var(--pink); }
.pcard__count { color: var(--muted); }

@media (max-width: 1100px) { .product-grid { grid-template-columns: repeat(4, 1fr); } }
@media (max-width: 760px) { .product-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 380px) { .product-grid { grid-template-columns: 1fr 1fr; gap: 0.7rem; } }

/* --- Promo banner (wide landscape strip) -------------------------------- */
.promo {
	position: relative; overflow: hidden;
	background: linear-gradient(120deg, var(--violet) 0%, var(--violet-deep) 120%);
	border-radius: var(--radius-xl); box-shadow: var(--shadow);
	min-height: 220px; display: flex; align-items: center;
	padding: clamp(1.6rem, 3vw, 2.4rem) clamp(1.8rem, 4vw, 3rem);
}
/* soft leaf-like decorative blobs in the background */
.promo::before, .promo::after {
	content: ""; position: absolute; border-radius: 50%; background: rgba(255,255,255,0.06); pointer-events: none;
}
.promo::before { width: 260px; height: 260px; top: -60px; right: 22%; }
.promo::after { width: 180px; height: 180px; bottom: -70px; right: 6%; }

.promo__copy { position: relative; z-index: 2; max-width: 60%; }
.promo__eyebrow { color: #fff; opacity: 0.85; font-size: 0.7rem; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; margin: 0 0 0.4rem; }
/* Text size uses the Customizer scale (--promo-scale, default 1). */
.promo__title { color: #fff; font-size: calc(clamp(1.3rem, 3vw, 1.9rem) * var(--promo-scale, 1)); font-weight: 700; margin: 0; line-height: 1.1; }
.promo__big { color: #fff; font-size: calc(clamp(1.7rem, 4.5vw, 2.8rem) * var(--promo-scale, 1)); font-weight: 900; letter-spacing: -0.02em; margin: 0 0 0.5rem; line-height: 1; }
.promo__text { color: rgba(255,255,255,0.85); font-size: 0.9rem; margin: 0 0 1.1rem; }

.promo__media { position: absolute; right: 3%; bottom: 0; top: 0; width: 46%; z-index: 1; display: flex; align-items: flex-end; justify-content: center; }
/* Image scales by the Customizer size (--promo-img-scale, default 1). It fills
   the panel height at 100%, stays proportional, and never overflows the top. */
.promo__media img {
	height: calc(100% * var(--promo-img-scale, 1));
	width: auto; max-width: 100%; max-height: 100%;
	object-fit: contain; object-position: bottom center;
}
/* Customizer: image horizontal position inside its area. */
.promo__media--left { justify-content: flex-start; }
.promo__media--center { justify-content: center; }
.promo__media--right { justify-content: flex-end; }
.promo__ring {
	position: absolute; top: 16%; right: 5%; z-index: 3; width: 88px; height: 88px; border-radius: 50%;
	background: var(--pink); color: #fff; font-size: 0.62rem; font-weight: 800; text-align: center;
	display: flex; align-items: center; justify-content: center; padding: 0.5rem; line-height: 1.25; transform: rotate(-14deg);
	box-shadow: 0 6px 16px -6px rgba(236,72,153,0.6);
}
@media (max-width: 720px) {
	.promo { min-height: 0; text-align: center; padding-bottom: 0; flex-direction: column; }
	.promo__copy { max-width: 100%; padding-bottom: 1.5rem; }
	.promo .btn { margin-inline: auto; }
	.promo__media { position: relative; width: 100%; max-width: 260px; margin-inline: auto; justify-content: center; }
	.promo__media img { height: auto; }
	.promo__ring { top: 4%; right: 4%; width: 70px; height: 70px; font-size: 0.54rem; }
}

/* --- Contact page ------------------------------------------------------- */
.contact-head { text-align: center; max-width: 620px; margin: 0 auto 2.5rem; }
.contact-head .eyebrow { justify-content: center; margin-bottom: 0.6rem; }
.contact-head__title { font-size: clamp(2rem, 5vw, 3rem); margin: 0 0 0.6rem; }
.contact-head__lede { color: var(--muted); font-size: 1.05rem; margin: 0; }

/* Flex (not fixed 4-col grid) so 3 cards centre instead of leaving an empty
   4th column pushed to the left. */
.contact-grid { display: flex; flex-wrap: wrap; justify-content: center; gap: 1.1rem; margin-bottom: 1.6rem; }
.contact-card {
	flex: 1 1 220px; max-width: 300px;
	display: flex; flex-direction: column; align-items: center; text-align: center; gap: 0.3rem;
	padding: 1.6rem 1.4rem 1.7rem; border-radius: var(--radius-lg);
	background: #fff; border: 1px solid var(--line); box-shadow: var(--shadow-sm);
	color: var(--ink); text-decoration: none; transition: transform var(--t), box-shadow var(--t), border-color var(--t);
}
.contact-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: var(--lilac); }
.contact-card__icon {
	display: inline-flex; align-items: center; justify-content: center;
	width: 48px; height: 48px; border-radius: 13px; margin-bottom: 0.6rem; color: #fff;
}
.contact-card__icon--phone { background: var(--violet); }
.contact-card__icon--wa    { background: #25D366; }
.contact-card__icon--mail  { background: var(--pink); }
.contact-card__icon--fb    { background: #1877F2; }
.contact-card__label { font-size: 0.8rem; font-weight: 700; letter-spacing: 0.04em; text-transform: uppercase; color: var(--muted); }
.contact-card__value { font-size: 1rem; font-weight: 700; color: var(--ink); word-break: break-word; }

.contact-info-strip {
	display: flex; flex-wrap: wrap; justify-content: center; gap: 1rem 2.5rem;
	padding: 1.3rem 1.6rem; border-radius: var(--radius-lg); background: var(--violet-soft);
}
.contact-info-strip__item { display: flex; align-items: center; gap: 0.7rem; font-size: 0.95rem; color: var(--body); }
.contact-info-strip__item svg { color: var(--violet); flex-shrink: 0; }
.contact-info-strip__item strong { display: block; color: var(--ink); font-size: 0.82rem; }

@media (max-width: 480px) { .contact-card { flex: 1 1 100%; max-width: 100%; } }

/* --- Blog + pages ------------------------------------------------------- */
.container--narrow { max-width: 760px; }
.page-hero { padding-block: clamp(2rem, 5vw, 3.5rem) clamp(1rem, 3vw, 2rem); text-align: center; }
.page-hero h1 { font-size: clamp(1.8rem, 4vw, 2.8rem); margin: 0 auto; max-width: 22ch; }
.page-hero p, .post__meta { color: var(--muted); }
.entry-featured { margin: 0 0 1.6rem; border-radius: var(--radius-lg); overflow: hidden; }
.entry-content { font-size: 1.05rem; }
.entry-content h2, .entry-content h3 { margin-top: 1.6em; }
.entry-content img { border-radius: var(--radius); }
.entry-content a { color: var(--violet); text-decoration: underline; text-decoration-color: var(--lilac); }
.entry-content blockquote { border-left: 3px solid var(--violet); padding-left: 1.2rem; margin-left: 0; color: var(--ink); font-weight: 500; }
.entry-content ul li::marker { color: var(--violet); }

.post-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 1.5rem; }
.post-card { background: #fff; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-sm); transition: transform var(--t), box-shadow var(--t); }
.post-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.post-card__media { display: block; aspect-ratio: 3 / 2; overflow: hidden; background: var(--violet-soft); }
.post-card__media img, .post-card__media svg { width: 100%; height: 100%; object-fit: cover; }
.post-card__body { padding: 1.1rem 1.2rem 1.3rem; }
.post-card__title { font-size: 1.1rem; margin: 0 0 0.4rem; }
.post-card__title a { color: var(--ink); }
.post-card__title a:hover { color: var(--violet); }

.search-form { display: flex; gap: 0.5rem; max-width: 480px; margin: 1.4rem auto 0; }
.search-form .search-field { flex: 1; padding: 0.8rem 1.2rem; border: 1px solid var(--line); border-radius: var(--radius-pill); }

.comments-area { max-width: 760px; margin: 3rem auto 0; }
.comment-list { list-style: none; padding: 0; }
.comment-body { padding: 1.2rem 0; border-bottom: 1px solid var(--line); }
.comment-respond input[type="text"], .comment-respond input[type="email"], .comment-respond input[type="url"], .comment-respond textarea {
	width: 100%; padding: 0.8rem 1rem; border: 1px solid var(--line); border-radius: var(--radius); background: #fff; font-family: inherit; margin-bottom: 1rem;
}

/* --- Scroll reveal ------------------------------------------------------ */
.reveal { opacity: 0; transform: translateY(20px); transition: opacity 0.6s var(--ease), transform 0.6s var(--ease); }
.reveal.is-visible { opacity: 1; transform: none; }

/* Product & category cards must never be hidden by the reveal animation:
   they can sit below the fold at load, and if the observer doesn't fire they'd
   stay invisible (looks like missing products). Keep them always visible;
   the reveal effect stays on genuinely decorative sections only. */
.pcard.reveal, .cat-card.reveal, .post-card.reveal { opacity: 1; transform: none; }

/* --- Reduced motion ----------------------------------------------------- */
@media (prefers-reduced-motion: reduce) {
	*, *::before, *::after { animation-duration: 0.001ms !important; transition-duration: 0.001ms !important; scroll-behavior: auto !important; }
	.reveal { opacity: 1 !important; transform: none !important; }
}

/* --- Responsive: header --------------------------------------------------- */
@media (max-width: 980px) {
	.nav-toggle { display: inline-flex; order: 3; }
	.primary-nav {
		position: fixed; top: 0; right: 0; left: auto; width: min(320px, 82vw);
		height: 100vh; height: 100dvh;
		background: #fff; box-shadow: var(--shadow-lg); padding: 5rem 1.5rem 2rem;
		transform: translateX(100%); transition: transform var(--t), visibility var(--t);
		z-index: 200; overflow-y: auto; margin: 0;
		/* Hidden while closed so the off-screen panel can't add page width. */
		visibility: hidden;
	}
	.primary-nav.is-open { transform: none; visibility: visible; }
	.nav__list { flex-direction: column; align-items: flex-start; gap: 0.2rem; }
	.nav__list a { display: block; padding: 0.7rem 0; width: 100%; border-bottom: 1px solid var(--line); }
	.nav__list a::after { content: none !important; }
	.site-header__bar { justify-content: space-between; }
	.header-actions { order: 2; margin-left: auto; }
}

/* --- Mobile bottom tab bar (phones only) -------------------------------- */
.rose-tabbar { display: none; }
@media (max-width: 640px) {
	.rose-tabbar {
		display: grid; grid-template-columns: repeat(4, 1fr);
		position: fixed; left: 0; right: 0; bottom: 0; z-index: 190;
		background: #fff; border-top: 1px solid var(--line);
		box-shadow: 0 -4px 16px rgba(26, 21, 51, 0.06);
		padding: 0.35rem 0 calc(0.35rem + env(safe-area-inset-bottom, 0px));
	}
	.rose-tab {
		display: flex; flex-direction: column; align-items: center; gap: 3px;
		padding: 0.35rem 0; text-decoration: none;
		color: var(--muted); font-size: 0.66rem; font-weight: 600;
		transition: color var(--t);
	}
	.rose-tab .icon { width: 22px; height: 22px; }
	.rose-tab.is-active { color: var(--violet); }
	.rose-tab:hover { color: var(--violet); }
}

/* --- Responsive: phone header — hamburger left, logo centre, cart right --- */
@media (max-width: 640px) {
	/* Hide the announcement bar and the logo tagline on phones. */
	.topbar { display: none; }
	.site-brand__tag { display: none; }

	.site-header__bar {
		display: flex; align-items: center; gap: 0.5rem;
		justify-content: space-between; min-height: 62px;
		position: relative; /* anchor for the absolutely-centred logo */
	}
	/* Hamburger to the far left. */
	.nav-toggle { order: 1; margin: 0; }
	/* Logo pinned to the TRUE screen centre so it never drifts — the hamburger
	   (1 icon) and the actions (search + cart) aren't the same width, so a
	   flex-centred brand would sit slightly off-centre. Absolute centring keeps
	   it dead-centre regardless of what sits on either side. */
	.site-brand {
		order: 2; position: absolute; left: 50%; top: 50%;
		transform: translate(-50%, -50%);
		align-items: center; text-align: center;
		margin: 0; pointer-events: none; /* let taps fall through the empty gaps */
	}
	.site-brand__link { display: inline-flex; flex-direction: column; align-items: center; pointer-events: auto; }
	.custom-logo-link { pointer-events: auto; }
	.site-brand__name { font-size: 1.4rem; }
	/* Actions to the right — search + cart show on phones (account lives in the
	   bottom tab bar as "Profile"). */
	.header-actions { order: 3; margin-left: 0; gap: 0.2rem; }
	.header-actions .header-icon[aria-label="Account"] { display: none; }
	.header-icon { width: 40px; height: 40px; }
	/* Leave room at the bottom for the fixed tab bar. */
	body { padding-bottom: 64px; }
}

@media (max-width: 780px) {
	.features-strip__inner { grid-template-columns: 1fr 1fr; }
	.feature-item:nth-child(odd) { border-left: 0; padding-left: 0; }
	.footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 520px) {
	.footer-bottom { flex-direction: column; text-align: center; }
}

/* Phone footer: centred logo + social on top, then Quick Links | Contact Us
   side-by-side. Customer Care is hidden (Privacy Policy moves to the menu). */
@media (max-width: 640px) {
	.footer-grid {
		grid-template-columns: 1fr 1fr; gap: 1.6rem 1.5rem; padding-block: 2.2rem 1.6rem;
	}
	/* Logo + social block spans the full width and is centred. */
	.footer-about {
		grid-column: 1 / -1;
		display: flex; flex-direction: column; align-items: center; text-align: center;
	}
	.footer-about > p:not(.footer-brand__name):not(.footer-brand__tag) { display: none; } /* hide the about paragraph */
	.footer-social { justify-content: center; margin-top: 0.4rem; gap: 0.45rem; }
	.footer-social a { width: 30px; height: 30px; }
	.footer-social a svg { width: 15px; height: 15px; }
	/* Customer Care hidden on phones. */
	.footer-col--care { display: none; }
	/* Quick Links (left) + Contact Us (right), each half. */
	.footer-col--quicklinks { grid-column: 1; }
	.footer-col--contact { grid-column: 2; }

	/* Smaller footer text so nothing breaks in the narrow half-width columns. */
	.footer-col h3 { font-size: 0.78rem; margin-bottom: 0.8rem; }
	.footer-col a, .footer-col li { font-size: 0.78rem; }
	.footer-contact li { font-size: 0.75rem; gap: 0.4rem; align-items: flex-start; margin-bottom: 0.5rem; }
	.footer-contact svg { width: 15px; height: 15px; flex-shrink: 0; margin-top: 1px; }
	.footer-brand__name { font-size: 1.35rem; }
}
/* Phone: smaller payment icons in the footer. !important beats the inline
   max-width/height footer.php sets from the Customizer "Icon size" box. */
@media (max-width: 640px) {
	.footer-pay { gap: 0.4rem; justify-content: center; }
	.pay-chip--img { padding: 0.25rem 0.5rem 0.25rem 0.4rem; gap: 0.3rem; }
	.pay-chip--img img {
		max-width: 24px !important; max-height: 24px !important;
	}
	.pay-chip__label { font-size: 0.66rem; }
}
/* Phone: feature bar as compact side-by-side items (icon over text).
   The 3rd item (Secure Payment) is hidden on phones, leaving three across. */
@media (max-width: 640px) {
	.features-strip__inner {
		grid-template-columns: repeat(3, 1fr); gap: 0.5rem;
		padding: 1rem 0.6rem;
	}
	.feature-item:nth-child(3) { display: none; }
	.feature-item {
		flex-direction: column; align-items: center; text-align: center; gap: 0.2rem;
		border-left: 0 !important; padding-left: 0 !important;
	}
	.feature-item svg { width: 20px; height: 20px; }
	.feature-item strong { font-size: 0.62rem; line-height: 1.1; margin-bottom: 1px; }
	.feature-item span { font-size: 0.52rem; line-height: 1.1; }
	/* A small gap between the title and the sub-text. */
	.feature-item > div { display: flex; flex-direction: column; gap: 3px; }
}
