/* Blue Sky Storefront 2026 — scoped commerce design system */
:root {
  /* Storefront palette is derived from the --bss-* engine (bss-tokens.css) so
     the shop shares one source of truth with panel, customer and visitor UIs.
     The `*-rgb` channels stay literal: rgba() needs raw components. */
  --shop-primary: var(--bss-text);
  --shop-primary-rgb: 16, 21, 31;
  --shop-accent: var(--bss-primary);
  --shop-accent-rgb: 31, 85, 189;
  --shop-accent-text: var(--bss-primary-strong);
  --shop-bg: var(--bss-bg);
  --shop-bg-soft: var(--bss-surface-muted);
  --shop-surface: var(--bss-surface);
  --shop-surface-soft: var(--bss-surface-sunken);
  --shop-text: var(--bss-text);
  --shop-text-soft: var(--bss-text-soft);
  --shop-text-muted: var(--bss-text-faint);
  --shop-border: var(--bss-border);
  --shop-border-strong: var(--bss-border-strong);
  --shop-success: var(--bss-success);
  --shop-danger: var(--bss-danger);
  --shop-radius-sm: var(--bss-radius-xs);
  --shop-radius-md: var(--bss-radius-md);
  --shop-radius-lg: var(--bss-radius-xl);
  --shop-radius-xl: var(--bss-radius-2xl);
  --shop-shadow-sm: var(--bss-shadow-sm);
  --shop-shadow-md: var(--bss-shadow-md);
  --shop-shadow-lg: var(--bss-shadow-lg);
  --shop-container: 1240px;
  --shop-ease: cubic-bezier(.22, 1, .36, 1);
}

html[data-theme="dark"] {
  --shop-primary: var(--bss-text);
  --shop-primary-rgb: 244, 246, 251;
  --shop-accent-rgb: 140, 176, 255;
  --shop-accent-text: var(--bss-primary-strong);
  --shop-bg: var(--bss-bg);
  --shop-bg-soft: var(--bss-bg-soft);
  --shop-surface: var(--bss-surface);
  --shop-surface-soft: var(--bss-surface-raised);
  --shop-text: var(--bss-text);
  --shop-text-soft: var(--bss-text-soft);
  --shop-text-muted: var(--bss-text-faint);
  --shop-border: var(--bss-border);
  --shop-border-strong: var(--bss-border-strong);
  --shop-success: var(--bss-success);
  --shop-danger: var(--bss-danger);
  --shop-shadow-sm: var(--bss-shadow-sm);
  --shop-shadow-md: var(--bss-shadow-md);
  --shop-shadow-lg: var(--bss-shadow-lg);
}

.commerce-page,
.commerce-page * { box-sizing: border-box; }

.commerce-page {
  margin: 0;
  min-width: 320px;
  overflow-x: clip;
  background: var(--shop-bg);
  color: var(--shop-text);
  font-family: "Yekan", "B Yekan", "Yekan Bakh", Tahoma, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

.commerce-page::before,
.commerce-page::after { display: none; }
.commerce-page a { color: inherit; text-decoration: none; }
.commerce-page button,
.commerce-page input,
.commerce-page select,
.commerce-page textarea { font: inherit; }
.commerce-page a,
.commerce-page button,
.commerce-page input,
.commerce-page select { touch-action: manipulation; }
.commerce-page button,
.commerce-page select { cursor: pointer; }
.commerce-page img { display: block; max-width: 100%; }
.commerce-page svg { fill: none; stroke: currentColor; stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }
.commerce-page [hidden] { display: none !important; }
.commerce-page :focus-visible { outline: 3px solid rgba(var(--shop-accent-rgb), .38); outline-offset: 3px; }
.commerce-page ::selection { background: rgba(var(--shop-accent-rgb), .2); }
.commerce-page.modal-open,
.commerce-page.drawer-open { overflow: hidden; }

.shop-container { width: min(calc(100% - 40px), var(--shop-container)); margin-inline: auto; }
.shop-visually-hidden { position: absolute !important; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0; }
.shop-skip-link { position: fixed; top: 10px; right: 10px; z-index: 3000; transform: translateY(-160%); padding: 10px 16px; border-radius: 10px; background: var(--shop-text); color: var(--shop-bg) !important; transition: transform .2s; }
.shop-skip-link:focus { transform: none; }

/* Announcement and navigation */
.shop-announcement { min-height: 44px; display: flex; align-items: center; background: #0f172a; color: #f8fafc; font-size: 12px; }
.shop-announcement .shop-container { display: flex; justify-content: space-between; align-items: center; gap: 24px; }
.shop-announcement p { margin: 0; }
.shop-announcement a { display: inline-flex; align-items: center; gap: 8px; min-height: 44px; color: #bfdbfe; font-weight: 700; }

.shop-header { position: sticky; top: 0; z-index: 900; background: color-mix(in srgb, var(--shop-bg) 88%, transparent); border-bottom: 1px solid color-mix(in srgb, var(--shop-border) 72%, transparent); backdrop-filter: blur(20px) saturate(140%); transition: box-shadow .25s, background .25s; }
.shop-header.is-scrolled { box-shadow: 0 12px 35px rgba(15, 23, 42, .08); }
.shop-header-row { min-height: 78px; display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 42px; }
.shop-brand { display: inline-flex; align-items: center; gap: 12px; min-height: 52px; }
.shop-brand img { width: 42px; height: 42px; border-radius: 14px; object-fit: cover; background: #0f1720; box-shadow: 0 6px 20px rgba(15, 23, 42, .12); }
.shop-brand span { display: grid; line-height: 1.2; direction: ltr; text-align: left; }
.shop-brand strong { font: 800 13px/1.2 "Manrope", sans-serif; letter-spacing: .08em; }
.shop-brand small { margin-top: 4px; color: var(--shop-text-muted); font: 700 8px/1 "Manrope", sans-serif; letter-spacing: .12em; }
.shop-nav { display: flex; justify-content: center; align-items: center; gap: 30px; }
.shop-nav a,
.shop-nav button { position: relative; display: inline-flex; align-items: center; min-height: 44px; padding: 0; border: 0; background: transparent; color: var(--shop-text-soft); font-size: 13px; font-weight: 700; transition: color .2s; }
.shop-nav a::after,
.shop-nav button::after { content: ""; position: absolute; right: 50%; bottom: 4px; left: 50%; height: 2px; background: var(--shop-accent); transition: right .22s var(--shop-ease), left .22s var(--shop-ease); }
.shop-nav a:hover,
.shop-nav button:hover,
.shop-nav .active { color: var(--shop-text); }
.shop-nav a:hover::after,
.shop-nav button:hover::after,
.shop-nav .active::after { right: 0; left: 0; }
.shop-header-actions { display: flex; align-items: center; gap: 8px; }
.shop-account-link { display: inline-flex; align-items: center; justify-content: center; min-height: 44px; padding: 0 15px; border-left: 1px solid var(--shop-border); color: var(--shop-text-soft); font-size: 12px; font-weight: 800; white-space: nowrap; transition: color .2s; }
.shop-account-link:hover { color: var(--shop-accent-text); }
.shop-icon-button { position: relative; width: 44px; height: 44px; display: grid; place-items: center; padding: 0; border: 1px solid transparent; border-radius: 50%; background: transparent; color: var(--shop-text); transition: background .2s, border-color .2s, transform .2s; }
.shop-icon-button:hover { background: var(--shop-surface); border-color: var(--shop-border); transform: translateY(-2px); }
.shop-icon-button svg { width: 20px; height: 20px; }
.shop-cart-button > span { position: absolute; top: -1px; right: -1px; min-width: 19px; height: 19px; display: grid; place-items: center; padding: 0 4px; border: 2px solid var(--shop-bg); border-radius: 20px; background: var(--shop-accent); color: #fff; font-size: 9px; font-weight: 900; }
.shop-mobile-menu { display: none; }
.shop-theme-slot .theme-trigger { width: 44px; height: 44px; min-width: 44px; border-color: transparent; border-radius: 50%; background: transparent; box-shadow: none; }
.shop-theme-slot .theme-trigger:hover { background: var(--shop-surface); border-color: var(--shop-border); box-shadow: none; }

/* Buttons and shared headings */
.shop-button { min-height: 50px; display: inline-flex; align-items: center; justify-content: center; gap: 10px; padding: 0 22px; border: 1px solid var(--shop-border); border-radius: 999px; background: var(--shop-surface); color: var(--shop-text); font-size: 13px; font-weight: 800; transition: background .22s, color .22s, border-color .22s, transform .22s, box-shadow .22s; }
.shop-button:hover { transform: translateY(-2px); border-color: var(--shop-border-strong); box-shadow: var(--shop-shadow-sm); }
.shop-button svg { width: 18px; height: 18px; }
.shop-button:disabled { opacity: .45; cursor: not-allowed; transform: none; box-shadow: none; }
.shop-button-primary { border-color: transparent; background: linear-gradient(135deg, var(--bss-primary) 0%, var(--bss-accent) 100%); color: #fff !important; box-shadow: var(--bss-shadow-primary); }
.shop-button-primary:hover { background: linear-gradient(135deg, var(--bss-primary-hover) 0%, var(--bss-accent-hover) 100%); border-color: transparent; box-shadow: var(--bss-shadow-xl); }
.shop-button-ghost { background: transparent; }
.shop-button-light { border-color: #fff; background: #fff; color: #0f172a; }
.shop-text-link { display: inline-flex; align-items: center; gap: 10px; min-height: 44px; color: var(--shop-accent-text); font-weight: 800; }
.shop-overline,
.shop-section-heading > div > span { color: var(--shop-accent-text); font: 800 11px/1 "Manrope", sans-serif; letter-spacing: .16em; }
.shop-section { padding: 96px 0; }
.shop-section-heading { display: grid; grid-template-columns: minmax(0, 1fr) minmax(280px, 450px) auto; align-items: end; gap: 40px; margin-bottom: 36px; }
.shop-section-heading h2 { margin: 10px 0 0; font-size: clamp(28px, 3vw, 44px); line-height: 1.3; letter-spacing: -.04em; }
.shop-section-heading p { margin: 0; color: var(--shop-text-soft); font-size: 14px; line-height: 2; }
.shop-section-heading > a { min-height: 44px; display: inline-flex; align-items: center; gap: 8px; color: var(--shop-accent-text); font-size: 13px; font-weight: 800; white-space: nowrap; }
.shop-section-heading-centered { grid-template-columns: 1fr; justify-items: center; text-align: center; }
.shop-section-heading-centered p { max-width: 570px; }

/* Home hero */
.shop-hero { position: relative; min-height: 720px; display: flex; align-items: center; overflow: hidden; background: radial-gradient(circle at 18% 18%, rgba(var(--shop-accent-rgb), .09), transparent 27%), linear-gradient(180deg, var(--shop-bg), var(--shop-bg-soft)); }
.shop-hero::before { content: ""; position: absolute; inset: 0; opacity: .32; pointer-events: none; background-image: linear-gradient(rgba(var(--shop-primary-rgb), .035) 1px, transparent 1px), linear-gradient(90deg, rgba(var(--shop-primary-rgb), .035) 1px, transparent 1px); background-size: 54px 54px; mask-image: linear-gradient(to left, #000, transparent 72%); }
.shop-hero-grid { position: relative; z-index: 1; display: grid; grid-template-columns: minmax(0, 1fr) minmax(460px, .9fr); align-items: center; gap: 65px; padding-block: 72px 84px; }
.shop-hero-copy { max-width: 650px; }
.shop-kicker { display: inline-flex; align-items: center; gap: 10px; color: var(--shop-accent-text); font-size: 11px; font-weight: 900; letter-spacing: .08em; }
.shop-kicker span { width: 32px; height: 1px; background: currentColor; }
.shop-hero-copy h1 { max-width: 630px; margin: 22px 0; font-size: clamp(46px, 5.3vw, 78px); line-height: 1.15; letter-spacing: -.055em; }
.shop-hero-copy > p { max-width: 600px; margin: 0; color: var(--shop-text-soft); font-size: 17px; line-height: 2.05; }
.shop-hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 34px; }
.shop-hero-facts { display: flex; gap: 0; margin: 42px 0 0; padding-top: 26px; border-top: 1px solid var(--shop-border); }
.shop-hero-facts div { min-width: 135px; padding-left: 28px; margin-left: 28px; border-left: 1px solid var(--shop-border); }
.shop-hero-facts div:last-child { margin: 0; padding: 0; border: 0; }
.shop-hero-facts dt { font: 800 21px/1.2 "Manrope", "Vazirmatn", sans-serif; }
.shop-hero-facts dd { margin: 6px 0 0; color: var(--shop-text-muted); font-size: 11px; }
.shop-hero-stage { position: relative; min-height: 550px; display: grid; place-items: center; isolation: isolate; direction: ltr; }
.shop-hero-stage::before { content: ""; position: absolute; width: 430px; height: 430px; border-radius: 50%; background: radial-gradient(circle, rgba(var(--shop-accent-rgb), .18), rgba(var(--shop-accent-rgb), .04) 45%, transparent 70%); filter: blur(2px); z-index: -2; }
.shop-hero-orbit { position: absolute; width: 430px; height: 430px; border: 1px solid rgba(var(--shop-primary-rgb), .12); border-radius: 50%; z-index: -1; }
.shop-hero-orbit::before,
.shop-hero-orbit::after { content: ""; position: absolute; width: 10px; height: 10px; border-radius: 50%; background: var(--shop-accent); box-shadow: 0 0 24px rgba(var(--shop-accent-rgb), .55); }
.shop-hero-orbit::before { top: 48px; left: 58px; }
.shop-hero-orbit::after { right: 15px; bottom: 130px; }
.shop-hero-product-card { position: relative; width: 340px; min-height: 480px; display: flex; flex-direction: column; justify-content: flex-end; padding: 24px; border: 1px solid rgba(var(--shop-primary-rgb), .1); border-radius: 170px 170px 28px 28px; background: linear-gradient(145deg, color-mix(in srgb, var(--shop-surface) 88%, transparent), color-mix(in srgb, var(--shop-bg-soft) 85%, transparent)); box-shadow: var(--shop-shadow-lg), inset 0 1px 0 rgba(255, 255, 255, .6); overflow: hidden; backdrop-filter: blur(18px); }
.shop-product-badge { position: absolute; top: 24px; left: 50%; transform: translateX(-50%); z-index: 2; padding: 7px 13px; border-radius: 30px; background: var(--shop-text); color: var(--shop-bg); font-size: 9px; font-weight: 900; white-space: nowrap; }
.shop-bottle-scene { position: relative; min-height: 240px; display: grid; place-items: center; overflow: hidden; background: radial-gradient(circle at 50% 45%, rgba(var(--shop-accent-rgb), .13), transparent 47%); }
.shop-bottle-scene-large { min-height: 350px; }
.shop-bottle-shadow { position: absolute; bottom: 24px; width: 145px; height: 24px; border-radius: 50%; background: rgba(15, 23, 42, .22); filter: blur(13px); }
.shop-bottle { position: relative; z-index: 1; width: 112px; height: 190px; display: flex; flex-direction: column; align-items: center; justify-content: center; border: 1px solid rgba(255, 255, 255, .68); border-radius: 17px 17px 27px 27px; background: linear-gradient(140deg, rgba(255, 255, 255, .92), rgba(191, 219, 254, .58) 47%, rgba(var(--shop-accent-rgb), .24)); box-shadow: inset -14px -10px 32px rgba(var(--shop-accent-rgb), .14), inset 8px 8px 20px rgba(255, 255, 255, .65), 0 24px 45px rgba(15, 23, 42, .2); color: #0f172a; font-family: "Manrope", sans-serif; transform: perspective(600px) rotateY(-6deg); transition: transform .5s var(--shop-ease); }
.shop-bottle::before { content: ""; position: absolute; top: -42px; width: 58px; height: 45px; border-radius: 9px 9px 5px 5px; background: linear-gradient(90deg, #0f172a, #475569 48%, #0f172a); box-shadow: 0 7px 12px rgba(0, 0, 0, .2); }
.shop-bottle::after { content: ""; position: absolute; top: -6px; width: 45px; height: 13px; border-radius: 3px; background: #94a3b8; }
.shop-bottle i { position: absolute; inset: 25px 15px 20px; border: 1px solid rgba(15, 23, 42, .23); border-radius: 999px 999px 10px 10px; }
.shop-bottle b { position: relative; font-size: 17px; line-height: 1; text-align: center; letter-spacing: .14em; }
.shop-bottle small { position: relative; margin-top: 8px; font-size: 6px; letter-spacing: .2em; }
.shop-hero-product-card:hover .shop-bottle { transform: perspective(600px) rotateY(6deg) translateY(-7px); }
.shop-hero-product-card .shop-bottle { width: 132px; height: 225px; }
.shop-hero-product-meta { position: relative; z-index: 2; padding: 15px 6px 0; border-top: 1px solid rgba(var(--shop-primary-rgb), .09); direction: rtl; text-align: right; }
.shop-hero-product-meta span { color: var(--shop-accent-text); font-size: 9px; font-weight: 900; }
.shop-hero-product-meta h2 { margin: 4px 0 0; direction: ltr; text-align: left; font: 700 24px/1.25 "Playfair Display", serif; }
.shop-hero-product-meta p { margin: 2px 0 0; color: var(--shop-text-muted); font-size: 10px; }
.shop-floating-note { position: absolute; z-index: 3; min-width: 150px; padding: 13px 16px; border: 1px solid rgba(var(--shop-primary-rgb), .1); border-radius: 14px; background: color-mix(in srgb, var(--shop-surface) 82%, transparent); box-shadow: var(--shop-shadow-sm); backdrop-filter: blur(14px); }
.shop-floating-note small { display: block; color: var(--shop-text-muted); font: 800 7px/1 "Manrope", sans-serif; letter-spacing: .18em; }
.shop-floating-note strong { display: block; margin-top: 6px; font: 800 10px/1 "Manrope", sans-serif; letter-spacing: .07em; }
.shop-floating-note-top { top: 105px; right: -5px; }
.shop-floating-note-base { bottom: 110px; left: -18px; }

/* Trust and categories */
.shop-trust-bar { position: relative; z-index: 4; border-block: 1px solid var(--shop-border); background: var(--shop-surface); }
.shop-trust-grid { min-height: 106px; display: grid; grid-template-columns: repeat(4, 1fr); }
.shop-trust-grid article { display: grid; grid-template-columns: 45px 1fr; align-items: center; gap: 13px; padding: 22px 28px; border-left: 1px solid var(--shop-border); }
.shop-trust-grid article:last-child { border-left: 0; }
.shop-trust-grid svg { width: 27px; height: 27px; color: var(--shop-accent-text); }
.shop-trust-grid b,
.shop-trust-grid span { display: block; }
.shop-trust-grid b { font-size: 12px; }
.shop-trust-grid span { margin-top: 3px; color: var(--shop-text-muted); font-size: 10px; }
.shop-category-grid { display: grid; grid-template-columns: 1.25fr .75fr .75fr; grid-template-rows: repeat(2, 230px); gap: 16px; }
.shop-category-card { position: relative; display: flex; flex-direction: column; justify-content: flex-end; min-height: 230px; padding: 28px; border: 1px solid var(--shop-border); border-radius: var(--shop-radius-lg); overflow: hidden; isolation: isolate; background: var(--category-color, #dbeafe); color: #0f172a; box-shadow: inset 0 1px 0 rgba(255, 255, 255, .45); transition: transform .28s var(--shop-ease), box-shadow .28s, border-color .28s; }
.shop-category-card:first-child { grid-row: 1 / 3; }
.shop-category-card::before { content: ""; position: absolute; width: 270px; height: 270px; top: -80px; left: -60px; border: 1px solid rgba(15, 23, 42, .14); border-radius: 50%; box-shadow: 0 0 0 32px rgba(255, 255, 255, .08), 0 0 0 65px rgba(15, 23, 42, .035); z-index: -1; transition: transform .5s var(--shop-ease); }
.shop-category-card::after { content: attr(data-letter); position: absolute; top: 18px; left: 24px; color: rgba(15, 23, 42, .09); font: 700 120px/1 "Playfair Display", serif; z-index: -1; }
.shop-category-card:hover { transform: translateY(-5px); border-color: rgba(15, 23, 42, .25); box-shadow: var(--shop-shadow-md); }
.shop-category-card:hover::before { transform: scale(1.08) rotate(10deg); }
.shop-category-card small { font-size: 10px; font-weight: 800; letter-spacing: .1em; }
.shop-category-card h3 { max-width: 340px; margin: 6px 0; font-size: 25px; line-height: 1.4; }
.shop-category-card p { max-width: 400px; margin: 0; color: rgba(15, 23, 42, .68); font-size: 11px; line-height: 1.8; }
.shop-category-card .shop-category-arrow { position: absolute; left: 22px; bottom: 22px; width: 44px; height: 44px; display: grid; place-items: center; border: 1px solid rgba(15, 23, 42, .2); border-radius: 50%; background: rgba(255, 255, 255, .24); }
.shop-category-image { position: absolute; inset: 0; z-index: -2; width: 100%; height: 100%; object-fit: cover; opacity: .45; transition: transform .55s var(--shop-ease), opacity .3s; }
.shop-category-card.has-image::after { color: rgba(255, 255, 255, .18); }
.shop-category-card.has-image:hover .shop-category-image { transform: scale(1.045); opacity: .54; }
.shop-category-arrow svg { width: 18px; }

/* Product cards */
.shop-featured-section { background: var(--shop-bg-soft); }
.shop-product-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 18px; }
.shop-product-card { position: relative; min-width: 0; border: 1px solid var(--shop-border); border-radius: var(--shop-radius-md); background: var(--shop-surface); overflow: hidden; transition: transform .28s var(--shop-ease), box-shadow .28s, border-color .28s; }
.shop-product-card:hover { transform: translateY(-6px); border-color: var(--shop-border-strong); box-shadow: var(--shop-shadow-md); }
.shop-product-media { position: relative; min-height: 310px; display: block; overflow: hidden; background: radial-gradient(circle at 50% 40%, rgba(var(--shop-accent-rgb), .15), transparent 43%), linear-gradient(145deg, var(--shop-surface-soft), var(--shop-bg-soft)); }
.shop-product-card[data-tone="1"] .shop-product-media { background: radial-gradient(circle at 50% 40%, rgba(157, 93, 106, .2), transparent 43%), linear-gradient(145deg, #f4eeed, #e7dad9); }
.shop-product-card[data-tone="2"] .shop-product-media { background: radial-gradient(circle at 50% 40%, rgba(75, 96, 112, .19), transparent 43%), linear-gradient(145deg, #ecf0f0, #d7dedd); }
html[data-theme="dark"] .shop-product-card[data-tone="1"] .shop-product-media { background: radial-gradient(circle at 50% 40%, rgba(157, 93, 106, .2), transparent 43%), #21191a; }
html[data-theme="dark"] .shop-product-card[data-tone="2"] .shop-product-media { background: radial-gradient(circle at 50% 40%, rgba(75, 96, 112, .25), transparent 43%), #172023; }
.shop-product-media > img { width: 100%; height: 310px; object-fit: cover; transition: transform .5s var(--shop-ease); }
.shop-product-card:hover .shop-product-media > img { transform: scale(1.035); }
.shop-product-media .shop-bottle-scene { min-height: 310px; }
.shop-product-labels { position: absolute; top: 14px; right: 14px; z-index: 3; display: flex; flex-direction: column; align-items: flex-start; gap: 6px; }
.shop-product-label { padding: 6px 10px; border-radius: 30px; background: #0f172a; color: #fff; font-size: 9px; font-weight: 900; }
.shop-product-label.sale { background: var(--shop-accent); }
.shop-favorite-button { position: absolute; top: 12px; left: 12px; z-index: 3; width: 44px; height: 44px; display: grid; place-items: center; padding: 0; border: 1px solid rgba(15, 23, 42, .1); border-radius: 50%; background: rgba(255, 255, 255, .72); color: #0f172a; backdrop-filter: blur(10px); transition: background .2s, color .2s, transform .2s; }
.shop-favorite-button:hover { transform: translateY(-2px); }
.shop-favorite-button.active { background: #0f172a; color: #fff; }
.shop-favorite-button.active svg { fill: currentColor; }
.shop-favorite-button svg { width: 18px; height: 18px; }
.shop-product-info { padding: 19px; }
.shop-product-category { display: flex; align-items: center; justify-content: space-between; gap: 10px; color: var(--shop-text-muted); font-size: 9px; font-weight: 800; }
.shop-product-category span:last-child { direction: ltr; font-family: "Manrope", sans-serif; }
.shop-product-info h3 { margin: 7px 0 5px; direction: ltr; text-align: left; font: 700 21px/1.3 "Playfair Display", serif; }
.shop-product-summary { min-height: 42px; margin: 0; color: var(--shop-text-soft); font-size: 11px; line-height: 1.8; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.shop-product-notes { display: flex; flex-wrap: wrap; gap: 5px; min-height: 27px; margin-top: 12px; }
.shop-product-notes span { padding: 5px 8px; border: 1px solid var(--shop-border); border-radius: 20px; color: var(--shop-text-muted); font-size: 8px; }
.shop-product-bottom { display: flex; align-items: center; justify-content: space-between; gap: 10px; margin-top: 16px; padding-top: 15px; border-top: 1px solid var(--shop-border); }
.shop-product-price { display: flex; align-items: baseline; gap: 5px; white-space: nowrap; }
.shop-product-price strong { font: 800 17px/1 "Vazirmatn", sans-serif; }
.shop-product-price small { color: var(--shop-text-muted); font-size: 9px; }
.shop-product-add { width: 44px; height: 44px; display: grid; place-items: center; padding: 0; border: 1px solid var(--shop-text); border-radius: 50%; background: var(--shop-text); color: var(--shop-bg); transition: transform .2s, background .2s; }
.shop-product-add:hover { transform: translateY(-2px) rotate(-4deg); background: var(--shop-accent); border-color: var(--shop-accent); color: #fff; }
.shop-product-add:disabled { opacity: .42; cursor: not-allowed; transform: none; }
.shop-product-add svg { width: 18px; height: 18px; }
.shop-stock-dot { display: inline-flex; align-items: center; gap: 5px; }
.shop-stock-dot::before { content: ""; width: 6px; height: 6px; border-radius: 50%; background: var(--shop-success); box-shadow: 0 0 0 4px color-mix(in srgb, var(--shop-success) 12%, transparent); }
.shop-stock-dot.out::before { background: var(--shop-danger); box-shadow: none; }

/* Discovery and story */
.shop-discovery-section { padding-top: 110px; }
.shop-discovery-grid { display: grid; grid-template-columns: 1.35fr .65fr; grid-template-rows: repeat(2, 260px); gap: 16px; }
.shop-discovery-main { position: relative; grid-row: 1 / 3; padding: 64px; border-radius: var(--shop-radius-xl); overflow: hidden; background: #0f172a; color: #f8fafc; isolation: isolate; }
.shop-discovery-main .shop-kicker { color: #93c5fd; }
.shop-discovery-main h2 { max-width: 600px; margin: 22px 0 16px; font-size: clamp(34px, 4vw, 58px); line-height: 1.25; }
.shop-discovery-main p { max-width: 560px; margin: 0 0 30px; color: #cbd5e1; line-height: 2; }
.shop-discovery-rings { position: absolute; left: -90px; bottom: -140px; width: 420px; height: 420px; z-index: -1; }
.shop-discovery-rings i { position: absolute; inset: 0; border: 1px solid rgba(96, 165, 250, .24); border-radius: 50%; }
.shop-discovery-rings i:nth-child(2) { inset: 55px; }
.shop-discovery-rings i:nth-child(3) { inset: 110px; background: radial-gradient(circle, rgba(59, 130, 246, .28), transparent 68%); }
.shop-discovery-card { display: flex; flex-direction: column; justify-content: center; padding: 32px; border: 1px solid var(--shop-border); border-radius: var(--shop-radius-lg); background: var(--shop-surface); }
.shop-discovery-card > span { color: var(--shop-accent-text); font-size: 10px; font-weight: 900; }
.shop-discovery-card h3 { margin: 8px 0; font-size: 23px; }
.shop-discovery-card p { margin: 0; color: var(--shop-text-soft); font-size: 11px; line-height: 1.9; }
.shop-discovery-card a { display: inline-flex; align-items: center; gap: 8px; min-height: 44px; margin-top: 14px; color: var(--shop-accent-text); font-size: 11px; font-weight: 900; }
.shop-discovery-card-accent { background: linear-gradient(145deg, #dbeafe, #eff6ff); color: #172033; }
.shop-discovery-card-accent p { color: #475569; }
.shop-note-timeline { position: relative; max-width: 1050px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 48px; margin: 60px auto 0; }
.shop-note-timeline::before { content: ""; position: absolute; top: 34px; right: 15%; left: 15%; height: 1px; background: var(--shop-border); }
.shop-note-timeline article { position: relative; text-align: center; }
.shop-note-timeline article > span { position: relative; z-index: 2; width: 68px; height: 68px; display: grid; place-items: center; margin: 0 auto 28px; border: 1px solid var(--shop-border); border-radius: 50%; background: var(--shop-bg); color: var(--shop-accent-text); font: 800 13px/1 "Manrope", sans-serif; }
.shop-note-timeline small { color: var(--shop-text-muted); font: 800 8px/1 "Manrope", sans-serif; letter-spacing: .12em; }
.shop-note-timeline h3 { margin: 10px 0 7px; font-size: 20px; }
.shop-note-timeline p { margin: 0; color: var(--shop-text-soft); font-size: 11px; line-height: 1.9; }
.shop-story-grid { display: grid; grid-template-columns: minmax(380px, .82fr) minmax(0, 1.18fr); align-items: center; gap: 80px; }
.shop-story-visual { position: relative; min-height: 560px; display: flex; flex-direction: column; justify-content: flex-end; padding: 45px; border-radius: 230px 230px var(--shop-radius-lg) var(--shop-radius-lg); overflow: hidden; background: radial-gradient(circle at 50% 36%, rgba(96, 165, 250, .3), transparent 32%), linear-gradient(145deg, #0f172a, #1e3a5f); color: #eff6ff; }
.shop-story-visual::before { content: ""; position: absolute; inset: 40px; border: 1px solid rgba(147, 197, 253, .2); border-radius: inherit; }
.shop-story-visual p { position: relative; margin: 0; direction: ltr; font: 700 11px/1.7 "Manrope", sans-serif; letter-spacing: .2em; }
.shop-story-mark { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; gap: 24px; font: 600 150px/1 "Playfair Display", serif; color: rgba(191, 219, 254, .9); }
.shop-story-mark span:last-child { transform: translateY(55px); color: transparent; -webkit-text-stroke: 1px rgba(147, 197, 253, .65); }
.shop-story-copy h2 { max-width: 680px; margin: 18px 0; font-size: clamp(34px, 4vw, 56px); line-height: 1.35; letter-spacing: -.045em; }
.shop-story-copy > p { margin: 0; color: var(--shop-text-soft); line-height: 2.15; }
.shop-story-values { display: grid; gap: 0; margin: 30px 0; border-block: 1px solid var(--shop-border); }
.shop-story-values div { display: grid; grid-template-columns: 45px 1fr; align-items: center; gap: 16px; min-height: 58px; border-bottom: 1px solid var(--shop-border); }
.shop-story-values div:last-child { border: 0; }
.shop-story-values b { color: var(--shop-accent-text); font: 800 10px/1 "Manrope", sans-serif; }
.shop-story-values span { font-size: 12px; font-weight: 800; }
.shop-newsletter { padding: 30px 0 100px; }
.shop-newsletter-card { display: grid; grid-template-columns: 1fr minmax(360px, .8fr); align-items: center; gap: 70px; padding: 52px 60px; border-radius: var(--shop-radius-lg); background: var(--shop-bg-soft); border: 1px solid var(--shop-border); }
.shop-newsletter-card > div > span { color: var(--shop-accent-text); font: 800 9px/1 "Manrope", sans-serif; letter-spacing: .16em; }
.shop-newsletter h2 { margin: 10px 0 5px; font-size: 32px; }
.shop-newsletter p { margin: 0; color: var(--shop-text-soft); font-size: 12px; }
.shop-newsletter form > label { display: block; margin-bottom: 8px; font-size: 11px; font-weight: 800; }
.shop-newsletter form > div { display: grid; grid-template-columns: 1fr auto; border-bottom: 1px solid var(--shop-border-strong); }
.shop-newsletter input { min-height: 52px; padding: 0 4px; border: 0; background: transparent; color: var(--shop-text); direction: ltr; text-align: left; outline: 0; }
.shop-newsletter button { min-height: 44px; padding: 0 12px; border: 0; background: transparent; color: var(--shop-accent-text); font-size: 12px; font-weight: 900; }
.shop-newsletter form > small { display: block; margin-top: 8px; color: var(--shop-text-muted); font-size: 8px; }

/* Footer */
.shop-footer { border-top: 1px solid var(--shop-border); background: var(--shop-surface); }
.shop-footer-main { display: grid; grid-template-columns: 1.35fr repeat(3, .65fr); gap: 70px; padding: 70px 0 54px; }
.shop-footer-brand p { max-width: 360px; margin: 20px 0; color: var(--shop-text-soft); font-size: 11px; line-height: 2; }
.shop-footer-contact { display: flex; flex-wrap: wrap; gap: 8px 16px; color: var(--shop-text-muted); font-size: 10px; }
.shop-footer-col h3 { margin: 5px 0 18px; font-size: 13px; }
.shop-footer-col a,
.shop-footer-col button { min-height: 44px; display: flex; align-items: center; padding: 0; border: 0; background: transparent; color: var(--shop-text-muted); font-size: 11px; transition: color .2s, transform .2s; }
.shop-footer-col a:hover,
.shop-footer-col button:hover { color: var(--shop-accent-text); transform: translateX(-3px); }
.shop-footer-bottom { min-height: 66px; display: flex; align-items: center; justify-content: space-between; gap: 30px; border-top: 1px solid var(--shop-border); color: var(--shop-text-muted); font-size: 9px; }
.shop-footer-bottom div { display: flex; gap: 18px; }

/* Catalog */
.shop-catalog-hero { padding: 60px 0 50px; border-bottom: 1px solid var(--shop-border); background: radial-gradient(circle at 85% 0, rgba(var(--shop-accent-rgb), .09), transparent 28%), var(--shop-bg-soft); }
.shop-breadcrumb { display: flex; align-items: center; gap: 9px; margin-bottom: 30px; color: var(--shop-text-muted); font-size: 10px; }
.shop-breadcrumb a { min-height: 44px; display: inline-flex; align-items: center; }
.shop-breadcrumb strong { color: var(--shop-text); }
.shop-catalog-hero h1 { margin: 10px 0; font-size: clamp(38px, 5vw, 64px); line-height: 1.2; }
.shop-catalog-hero p { max-width: 620px; margin: 0; color: var(--shop-text-soft); line-height: 2; }
.shop-catalog-section { padding: 30px 0 100px; }
.shop-category-chips { display: flex; gap: 8px; padding-bottom: 25px; overflow-x: auto; scrollbar-width: thin; }
.shop-category-chips button { flex: 0 0 auto; min-height: 44px; padding: 0 17px; border: 1px solid var(--shop-border); border-radius: 30px; background: var(--shop-surface); color: var(--shop-text-soft); font-size: 11px; font-weight: 800; transition: background .2s, color .2s, border-color .2s; }
.shop-category-chips button:hover,
.shop-category-chips button.active { border-color: var(--shop-text); background: var(--shop-text); color: var(--shop-bg); }
.shop-catalog-toolbar { min-height: 76px; display: flex; align-items: center; justify-content: space-between; gap: 25px; margin-bottom: 26px; border-block: 1px solid var(--shop-border); }
.shop-catalog-toolbar > div:first-child strong,
.shop-catalog-toolbar > div:first-child span { display: block; }
.shop-catalog-toolbar > div:first-child strong { font-size: 13px; }
.shop-catalog-toolbar > div:first-child span { color: var(--shop-text-muted); font-size: 9px; }
.shop-catalog-tools { display: flex; align-items: center; gap: 8px; }
.shop-catalog-search { min-width: 280px; min-height: 44px; display: flex; align-items: center; gap: 8px; padding: 0 13px; border: 1px solid var(--shop-border); border-radius: 30px; background: var(--shop-surface); }
.shop-catalog-search svg { width: 17px; height: 17px; color: var(--shop-text-muted); }
.shop-catalog-search input { width: 100%; border: 0; outline: 0; background: transparent; color: var(--shop-text); font-size: 11px; }
.shop-sort select { min-height: 44px; padding: 0 14px; border: 1px solid var(--shop-border); border-radius: 30px; background: var(--shop-surface); color: var(--shop-text); font-size: 11px; outline: 0; }
.shop-filter-toggle { display: none; min-height: 44px; padding-inline: 16px; }
.shop-catalog-layout { display: grid; grid-template-columns: 230px minmax(0, 1fr); gap: 34px; align-items: start; }
.shop-filter-panel { position: sticky; top: 105px; padding: 0 0 20px; }
.shop-filter-panel > header { min-height: 54px; display: flex; justify-content: space-between; align-items: center; border-bottom: 1px solid var(--shop-border); }
.shop-filter-panel h2 { margin: 0; font-size: 16px; }
.shop-filter-panel > header button { min-height: 44px; padding: 0; border: 0; background: transparent; color: var(--shop-accent-text); font-size: 9px; font-weight: 800; }
.shop-filter-panel fieldset { margin: 0; padding: 20px 0; border: 0; border-bottom: 1px solid var(--shop-border); }
.shop-filter-panel legend { margin-bottom: 13px; font-size: 12px; font-weight: 900; }
.shop-filter-panel fieldset > div { display: grid; gap: 8px; }
.shop-check { min-height: 44px; display: flex; align-items: center; gap: 9px; color: var(--shop-text-soft); font-size: 11px; cursor: pointer; }
.shop-check input { position: absolute; opacity: 0; }
.shop-check span { width: 18px; height: 18px; display: grid; place-items: center; border: 1px solid var(--shop-border-strong); border-radius: 5px; background: var(--shop-surface); }
.shop-check input:checked + span { border-color: var(--shop-accent); background: var(--shop-accent); box-shadow: inset 0 0 0 4px var(--shop-surface); }
.shop-price-fields { grid-template-columns: 1fr 1fr; }
.shop-price-fields label { color: var(--shop-text-muted); font-size: 9px; }
.shop-price-fields input { width: 100%; min-height: 44px; margin-top: 5px; padding: 0 9px; border: 1px solid var(--shop-border); border-radius: 9px; background: var(--shop-surface); color: var(--shop-text); font-size: 10px; }
.shop-note-filter { display: flex !important; flex-direction: row; flex-wrap: wrap; gap: 6px !important; }
.shop-note-filter button { min-height: 44px; padding: 0 10px; border: 1px solid var(--shop-border); border-radius: 22px; background: var(--shop-surface); color: var(--shop-text-soft); font-size: 9px; }
.shop-note-filter button.active { border-color: var(--shop-accent); background: rgba(var(--shop-accent-rgb), .1); color: var(--shop-accent-text); }
.shop-catalog-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.shop-active-filters { display: flex; flex-wrap: wrap; gap: 7px; min-height: 0; margin-bottom: 14px; }
.shop-active-filters:empty { display: none; }
.shop-active-filters button { min-height: 44px; display: inline-flex; align-items: center; gap: 7px; padding: 0 11px; border: 1px solid rgba(var(--shop-accent-rgb), .24); border-radius: 22px; background: rgba(var(--shop-accent-rgb), .07); color: var(--shop-accent-text); font-size: 9px; }
.shop-empty-state { min-height: 420px; display: flex; flex-direction: column; align-items: center; justify-content: center; padding: 40px; border: 1px dashed var(--shop-border-strong); border-radius: var(--shop-radius-lg); text-align: center; }
.shop-empty-state svg { width: 48px; height: 48px; color: var(--shop-text-muted); }
.shop-empty-state h2 { margin: 20px 0 5px; font-size: 22px; }
.shop-empty-state p { margin: 0 0 22px; color: var(--shop-text-muted); font-size: 12px; }

/* Product detail */
.shop-product-page { min-height: 650px; padding: 42px 0 90px; }
.shop-product-loading { min-height: 480px; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 14px; color: var(--shop-text-muted); font-size: 12px; }
.shop-product-loading i { width: 35px; height: 35px; border: 2px solid var(--shop-border); border-top-color: var(--shop-accent); border-radius: 50%; animation: shopRotate 1s linear infinite; }
.shop-product-detail { display: grid; grid-template-columns: minmax(430px, 1fr) minmax(0, .95fr); gap: 70px; align-items: start; }
.shop-product-gallery { position: sticky; top: 110px; }
.shop-product-main-media { position: relative; min-height: 600px; display: grid; place-items: center; border: 1px solid var(--shop-border); border-radius: var(--shop-radius-lg); overflow: hidden; background: radial-gradient(circle at 50% 42%, rgba(var(--shop-accent-rgb), .16), transparent 37%), linear-gradient(145deg, var(--shop-surface-soft), var(--shop-bg-soft)); }
.shop-product-main-media > img { width: 100%; height: 600px; object-fit: cover; }
.shop-product-main-media .shop-bottle { width: 175px; height: 290px; }
.shop-product-main-media .shop-bottle::before { top: -55px; width: 76px; height: 58px; }
.shop-product-main-media .shop-bottle::after { top: -8px; width: 60px; height: 17px; }
.shop-product-main-media .shop-bottle b { font-size: 23px; }
.shop-product-main-media .shop-bottle-shadow { width: 220px; bottom: 75px; }
.shop-product-gallery-caption { display: flex; align-items: center; justify-content: center; gap: 8px; margin-top: 13px; color: var(--shop-text-muted); font-size: 9px; }
.shop-product-gallery-caption svg { width: 15px; height: 15px; }
.shop-product-summary-panel { padding-top: 16px; }
.shop-product-summary-panel .shop-breadcrumb { margin-bottom: 23px; }
.shop-detail-label { display: inline-flex; min-height: 28px; align-items: center; padding: 0 10px; border-radius: 20px; background: var(--shop-text); color: var(--shop-bg); font-size: 8px; font-weight: 900; }
.shop-product-summary-panel h1 { margin: 15px 0 6px; direction: ltr; text-align: left; font: 700 clamp(40px, 4.5vw, 63px)/1.1 "Playfair Display", serif; }
.shop-product-submeta { display: flex; flex-wrap: wrap; gap: 8px 18px; color: var(--shop-text-muted); font-size: 10px; }
.shop-product-submeta span { display: inline-flex; align-items: center; gap: 7px; }
.shop-detail-description { margin: 25px 0; color: var(--shop-text-soft); font-size: 14px; line-height: 2.15; }
.shop-detail-note-pyramid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; margin: 22px 0; }
.shop-detail-note-pyramid div { padding: 15px 12px; border: 1px solid var(--shop-border); border-radius: 14px; background: var(--shop-surface-soft); }
.shop-detail-note-pyramid small,
.shop-detail-note-pyramid strong { display: block; }
.shop-detail-note-pyramid small { color: var(--shop-accent-text); font: 800 7px/1 "Manrope", sans-serif; letter-spacing: .12em; }
.shop-detail-note-pyramid strong { margin-top: 8px; font-size: 10px; line-height: 1.7; }
.shop-detail-purchase { margin-top: 28px; padding: 22px; border: 1px solid var(--shop-border); border-radius: var(--shop-radius-md); background: var(--shop-surface); box-shadow: var(--shop-shadow-sm); }
.shop-detail-price-row { display: flex; justify-content: space-between; align-items: center; gap: 20px; }
.shop-detail-price-row .shop-product-price strong { font-size: 26px; }
.shop-detail-price-row > span { font-size: 10px; }
.shop-detail-actions { display: grid; grid-template-columns: 115px 1fr 50px; gap: 9px; margin-top: 18px; }
.shop-quantity { display: grid; grid-template-columns: 44px 1fr 44px; align-items: center; border: 1px solid var(--shop-border); border-radius: 999px; overflow: hidden; }
.shop-quantity button { min-height: 44px; }
.shop-quantity button { height: 48px; border: 0; background: transparent; color: var(--shop-text); font-size: 18px; }
.shop-quantity output { text-align: center; font-size: 12px; font-weight: 900; }
.shop-detail-actions .shop-button { width: 100%; }
.shop-detail-favorite { width: 50px; height: 50px; display: grid; place-items: center; border: 1px solid var(--shop-border); border-radius: 50%; background: var(--shop-surface); color: var(--shop-text); }
.shop-detail-favorite.active { background: var(--shop-text); color: var(--shop-bg); }
.shop-detail-favorite.active svg { fill: currentColor; }
.shop-detail-favorite svg { width: 19px; height: 19px; }
.shop-detail-benefits { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; margin-top: 16px; }
.shop-detail-benefits div { display: flex; align-items: center; gap: 7px; color: var(--shop-text-muted); font-size: 8px; }
.shop-detail-benefits svg { width: 16px; height: 16px; color: var(--shop-accent-text); }
.shop-product-information { grid-column: 1 / -1; margin-top: 25px; }
.shop-product-tabs { display: flex; gap: 32px; border-bottom: 1px solid var(--shop-border); overflow-x: auto; }
.shop-product-tabs button { flex: 0 0 auto; min-height: 54px; padding: 0; border: 0; border-bottom: 2px solid transparent; background: transparent; color: var(--shop-text-muted); font-size: 12px; font-weight: 800; }
.shop-product-tabs button.active { border-bottom-color: var(--shop-accent); color: var(--shop-text); }
.shop-tab-panel { padding: 32px 0; }
.shop-tab-panel > p { max-width: 900px; margin: 0; color: var(--shop-text-soft); line-height: 2.2; white-space: pre-line; }
.shop-spec-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 0 50px; }
.shop-spec-row { min-height: 55px; display: flex; align-items: center; justify-content: space-between; gap: 25px; border-bottom: 1px solid var(--shop-border); font-size: 11px; }
.shop-spec-row span { color: var(--shop-text-muted); }
.shop-spec-row strong { text-align: left; }
.shop-scent-architecture { display: grid; grid-template-columns: repeat(3, 1fr); gap: 15px; }
.shop-scent-architecture article { padding: 27px; border: 1px solid var(--shop-border); border-radius: var(--shop-radius-md); background: var(--shop-surface-soft); }
.shop-scent-architecture small { color: var(--shop-accent-text); font: 800 8px/1 "Manrope", sans-serif; letter-spacing: .12em; }
.shop-scent-architecture h3 { margin: 12px 0 8px; font-size: 18px; }
.shop-scent-architecture p { margin: 0; color: var(--shop-text-soft); font-size: 11px; line-height: 1.9; }
.shop-shipping-panel { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.shop-shipping-panel article { padding: 22px; border: 1px solid var(--shop-border); border-radius: var(--shop-radius-md); }
.shop-shipping-panel svg { width: 26px; height: 26px; color: var(--shop-accent-text); }
.shop-shipping-panel h3 { margin: 12px 0 5px; font-size: 14px; }
.shop-shipping-panel p { margin: 0; color: var(--shop-text-soft); font-size: 10px; line-height: 1.9; }
.shop-related-section { padding-top: 20px; background: var(--shop-bg-soft); }
.shop-mobile-buybar { display: none; }

/* Content page */
.shop-content-page { min-height: 60vh; padding: 70px 0 110px; }
.shop-content-article { max-width: 900px; margin: auto; }
.shop-content-article .shop-breadcrumb { margin-bottom: 35px; }
.shop-content-article header { padding-bottom: 30px; border-bottom: 1px solid var(--shop-border); }
.shop-content-article h1 { margin: 10px 0; font-size: clamp(38px, 5vw, 64px); }
.shop-content-body { padding-top: 35px; color: var(--shop-text-soft); line-height: 2.25; white-space: pre-line; }

/* Overlay, cart, modals and forms */
.shop-overlay { position: fixed; inset: 0; z-index: 1100; background: rgba(12, 10, 9, .54); backdrop-filter: blur(5px); opacity: 0; transition: opacity .25s; }
.shop-overlay.open { opacity: 1; }
.shop-cart-drawer { position: fixed; top: 0; right: 0; z-index: 1200; width: min(440px, 100%); height: 100dvh; display: grid; grid-template-rows: auto 1fr auto; background: var(--shop-surface); color: var(--shop-text); box-shadow: var(--shop-shadow-lg); transform: translateX(105%); transition: transform .35s var(--shop-ease); }
.shop-cart-drawer.open { transform: none; }
.shop-drawer-head { min-height: 88px; display: flex; justify-content: space-between; align-items: center; padding: 20px 24px; border-bottom: 1px solid var(--shop-border); }
.shop-drawer-head h2 { margin: 0; font-size: 19px; }
.shop-drawer-head p { margin: 3px 0 0; color: var(--shop-text-muted); font-size: 9px; }
.shop-close-button { width: 44px; height: 44px; display: grid; place-items: center; padding: 0; border: 1px solid var(--shop-border); border-radius: 50%; background: transparent; color: var(--shop-text); transition: background .2s, transform .2s; }
.shop-close-button:hover { background: var(--shop-bg-soft); transform: rotate(8deg); }
.shop-close-button svg { width: 19px; height: 19px; }
.shop-cart-items { padding: 17px 22px; overflow-y: auto; overscroll-behavior: contain; }
.shop-cart-item { display: grid; grid-template-columns: 82px 1fr auto; gap: 13px; align-items: center; padding: 12px 0; border-bottom: 1px solid var(--shop-border); }
.shop-cart-thumb { width: 82px; height: 92px; display: grid; place-items: center; border-radius: 13px; overflow: hidden; background: var(--shop-bg-soft); }
.shop-cart-thumb img { width: 100%; height: 100%; object-fit: cover; }
.shop-cart-mini-bottle { position: relative; width: 30px; height: 48px; border-radius: 5px 5px 8px 8px; background: linear-gradient(145deg, #fff, #bfdbfe); box-shadow: 0 8px 15px rgba(15, 23, 42, .2); }
.shop-cart-mini-bottle::before { content: ""; position: absolute; top: -12px; right: 8px; width: 14px; height: 13px; border-radius: 3px; background: #1e293b; }
.shop-cart-item h3 { margin: 0; direction: ltr; text-align: left; font: 700 16px/1.3 "Playfair Display", serif; }
.shop-cart-item p { margin: 4px 0; color: var(--shop-text-muted); font-size: 9px; }
.shop-cart-qty { display: inline-grid; grid-template-columns: 44px 32px 44px; align-items: center; border: 1px solid var(--shop-border); border-radius: 30px; }
.shop-cart-qty button { height: 44px; border: 0; background: transparent; color: var(--shop-text); }
.shop-cart-qty span { text-align: center; font-size: 10px; }
.shop-cart-remove { width: 44px; height: 44px; display: grid; place-items: center; padding: 0; border: 0; border-radius: 50%; background: transparent; color: var(--shop-text-muted); }
.shop-cart-remove:hover { background: color-mix(in srgb, var(--shop-danger) 10%, transparent); color: var(--shop-danger); }
.shop-cart-remove svg { width: 16px; height: 16px; }
.shop-cart-empty { min-height: 380px; display: flex; flex-direction: column; align-items: center; justify-content: center; padding: 30px; text-align: center; }
.shop-cart-empty svg { width: 55px; height: 55px; color: var(--shop-text-muted); }
.shop-cart-empty h3 { margin: 20px 0 6px; }
.shop-cart-empty p { margin: 0 0 20px; color: var(--shop-text-muted); font-size: 11px; }
.shop-cart-summary { padding: 20px 24px max(20px, env(safe-area-inset-bottom)); border-top: 1px solid var(--shop-border); background: var(--shop-surface); }
.shop-cart-summary > div { display: flex; justify-content: space-between; align-items: center; margin-bottom: 13px; }
.shop-cart-summary span { color: var(--shop-text-soft); font-size: 11px; }
.shop-cart-summary strong { font-size: 18px; }
.shop-cart-summary .shop-button { width: 100%; }
.shop-cart-summary small { display: block; margin-top: 10px; color: var(--shop-text-muted); text-align: center; font-size: 8px; }
.shop-modal-root:empty { display: none; }
.shop-modal-backdrop { position: fixed; inset: 0; z-index: 1400; display: grid; place-items: center; padding: 24px; overflow-y: auto; background: rgba(12, 10, 9, .62); backdrop-filter: blur(9px); animation: shopFade .2s both; }
.shop-modal { width: min(620px, 100%); max-height: calc(100dvh - 48px); overflow-y: auto; border: 1px solid var(--shop-border); border-radius: var(--shop-radius-lg); background: var(--shop-surface); color: var(--shop-text); box-shadow: var(--shop-shadow-lg); animation: shopModalIn .3s var(--shop-ease) both; overscroll-behavior: contain; }
.shop-modal-wide { width: min(980px, 100%); }
.shop-modal-head { position: sticky; top: 0; z-index: 2; min-height: 82px; display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 18px 24px; border-bottom: 1px solid var(--shop-border); background: color-mix(in srgb, var(--shop-surface) 94%, transparent); backdrop-filter: blur(15px); }
.shop-modal-head h2 { margin: 0; font-size: 18px; }
.shop-modal-head p { margin: 3px 0 0; color: var(--shop-text-muted); font-size: 9px; }
.shop-modal-body { padding: 25px; }
.shop-search-field { position: relative; display: flex; align-items: center; }
.shop-search-field svg { position: absolute; right: 15px; width: 20px; height: 20px; color: var(--shop-text-muted); }
.shop-search-field input { width: 100%; height: 56px; padding: 0 47px 0 15px; border: 1px solid var(--shop-border); border-radius: 14px; background: var(--shop-bg-soft); color: var(--shop-text); outline: 0; }
.shop-search-results { display: grid; gap: 7px; margin-top: 15px; }
.shop-search-result { min-height: 72px; display: grid; grid-template-columns: 55px 1fr auto; align-items: center; gap: 13px; width: 100%; padding: 8px; border: 1px solid transparent; border-radius: 13px; background: transparent; color: var(--shop-text); text-align: right; transition: background .2s, border-color .2s; }
.shop-search-result:hover { border-color: var(--shop-border); background: var(--shop-bg-soft); }
.shop-search-result > span { width: 55px; height: 55px; display: grid; place-items: center; border-radius: 10px; background: var(--shop-surface-soft); }
.shop-search-result b { display: block; direction: ltr; text-align: left; font: 700 15px/1.3 "Playfair Display", serif; }
.shop-search-result small { display: block; margin-top: 3px; color: var(--shop-text-muted); font-size: 8px; }
.shop-search-result strong { font-size: 10px; }
.shop-quiz-progress { display: grid; grid-template-columns: repeat(3, 1fr); gap: 5px; margin-bottom: 25px; }
.shop-quiz-progress i { height: 3px; border-radius: 5px; background: var(--shop-border); }
.shop-quiz-progress i.active { background: var(--shop-accent); }
.shop-quiz-question h3 { margin: 0 0 17px; font-size: 21px; }
.shop-quiz-options { display: grid; grid-template-columns: repeat(3, 1fr); gap: 9px; }
.shop-quiz-option { min-height: 145px; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 7px; padding: 15px; border: 1px solid var(--shop-border); border-radius: var(--shop-radius-md); background: var(--shop-bg-soft); color: var(--shop-text); text-align: center; transition: border-color .2s, background .2s, transform .2s; }
.shop-quiz-option:hover { transform: translateY(-3px); border-color: var(--shop-accent); background: var(--shop-surface); }
.shop-quiz-option svg { width: 30px; height: 30px; color: var(--shop-accent-text); }
.shop-quiz-option b { font-size: 12px; }
.shop-quiz-option small { color: var(--shop-text-muted); font-size: 9px; }
.shop-quiz-result { text-align: center; }
.shop-quiz-result .shop-bottle-scene { min-height: 260px; }
.shop-quiz-result h3 { margin: 5px 0; direction: ltr; font: 700 31px/1.3 "Playfair Display", serif; }
.shop-quiz-result p { max-width: 460px; margin: 0 auto 20px; color: var(--shop-text-soft); font-size: 12px; line-height: 2; }
.shop-form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 15px; }
.shop-field { display: grid; gap: 6px; }
.shop-field-wide { grid-column: 1 / -1; }
.shop-field label { color: var(--shop-text-soft); font-size: 10px; font-weight: 800; }
.shop-field input,
.shop-field select,
.shop-field textarea { width: 100%; min-height: 48px; padding: 0 13px; border: 1px solid var(--shop-border); border-radius: 11px; background: var(--shop-bg-soft); color: var(--shop-text); outline: 0; }
.shop-field textarea { min-height: 90px; padding-block: 10px; resize: vertical; }
.shop-field input:focus,
.shop-field select:focus,
.shop-field textarea:focus { border-color: var(--shop-accent); box-shadow: 0 0 0 3px rgba(var(--shop-accent-rgb), .09); }
.shop-checkout-layout { display: grid; grid-template-columns: 1fr 310px; gap: 24px; }
.shop-checkout-summary { padding: 18px; border-radius: var(--shop-radius-md); background: var(--shop-bg-soft); }
.shop-checkout-summary h3 { margin: 0 0 12px; font-size: 14px; }
.shop-checkout-list { display: grid; gap: 8px; max-height: 230px; overflow-y: auto; }
.shop-checkout-list div { display: grid; grid-template-columns: 1fr auto; gap: 7px; padding-bottom: 8px; border-bottom: 1px solid var(--shop-border); font-size: 10px; }
.shop-checkout-list b { direction: ltr; text-align: left; }
.shop-checkout-totals { display: grid; gap: 8px; margin-top: 15px; }
.shop-checkout-totals p { display: flex; justify-content: space-between; margin: 0; color: var(--shop-text-soft); font-size: 10px; }
.shop-checkout-totals p:last-child { padding-top: 10px; border-top: 1px solid var(--shop-border-strong); color: var(--shop-text); font-size: 13px; font-weight: 900; }
.shop-checkout-submit { grid-column: 1 / -1; display: flex; justify-content: flex-end; gap: 9px; margin-top: 5px; }
.shop-order-success { padding: 20px 0; text-align: center; }
.shop-order-success > span { width: 76px; height: 76px; display: grid; place-items: center; margin: 0 auto 20px; border-radius: 50%; background: color-mix(in srgb, var(--shop-success) 12%, transparent); color: var(--shop-success); }
.shop-order-success svg { width: 38px; height: 38px; }
.shop-order-success h2 { margin: 0 0 8px; }
.shop-order-success p { color: var(--shop-text-soft); }
.shop-toast-region { position: fixed; right: 18px; bottom: max(18px, env(safe-area-inset-bottom)); z-index: 2000; display: grid; gap: 8px; pointer-events: none; }
.shop-toast { min-width: 280px; max-width: min(390px, calc(100vw - 36px)); display: grid; grid-template-columns: 24px 1fr; align-items: center; gap: 10px; padding: 13px 15px; border: 1px solid var(--shop-border); border-radius: 13px; background: var(--shop-surface); color: var(--shop-text); box-shadow: var(--shop-shadow-md); font-size: 11px; animation: shopToastIn .3s var(--shop-ease) both; }
.shop-toast svg { width: 21px; height: 21px; color: var(--shop-success); }
.shop-toast.error svg { color: var(--shop-danger); }

/* Reveal motion */
.shop-reveal { opacity: 0; transform: translateY(22px); transition: opacity .6s var(--shop-ease), transform .6s var(--shop-ease); }
.shop-reveal.is-visible { opacity: 1; transform: none; }
@keyframes shopRotate { to { transform: rotate(360deg); } }
@keyframes shopFade { from { opacity: 0; } }
@keyframes shopModalIn { from { opacity: 0; transform: translateY(18px) scale(.98); } }
@keyframes shopToastIn { from { opacity: 0; transform: translateX(18px); } }

/* Responsive */
@media (max-width: 1120px) {
  .shop-header-row { gap: 20px; }
  .shop-nav { gap: 18px; }
  .shop-account-link { display: none; }
  .shop-hero-grid { grid-template-columns: 1fr 420px; gap: 20px; }
  .shop-floating-note { display: none; }
  .shop-product-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .shop-category-grid { grid-template-columns: 1fr 1fr; grid-template-rows: repeat(2, 245px); }
  .shop-category-card:first-child { grid-row: auto; }
  .shop-category-card:nth-child(3) { grid-column: 1 / -1; }
  .shop-catalog-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .shop-product-detail { grid-template-columns: minmax(360px, .9fr) minmax(0, 1.1fr); gap: 40px; }
  .shop-product-main-media { min-height: 520px; }
  .shop-footer-main { grid-template-columns: 1.2fr repeat(3, .65fr); gap: 35px; }
}

@media (max-width: 900px) {
  .shop-header-row { grid-template-columns: 1fr auto; min-height: 70px; }
  .shop-nav { position: absolute; top: calc(100% + 1px); right: 20px; left: 20px; display: grid; gap: 0; padding: 12px; border: 1px solid var(--shop-border); border-radius: 16px; background: var(--shop-surface); box-shadow: var(--shop-shadow-md); opacity: 0; transform: translateY(-8px); pointer-events: none; transition: opacity .2s, transform .2s; }
  .shop-nav.open { opacity: 1; transform: none; pointer-events: auto; }
  .shop-nav a,
  .shop-nav button { justify-content: flex-start; min-height: 48px; padding: 0 12px; }
  .shop-nav a::after,
  .shop-nav button::after { display: none; }
  .shop-mobile-menu { display: grid; }
  .shop-hero { min-height: auto; }
  .shop-hero-grid { grid-template-columns: 1fr; gap: 35px; padding-block: 65px; }
  .shop-hero-copy { max-width: 740px; }
  .shop-hero-stage { min-height: 490px; }
  .shop-trust-grid { grid-template-columns: 1fr 1fr; }
  .shop-trust-grid article:nth-child(2) { border-left: 0; }
  .shop-trust-grid article:nth-child(-n+2) { border-bottom: 1px solid var(--shop-border); }
  .shop-section-heading { grid-template-columns: 1fr auto; gap: 20px; }
  .shop-section-heading p { grid-row: 2; }
  .shop-product-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .shop-discovery-grid { grid-template-columns: 1fr 1fr; grid-template-rows: auto auto; }
  .shop-discovery-main { grid-column: 1 / -1; grid-row: auto; min-height: 480px; }
  .shop-story-grid { grid-template-columns: .8fr 1.2fr; gap: 35px; }
  .shop-story-visual { min-height: 480px; }
  .shop-story-mark { font-size: 110px; }
  .shop-newsletter-card { grid-template-columns: 1fr; gap: 30px; }
  .shop-footer-main { grid-template-columns: 1fr 1fr; }
  .shop-footer-brand { grid-column: 1 / -1; }
  .shop-filter-toggle { display: inline-flex; }
  .shop-catalog-layout { grid-template-columns: 1fr; }
  .shop-filter-panel { position: fixed; right: 0; bottom: 0; left: 0; z-index: 1250; max-height: 82dvh; padding: 16px 24px max(25px, env(safe-area-inset-bottom)); border-radius: 24px 24px 0 0; background: var(--shop-surface); box-shadow: var(--shop-shadow-lg); overflow-y: auto; visibility: hidden; opacity: 0; pointer-events: none; transform: translateY(110vh); transition: transform .3s var(--shop-ease), opacity .2s; }
  .shop-filter-panel.open { visibility: visible; opacity: 1; pointer-events: auto; transform: none; }
  .shop-product-detail { grid-template-columns: 1fr; }
  .shop-product-gallery { position: static; }
  .shop-product-information { grid-column: auto; }
  .shop-product-main-media { min-height: 600px; }
  .shop-checkout-layout { grid-template-columns: 1fr; }
  .shop-checkout-summary { grid-row: 1; }
}

@media (max-width: 680px) {
  .shop-container { width: min(calc(100% - 28px), var(--shop-container)); }
  .shop-announcement { font-size: 10px; }
  .shop-announcement a { display: none; }
  .shop-announcement .shop-container { justify-content: center; }
  .shop-header-row { min-height: 66px; }
  .shop-brand img { width: 38px; height: 38px; }
  .shop-brand strong { font-size: 11px; }
  .shop-brand small { font-size: 6px; }
  .shop-theme-slot { display: none; }
  .shop-icon-button { width: 44px; height: 44px; }
  .shop-header-actions { gap: 1px; }
  .shop-hero-grid { padding-block: 50px; }
  .shop-hero-copy h1 { font-size: clamp(39px, 12.5vw, 58px); }
  .shop-hero-copy > p { font-size: 14px; }
  .shop-hero-actions { display: grid; }
  .shop-hero-actions .shop-button { width: 100%; }
  .shop-hero-facts { justify-content: space-between; }
  .shop-hero-facts div { min-width: 0; margin-left: 12px; padding-left: 12px; }
  .shop-hero-facts dt { font-size: 17px; }
  .shop-hero-facts dd { font-size: 8px; }
  .shop-hero-stage { min-height: 420px; }
  .shop-hero-product-card { width: 290px; min-height: 415px; }
  .shop-hero-product-card .shop-bottle-scene { min-height: 300px; }
  .shop-hero-orbit { width: 350px; height: 350px; }
  .shop-trust-grid { grid-template-columns: 1fr; }
  .shop-trust-grid article { min-height: 80px; padding: 16px 12px; border-left: 0; border-bottom: 1px solid var(--shop-border); }
  .shop-trust-grid article:last-child { border-bottom: 0; }
  .shop-section { padding: 70px 0; }
  .shop-section-heading { grid-template-columns: 1fr; gap: 13px; }
  .shop-section-heading p { grid-row: auto; }
  .shop-section-heading h2 { font-size: 29px; }
  .shop-category-grid { display: grid; grid-template-columns: 1fr; grid-template-rows: none; }
  .shop-category-card,
  .shop-category-card:first-child,
  .shop-category-card:nth-child(3) { grid-column: auto; grid-row: auto; min-height: 245px; }
  .shop-product-grid { grid-template-columns: 1fr 1fr; gap: 10px; }
  .shop-product-media,
  .shop-product-media > img,
  .shop-product-media .shop-bottle-scene { min-height: 225px; height: 225px; }
  .shop-product-media .shop-bottle { width: 78px; height: 132px; }
  .shop-product-card .shop-favorite-button { width: 44px; height: 44px; }
  .shop-product-info { padding: 13px; }
  .shop-product-info h3 { font-size: 17px; }
  .shop-product-summary { display: none; }
  .shop-product-notes { min-height: 0; margin-top: 7px; }
  .shop-product-notes span:nth-child(n+2) { display: none; }
  .shop-product-bottom { margin-top: 10px; padding-top: 10px; }
  .shop-product-price strong { font-size: 13px; }
  .shop-product-price small { font-size: 7px; }
  .shop-product-add { width: 44px; height: 44px; }
  .shop-product-category { font-size: 7px; }
  .shop-product-category span:last-child { display: none; }
  .shop-discovery-grid { grid-template-columns: 1fr; }
  .shop-discovery-main { min-height: 500px; padding: 38px 27px; }
  .shop-discovery-main h2 { font-size: 38px; }
  .shop-discovery-card { min-height: 235px; }
  .shop-note-timeline { grid-template-columns: 1fr; gap: 25px; }
  .shop-note-timeline::before { top: 25px; right: 29px; bottom: 25px; left: auto; width: 1px; height: auto; }
  .shop-note-timeline article { display: grid; grid-template-columns: 58px 1fr; gap: 14px; text-align: right; }
  .shop-note-timeline article > span { width: 58px; height: 58px; margin: 0; }
  .shop-story-grid { grid-template-columns: 1fr; }
  .shop-story-visual { min-height: 430px; }
  .shop-story-copy h2 { font-size: 36px; }
  .shop-newsletter-card { padding: 32px 22px; }
  .shop-footer-main { grid-template-columns: 1fr 1fr; gap: 30px 20px; padding-top: 50px; }
  .shop-footer-bottom { align-items: flex-start; flex-direction: column; justify-content: center; padding-block: 17px; }
  .shop-footer-bottom div { flex-wrap: wrap; }
  .shop-catalog-hero { padding-top: 35px; }
  .shop-catalog-toolbar { align-items: flex-start; flex-direction: column; padding-block: 15px; }
  .shop-catalog-tools { width: 100%; display: grid; grid-template-columns: 1fr auto auto; }
  .shop-catalog-search { min-width: 0; }
  .shop-sort select { width: 92px; padding-inline: 9px; }
  .shop-catalog-grid { grid-template-columns: 1fr 1fr; }
  .shop-product-page { padding-top: 20px; }
  .shop-product-main-media { min-height: 440px; }
  .shop-product-main-media .shop-bottle-scene { min-height: 440px; }
  .shop-product-main-media .shop-bottle { width: 135px; height: 230px; }
  .shop-product-summary-panel h1 { font-size: 47px; }
  .shop-detail-note-pyramid { grid-template-columns: 1fr; }
  .shop-detail-actions { grid-template-columns: 96px minmax(0, 1fr) 46px; gap: 7px; }
  .shop-detail-favorite { position: static; width: 46px; height: 50px; }
  .shop-detail-benefits { grid-template-columns: 1fr; }
  .shop-spec-grid,
  .shop-scent-architecture,
  .shop-shipping-panel { grid-template-columns: 1fr; }
  .shop-product-tabs { gap: 23px; }
  .shop-mobile-buybar { position: fixed; right: 0; bottom: 0; left: 0; z-index: 850; display: grid; grid-template-columns: 1fr 1.3fr; align-items: center; gap: 10px; min-height: 72px; padding: 10px 14px max(10px, env(safe-area-inset-bottom)); border-top: 1px solid var(--shop-border); background: color-mix(in srgb, var(--shop-surface) 94%, transparent); box-shadow: 0 -12px 30px rgba(15, 23, 42, .1); backdrop-filter: blur(18px); }
  .shop-mobile-buybar strong { display: block; font-size: 14px; }
  .shop-mobile-buybar small { color: var(--shop-text-muted); font-size: 8px; }
  .commerce-product .shop-footer { padding-bottom: 78px; }
  .shop-modal-backdrop { align-items: end; padding: 0; }
  .shop-modal { width: 100%; max-height: 91dvh; border-radius: 24px 24px 0 0; }
  .shop-quiz-options { grid-template-columns: 1fr; }
  .shop-quiz-option { min-height: 95px; display: grid; grid-template-columns: 40px 1fr; text-align: right; }
  .shop-quiz-option small { grid-column: 2; }
  .shop-form-grid { grid-template-columns: 1fr; }
  .shop-field-wide { grid-column: auto; }
  .shop-checkout-submit { grid-column: auto; }
}

@media (max-width: 390px) {
  .shop-brand span { display: none; }
  .shop-product-grid,
  .shop-catalog-grid { grid-template-columns: 1fr; }
  .shop-product-media,
  .shop-product-media > img,
  .shop-product-media .shop-bottle-scene { min-height: 300px; height: 300px; }
  .shop-product-summary { display: -webkit-box; }
}

@media (prefers-reduced-motion: reduce) {
  .commerce-page *,
  .commerce-page *::before,
  .commerce-page *::after { scroll-behavior: auto !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .shop-reveal { opacity: 1; transform: none; }
}


/* Blue Sky No-Gold policy — decorative accents stay in the cool brand palette. */
:root {
  --shop-accent: var(--bss-primary) !important;
  --shop-accent-rgb: 31, 85, 189 !important;
}
html[data-theme="dark"] {
  --shop-accent: var(--bss-primary) !important;
  --shop-accent-rgb: 140, 176, 255 !important;
}

/* Store experience controls — phase 1 */
.shop-container{max-width:var(--shop-container-max,1240px)}
body[data-store-container="compact"]{--shop-container-max:1080px}
body[data-store-container="balanced"]{--shop-container-max:1240px}
body[data-store-container="wide"]{--shop-container-max:1420px}
.commerce-catalog .shop-catalog-grid{grid-template-columns:repeat(var(--shop-catalog-cols-desktop,3),minmax(0,1fr))}
.shop-product-media{aspect-ratio:var(--shop-card-media-ratio,4 / 5);min-height:0}
.shop-product-media>img{width:100%;height:100%;min-height:0;object-fit:cover}
.shop-product-media .shop-bottle-scene{width:100%;height:100%;min-height:0}
body[data-store-density="compact"] .shop-product-info{padding:14px}
body[data-store-density="compact"] .shop-product-grid{gap:12px}
body[data-store-density="compact"] .shop-product-summary{min-height:34px;font-size:10px}
body[data-store-density="spacious"] .shop-product-info{padding:23px}
body[data-store-density="spacious"] .shop-product-grid{gap:24px}
body[data-store-card-style="minimal"] .shop-product-card{border-color:transparent;background:transparent;box-shadow:none}
body[data-store-card-style="minimal"] .shop-product-card:hover{border-color:transparent;box-shadow:none}
body[data-store-card-style="elevated"] .shop-product-card{border-color:transparent;box-shadow:var(--shop-shadow-md)}
body[data-store-card-style="elevated"] .shop-product-card:hover{box-shadow:0 24px 55px rgba(15,23,42,.18)}
.shop-card-stock{display:block;margin-bottom:7px;font-size:8px;color:var(--shop-text-muted)}
.shop-product-view{min-height:42px;display:inline-flex;align-items:center;justify-content:center;padding:0 13px;border:1px solid var(--shop-border);border-radius:999px;color:var(--shop-text);font-size:9px;font-weight:900}
.shop-product-view:hover{border-color:var(--shop-accent);color:var(--shop-accent-text)}
.shop-detail-purchase.is-sticky{position:sticky;top:104px;z-index:3}
.shop-motion-disabled *,.shop-motion-disabled *::before,.shop-motion-disabled *::after{animation:none!important;transition:none!important;scroll-behavior:auto!important}
[data-store-element][hidden],[data-home-section][hidden]{display:none!important}
.commerce-catalog .shop-catalog-layout:has(.shop-filter-panel[hidden]){grid-template-columns:1fr}
@media(max-width:1100px){.commerce-catalog .shop-catalog-grid{grid-template-columns:repeat(var(--shop-catalog-cols-tablet,2),minmax(0,1fr))}}
@media(max-width:720px){.commerce-catalog .shop-catalog-grid{grid-template-columns:repeat(var(--shop-catalog-cols-mobile,2),minmax(0,1fr))}.shop-detail-purchase.is-sticky{position:static}}

/* ========================================================================== 
   Storefront Phase 2 — organized catalog, visual categories and discovery
   ========================================================================== */
.shop-catalog-hero-v2 { padding: 42px 0 38px; }
.shop-catalog-hero-grid { display: grid; grid-template-columns: minmax(0, 1.4fr) minmax(320px, .6fr); align-items: end; gap: 48px; }
.shop-catalog-hero-copy h1 { max-width: 760px; margin-bottom: 12px; }
.shop-catalog-hero-copy p { max-width: 720px; }
.shop-catalog-hero-stats { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); border: 1px solid var(--shop-border); border-radius: 22px; background: color-mix(in srgb, var(--shop-surface) 92%, transparent); overflow: hidden; box-shadow: var(--shop-shadow-sm); }
.shop-catalog-hero-stats > div { min-height: 96px; display: grid; place-content: center; gap: 3px; padding: 16px 12px; text-align: center; }
.shop-catalog-hero-stats > div + div { border-inline-start: 1px solid var(--shop-border); }
.shop-catalog-hero-stats strong { font: 800 21px/1.25 "Manrope", "Vazirmatn", sans-serif; }
.shop-catalog-hero-stats span { color: var(--shop-text-muted); font-size: 9px; font-weight: 700; }

.shop-category-showcase { margin: 6px 0 34px; padding: 26px; border: 1px solid var(--shop-border); border-radius: 28px; background: linear-gradient(145deg, color-mix(in srgb, var(--shop-surface) 96%, var(--shop-accent) 4%), var(--shop-surface)); box-shadow: var(--shop-shadow-sm); }
.shop-category-showcase-heading { grid-template-columns: minmax(0, 1fr) auto; align-items: end; margin-bottom: 20px; }
.shop-category-showcase-heading p { margin: 5px 0 0; color: var(--shop-text-soft); font-size: 11px; }
.shop-category-showcase-heading > button { justify-self: end; width: auto; min-height: 44px; padding: 0 16px; border: 1px solid var(--shop-border); border-radius: 13px; background: transparent; color: var(--shop-text); font-size: 10px; font-weight: 800; }
.shop-category-showcase-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(170px, 1fr)); gap: 12px; }
.shop-catalog-category-card { position: relative; min-width: 0; min-height: 190px; padding: 0; border: 1px solid color-mix(in srgb, var(--shop-border) 80%, transparent); border-radius: 20px; overflow: hidden; isolation: isolate; background: var(--category-color, #dbeafe); color: #0f172a; text-align: right; box-shadow: inset 0 1px 0 rgba(255,255,255,.55); transition: transform .28s var(--shop-ease), border-color .28s, box-shadow .28s; }
.shop-catalog-category-card::before { content: ""; position: absolute; inset: 0; z-index: -1; background: radial-gradient(circle at 15% 12%, rgba(255,255,255,.72), transparent 34%), linear-gradient(160deg, transparent 30%, rgba(15,23,42,.12)); }
.shop-catalog-category-card:hover { transform: translateY(-4px); border-color: rgba(var(--shop-accent-rgb), .42); box-shadow: 0 16px 34px rgba(15,23,42,.13); }
.shop-catalog-category-card.active { border-color: var(--shop-accent); box-shadow: 0 0 0 3px rgba(var(--shop-accent-rgb), .12), 0 16px 34px rgba(15,23,42,.13); }
.shop-catalog-category-card > img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: .54; z-index: -2; transition: transform .5s var(--shop-ease), opacity .3s; }
.shop-catalog-category-card.has-image:hover > img { transform: scale(1.05); opacity: .65; }
.shop-category-card-overlay { position: absolute; inset: 0; z-index: -1; background: linear-gradient(0deg, rgba(15,23,42,.74), rgba(15,23,42,.05) 68%); opacity: 0; }
.shop-catalog-category-card.has-image { color: #fff; }
.shop-catalog-category-card.has-image .shop-category-card-overlay { opacity: 1; }
.shop-category-monogram { position: absolute; top: 10px; left: 16px; color: rgba(15,23,42,.11); font: 700 88px/1 "Playfair Display", serif; }
.shop-category-card-copy { position: absolute; inset: auto 16px 15px; display: grid; gap: 4px; z-index: 1; }
.shop-category-card-copy small { font-size: 9px; font-weight: 800; letter-spacing: .05em; opacity: .72; }
.shop-category-card-copy strong { font-size: 18px; line-height: 1.35; }
.shop-category-card-copy em { display: -webkit-box; min-height: 31px; overflow: hidden; color: currentColor; opacity: .72; font-size: 9px; font-style: normal; line-height: 1.7; -webkit-line-clamp: 2; -webkit-box-orient: vertical; }
.shop-category-card-copy i { position: absolute; left: 0; bottom: 0; width: 34px; height: 34px; display: grid; place-items: center; border: 1px solid currentColor; border-radius: 50%; opacity: .55; }
.shop-category-card-copy i svg { width: 15px; }
body[data-store-category-style="compact"] .shop-category-showcase-grid { grid-template-columns: repeat(auto-fit, minmax(190px, 1fr)); }
body[data-store-category-style="compact"] .shop-catalog-category-card { min-height: 145px; }
body[data-store-category-style="minimal"] .shop-category-showcase { padding: 0; border: 0; background: transparent; box-shadow: none; }
body[data-store-category-style="minimal"] .shop-catalog-category-card { min-height: 130px; }

.commerce-catalog .shop-category-chips { position: relative; margin-bottom: 13px; padding-bottom: 0; }
.commerce-catalog .shop-category-chips::after { content: ""; flex: 0 0 1px; width: 1px; }
.commerce-catalog .shop-category-chips button { min-height: 40px; padding-inline: 15px; border-radius: 12px; background: var(--shop-surface); }
.commerce-catalog .shop-category-chips button.active { border-color: var(--shop-accent); background: rgba(var(--shop-accent-rgb), .1); color: var(--shop-accent-text); }

.commerce-catalog .shop-catalog-toolbar { position: relative; z-index: 12; min-height: 76px; margin: 0 0 24px; padding: 12px 14px; border: 1px solid var(--shop-border); border-radius: 20px; background: color-mix(in srgb, var(--shop-surface) 94%, transparent); box-shadow: var(--shop-shadow-sm); backdrop-filter: blur(16px); }
.shop-toolbar-sticky.commerce-catalog .shop-catalog-toolbar { position: sticky; top: 88px; }
.shop-catalog-summary { min-width: 150px; padding-inline: 4px; }
.shop-catalog-summary strong { font-size: 14px !important; }
.shop-catalog-summary span { margin-top: 3px; font-size: 9px !important; }
.commerce-catalog .shop-catalog-tools { flex: 1; justify-content: flex-end; }
.commerce-catalog .shop-catalog-search { flex: 1; max-width: 430px; min-width: 250px; min-height: 48px; border-radius: 14px; background: var(--shop-bg-soft); }
.commerce-catalog .shop-sort { min-width: 175px; min-height: 48px; display: grid; grid-template-columns: auto 1fr; align-items: center; gap: 8px; padding: 0 12px; border: 1px solid var(--shop-border); border-radius: 14px; background: var(--shop-surface); }
.commerce-catalog .shop-sort > span { color: var(--shop-text-muted); font-size: 8px; font-weight: 800; white-space: nowrap; }
.commerce-catalog .shop-sort select { min-width: 0; padding: 0; border: 0; background: transparent; color: var(--shop-text); font-size: 10px; font-weight: 700; outline: 0; }
.commerce-catalog .shop-filter-toggle { position: relative; min-height: 48px; border-radius: 14px; }
.commerce-catalog .shop-filter-toggle b { min-width: 19px; height: 19px; display: inline-grid; place-items: center; margin-inline-start: 3px; border-radius: 10px; background: var(--shop-accent); color: #fff; font-size: 8px; }

.commerce-catalog .shop-catalog-layout { grid-template-columns: 260px minmax(0, 1fr); gap: 28px; }
.commerce-catalog .shop-filter-panel { top: 182px; max-height: calc(100vh - 205px); padding: 0 16px 18px; border: 1px solid var(--shop-border); border-radius: 22px; background: var(--shop-surface); overflow: auto; scrollbar-width: thin; box-shadow: var(--shop-shadow-sm); }
.commerce-catalog .shop-filter-panel > header { position: sticky; top: 0; z-index: 4; min-height: 76px; margin-inline: -16px; padding: 0 16px; background: color-mix(in srgb, var(--shop-surface) 94%, transparent); backdrop-filter: blur(14px); }
.commerce-catalog .shop-filter-panel > header > div:first-child { display: grid; gap: 1px; }
.commerce-catalog .shop-filter-panel > header small { color: var(--shop-text-muted); font: 700 7px/1.4 "Manrope", sans-serif; letter-spacing: .12em; }
.commerce-catalog .shop-filter-panel > header h2 { font-size: 15px; }
.commerce-catalog .shop-filter-panel > header > div:last-child { display: flex; align-items: center; gap: 9px; }
.commerce-catalog .shop-filter-close { display: none; width: 38px; height: 38px; border: 1px solid var(--shop-border) !important; border-radius: 12px; background: transparent !important; color: var(--shop-text) !important; font-size: 22px !important; }
.commerce-catalog .shop-filter-panel fieldset { padding: 17px 0; }
.commerce-catalog .shop-filter-panel legend { margin-bottom: 11px; font-size: 11px; }
.commerce-catalog .shop-check { min-height: 34px; align-items: center; color: var(--shop-text-soft); font-size: 10px; }
.commerce-catalog .shop-check b { font-weight: 600; }
.commerce-catalog .shop-facet-check { display: grid; grid-template-columns: auto 1fr; gap: 8px; }
.commerce-catalog .shop-filter-options { max-height: 188px; overflow: auto; scrollbar-width: thin; }
.shop-filter-empty { margin: 0; color: var(--shop-text-muted); font-size: 9px; line-height: 1.8; }
.shop-filter-mobile-footer { display: none; }

.shop-results-control { min-height: 38px; display: flex; align-items: start; justify-content: space-between; gap: 12px; margin-bottom: 14px; }
.shop-results-control > button { min-height: 36px; padding: 0 11px; border: 0; background: transparent; color: var(--shop-danger); font-size: 9px; font-weight: 800; white-space: nowrap; }
.commerce-catalog .shop-active-filters { margin: 0; }
.commerce-catalog .shop-active-filters button { min-height: 36px; border-radius: 11px; background: var(--shop-surface); }

.shop-product-card-v2 { display: flex; flex-direction: column; min-height: 100%; }
.shop-product-media-wrap { position: relative; overflow: hidden; background: var(--shop-bg-soft); }
.shop-product-card-v2 .shop-product-media { aspect-ratio: var(--shop-card-media-ratio, 4 / 5); border-bottom: 1px solid var(--shop-border); }
.shop-product-media-link { position: absolute; right: 14px; bottom: 14px; left: 14px; min-height: 40px; display: flex; align-items: center; justify-content: space-between; padding: 0 13px; border: 1px solid rgba(255,255,255,.45); border-radius: 12px; background: rgba(15,23,42,.82); color: #fff !important; font-size: 9px; font-weight: 800; opacity: 0; transform: translateY(10px); backdrop-filter: blur(10px); transition: opacity .24s, transform .24s var(--shop-ease); }
.shop-product-card-v2:hover .shop-product-media-link { opacity: 1; transform: none; }
.shop-product-card-v2 .shop-product-info { flex: 1; display: flex; flex-direction: column; padding: 17px; }
.shop-product-card-v2 .shop-product-category { min-height: 20px; margin: 0 0 7px; }
.shop-product-card-v2 .shop-product-category span:first-child { color: var(--shop-accent-text); }
.shop-product-card-v2 h3 { min-height: 48px; margin: 0 0 7px; font-size: 16px; line-height: 1.5; }
.shop-product-card-v2 h3 a { display: -webkit-box; overflow: hidden; -webkit-line-clamp: 2; -webkit-box-orient: vertical; }
.shop-product-card-v2 .shop-product-summary { min-height: 38px; margin: 0 0 12px; color: var(--shop-text-soft); font-size: 9px; line-height: 1.9; -webkit-line-clamp: 2; }
.shop-product-facts { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 7px; margin-bottom: 10px; }
.shop-product-facts > span { min-width: 0; display: grid; grid-template-columns: 18px 1fr; grid-template-rows: auto auto; column-gap: 6px; padding: 8px; border: 1px solid var(--shop-border); border-radius: 11px; background: var(--shop-bg-soft); }
.shop-product-facts svg { grid-row: 1 / 3; align-self: center; width: 16px; color: var(--shop-accent-text); }
.shop-product-facts small { color: var(--shop-text-muted); font-size: 7px; }
.shop-product-facts b { overflow: hidden; font-size: 9px; text-overflow: ellipsis; white-space: nowrap; }
.shop-product-card-v2 .shop-product-notes { min-height: 25px; margin: 0 0 11px; }
.shop-product-card-v2 .shop-product-bottom { margin-top: auto; padding-top: 13px; border-top: 1px solid var(--shop-border); }
.shop-product-commerce { min-width: 0; display: grid; gap: 4px; }
.shop-product-card-v2 .shop-product-price strong { font-size: 15px; }
.shop-product-card-v2 .shop-card-stock { font-size: 8px; }
.shop-product-card-v2 .shop-product-add.is-full { width: auto; min-width: 103px; height: 42px; display: inline-flex; align-items: center; justify-content: center; gap: 6px; padding: 0 10px; border-radius: 12px; }
.shop-product-card-v2 .shop-product-add.is-full svg { width: 16px; }
.shop-product-card-v2 .shop-product-add.is-full span { display: inline; font-size: 8px; font-weight: 800; }
.shop-product-view { min-height: 42px; display: inline-flex; align-items: center; gap: 6px; padding: 0 11px; border: 1px solid var(--shop-border); border-radius: 12px; color: var(--shop-text); font-size: 8px; font-weight: 800; }
.shop-product-view svg { width: 14px; }
body[data-store-card-style="minimal"] .shop-product-card-v2 .shop-product-info { padding-inline: 2px; }
body[data-store-density="compact"] .shop-product-card-v2 .shop-product-info { padding: 13px; }
body[data-store-density="compact"] .shop-product-card-v2 .shop-product-summary { display: none; }
body[data-store-density="spacious"] .shop-product-card-v2 .shop-product-info { padding: 21px; }

.shop-catalog-pagination { display: grid; place-items: center; gap: 10px; margin-top: 35px; padding-top: 25px; border-top: 1px solid var(--shop-border); }
.shop-catalog-pagination p { margin: 0; color: var(--shop-text-muted); font-size: 9px; }
.shop-catalog-pagination button { min-width: 190px; }

@media (max-width: 1280px) {
  .shop-catalog-category-card { min-height: 170px; }
}

@media (max-width: 1100px) {
  .shop-catalog-hero-grid { grid-template-columns: 1fr; gap: 26px; }
  .shop-catalog-hero-stats { max-width: 560px; }
  .commerce-catalog .shop-catalog-layout { grid-template-columns: 225px minmax(0, 1fr); gap: 20px; }
  .commerce-catalog .shop-catalog-search { min-width: 190px; }
}

@media (max-width: 900px) {
  .shop-toolbar-sticky.commerce-catalog .shop-catalog-toolbar { top: 74px; }
  .commerce-catalog .shop-catalog-layout { grid-template-columns: 1fr; }
  .commerce-catalog .shop-filter-panel { position: fixed; top: auto; right: 0; bottom: 0; left: 0; z-index: 1250; max-height: min(88dvh, 760px); padding: 0 22px max(18px, env(safe-area-inset-bottom)); border-radius: 26px 26px 0 0; overflow-y: auto; visibility: hidden; opacity: 0; pointer-events: none; transform: translateY(110vh); transition: transform .3s var(--shop-ease), opacity .2s; }
  .commerce-catalog .shop-filter-panel.open { visibility: visible; opacity: 1; pointer-events: auto; transform: none; }
  .commerce-catalog .shop-filter-panel > header { margin-inline: -22px; padding-inline: 22px; }
  .commerce-catalog .shop-filter-close { display: grid; place-items: center; }
  .shop-filter-mobile-footer { position: sticky; bottom: 0; z-index: 5; display: grid; grid-template-columns: .7fr 1.3fr; gap: 8px; margin: 0 -22px -18px; padding: 12px 22px max(18px, env(safe-area-inset-bottom)); border-top: 1px solid var(--shop-border); background: color-mix(in srgb, var(--shop-surface) 94%, transparent); backdrop-filter: blur(16px); }
  .shop-filter-mobile-footer .shop-button { justify-content: center; }
}

@media (max-width: 720px) {
  .shop-catalog-hero-v2 { padding: 30px 0 25px; }
  .shop-catalog-hero-stats { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .shop-catalog-hero-stats > div { min-height: 78px; padding: 10px 6px; }
  .shop-catalog-hero-stats strong { font-size: 17px; }
  .shop-category-showcase { margin-inline: -4px; padding: 18px; border-radius: 22px; }
  .shop-category-showcase-heading { align-items: flex-start; }
  .shop-category-showcase-heading > button { display: none; }
  .shop-category-showcase-grid { display: flex; margin-inline: -18px; padding: 0 18px 5px; overflow-x: auto; scroll-snap-type: x proximity; scrollbar-width: none; }
  .shop-category-showcase-grid::-webkit-scrollbar { display: none; }
  .shop-catalog-category-card { flex: 0 0 152px; min-height: 170px; scroll-snap-align: start; }
  .commerce-catalog .shop-catalog-toolbar { position: sticky; top: 67px; align-items: stretch; flex-direction: column; gap: 10px; padding: 11px; border-radius: 16px; }
  .commerce-catalog .shop-catalog-tools { width: 100%; display: grid; grid-template-columns: minmax(0, 1fr) auto; }
  .commerce-catalog .shop-catalog-search { grid-column: 1 / -1; max-width: none; min-width: 0; }
  .commerce-catalog .shop-sort { min-width: 0; }
  .commerce-catalog .shop-sort > span { display: none; }
  .commerce-catalog .shop-filter-toggle { min-width: 102px; }
  .shop-results-control { align-items: flex-start; flex-direction: column; }
  .shop-product-media-link { display: none; }
  .shop-product-card-v2 .shop-product-info { padding: 12px; }
  .shop-product-card-v2 h3 { min-height: 42px; font-size: 13px; }
  .shop-product-card-v2 .shop-product-summary { display: none; }
  .shop-product-facts { grid-template-columns: 1fr; }
  .shop-product-facts > span:nth-child(n+2) { display: none; }
  .shop-product-card-v2 .shop-product-notes { display: none; }
  .shop-product-card-v2 .shop-product-bottom { align-items: flex-end; gap: 6px; }
  .shop-product-card-v2 .shop-product-add.is-full { width: 42px; min-width: 42px; padding: 0; }
  .shop-product-card-v2 .shop-product-add.is-full span { display: none; }
}

@media (max-width: 430px) {
  .shop-catalog-hero-stats span { font-size: 7px; }
  .shop-category-showcase-grid { gap: 9px; }
  .shop-catalog-category-card { flex-basis: 142px; }
  .commerce-catalog .shop-catalog-tools { grid-template-columns: minmax(0, 1fr) 94px; }
  .commerce-catalog .shop-sort { padding-inline: 8px; }
  .commerce-catalog .shop-filter-toggle { min-width: 94px; padding-inline: 9px; }
  .shop-product-facts { display: none; }
}
.shop-product-card-v2 .shop-product-add:not(.is-full) span { display: none; }

/* === Storefront Phase 3: product detail and conversion experience === */
.shop-product-detail-v3{display:grid;grid-template-columns:minmax(0,1.08fr) minmax(360px,.92fr);gap:clamp(28px,5vw,72px);align-items:start;padding-block:clamp(28px,5vw,70px)}
.shop-product-gallery-v3{position:sticky;top:116px;display:grid;grid-template-columns:88px minmax(0,1fr);gap:16px;align-items:start}
.shop-product-gallery-v3 .shop-product-main-media{grid-column:2;position:relative;min-height:620px;overflow:hidden;cursor:zoom-in;border:1px solid var(--shop-line);border-radius:28px;background:linear-gradient(145deg,var(--shop-surface),var(--shop-surface-2));box-shadow:0 28px 70px rgba(15,23,42,.12)}
.shop-product-gallery-v3 .shop-product-main-media>img{width:100%;height:100%;min-height:620px;object-fit:contain;padding:clamp(22px,5vw,62px);transition:transform .45s ease}
.shop-product-gallery-v3 .shop-product-main-media:hover>img{transform:scale(1.035)}
.shop-media-zoom{position:absolute;inset-inline-end:16px;bottom:16px;display:flex;align-items:center;gap:7px;padding:9px 12px;border-radius:999px;background:rgba(15,23,42,.82);color:#fff;font-size:12px;backdrop-filter:blur(10px)}
.shop-media-zoom svg{width:16px;height:16px}
.shop-product-thumbnails{grid-column:1;grid-row:1;display:flex;flex-direction:column;gap:10px;max-height:620px;overflow:auto;scrollbar-width:thin}
.shop-product-thumb{position:relative;flex:0 0 82px;width:82px;height:96px;border:1px solid var(--shop-line);border-radius:16px;background:var(--shop-surface);overflow:hidden;cursor:pointer;transition:.25s ease}
.shop-product-thumb img{width:100%;height:100%;object-fit:contain;padding:7px}
.shop-product-thumb:hover,.shop-product-thumb.active{border-color:var(--shop-accent);box-shadow:0 0 0 2px color-mix(in srgb,var(--shop-accent) 18%,transparent);transform:translateY(-1px)}
.shop-product-thumb.is-video{display:grid;place-items:center;gap:3px;color:var(--shop-accent);font-size:11px}
.shop-product-thumb.is-video svg{width:28px;height:28px}
.shop-product-summary-v3{padding-top:8px}
.shop-product-title-row{display:flex;align-items:flex-start;justify-content:space-between;gap:20px}
.shop-product-title-row h1{margin:.35rem 0 0;font-size:clamp(2rem,4vw,3.65rem);line-height:1.08}
.shop-scent-profile{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:10px;margin:24px 0}
.shop-scent-profile>div{padding:14px 13px;border:1px solid var(--shop-line);border-radius:16px;background:var(--shop-surface);min-width:0}
.shop-scent-profile small{display:block;color:var(--shop-muted);font-size:11px;margin-bottom:6px}
.shop-scent-profile strong{display:block;font-size:13px;line-height:1.5;white-space:nowrap;overflow:hidden;text-overflow:ellipsis}
.shop-product-variants{margin:22px 0;padding:18px;border:1px solid var(--shop-line);border-radius:20px;background:var(--shop-surface)}
.shop-product-variants header{display:flex;justify-content:space-between;gap:12px;align-items:center;margin-bottom:13px}
.shop-product-variants header b{font-size:14px}.shop-product-variants header small{color:var(--shop-muted);font-size:11px}
.shop-product-variants>div{display:flex;flex-wrap:wrap;gap:9px}
.shop-product-variants a{display:flex;flex-direction:column;gap:2px;min-width:112px;padding:11px 14px;border:1px solid var(--shop-line);border-radius:14px;color:var(--shop-text);text-decoration:none;background:var(--shop-surface-2);transition:.2s ease}
.shop-product-variants a:hover,.shop-product-variants a.active{border-color:var(--shop-accent);background:color-mix(in srgb,var(--shop-accent) 9%,var(--shop-surface));box-shadow:0 0 0 2px color-mix(in srgb,var(--shop-accent) 12%,transparent)}
.shop-product-variants a span{font-weight:800}.shop-product-variants a small{color:var(--shop-muted);font-size:11px}
.shop-detail-actions{flex-wrap:wrap}.shop-detail-actions .shop-button-secondary{background:transparent;color:var(--shop-text);border:1px solid var(--shop-line)}
.shop-product-information,.shop-product-reviews,.shop-recently-viewed{grid-column:1/-1}
.shop-product-reviews,.shop-recently-viewed{margin-top:clamp(30px,6vw,80px);padding-top:clamp(26px,4vw,52px);border-top:1px solid var(--shop-line)}
.shop-product-section-head{display:flex;align-items:flex-end;justify-content:space-between;gap:20px;margin-bottom:24px}
.shop-product-section-head span{color:var(--shop-accent);font-family:Manrope,sans-serif;font-weight:800;font-size:11px;letter-spacing:.16em}
.shop-product-section-head h2{margin:5px 0 0;font-size:clamp(1.55rem,3vw,2.4rem)}
.shop-review-summary{display:flex;align-items:center;gap:11px}.shop-review-summary>strong{font-size:30px}.shop-review-summary>small{color:var(--shop-muted)}
.shop-rating-stars{display:inline-flex;gap:2px;direction:ltr}.shop-rating-stars i,.shop-rating-stars button{display:grid;place-items:center;border:0;padding:0;background:transparent;color:var(--shop-line-strong)}
.shop-rating-stars svg{width:17px;height:17px;fill:transparent}.shop-rating-stars .active{color:var(--shop-accent)}.shop-rating-stars .active svg{fill:currentColor}
.shop-rating-stars.is-interactive button{cursor:pointer;padding:4px}.shop-rating-stars.is-interactive svg{width:25px;height:25px}
.shop-review-layout{display:grid;grid-template-columns:minmax(0,1.25fr) minmax(320px,.75fr);gap:24px;align-items:start}
.shop-review-list{display:grid;gap:12px}
.shop-review-card{padding:20px;border:1px solid var(--shop-line);border-radius:20px;background:var(--shop-surface)}
.shop-review-card header{display:flex;justify-content:space-between;gap:16px}.shop-review-card header>div{display:flex;align-items:center;gap:8px}.shop-review-card header span{padding:4px 8px;border-radius:999px;background:color-mix(in srgb,var(--shop-accent) 10%,transparent);color:var(--shop-accent);font-size:10px;font-weight:800}
.shop-review-card h4{margin:15px 0 6px}.shop-review-card p{margin:0;color:var(--shop-muted);line-height:1.9}.shop-review-card time{display:block;margin-top:12px;color:var(--shop-muted);font-size:11px}
.shop-review-form{position:sticky;top:116px;display:grid;gap:14px;padding:22px;border:1px solid var(--shop-line);border-radius:22px;background:var(--shop-surface);box-shadow:0 18px 55px rgba(15,23,42,.08)}
.shop-review-form h3{margin:0}.shop-review-form>p{margin:-7px 0 3px;color:var(--shop-muted);font-size:12px}.shop-review-form label{display:grid;gap:7px;font-size:12px;font-weight:700}.shop-review-form input,.shop-review-form textarea{width:100%;border:1px solid var(--shop-line);border-radius:13px;background:var(--shop-bg);color:var(--shop-text);padding:11px 12px;font:inherit}.shop-review-form textarea{min-height:110px;resize:vertical}.shop-field-row{display:grid;grid-template-columns:1fr 1fr;gap:10px}
.shop-review-empty,.shop-review-loading{min-height:180px;display:grid;place-items:center;text-align:center;padding:25px;border:1px dashed var(--shop-line);border-radius:22px;color:var(--shop-muted)}.shop-review-empty svg{width:34px;height:34px;color:var(--shop-accent)}.shop-review-loading i{width:26px;height:26px;border:2px solid var(--shop-line);border-top-color:var(--shop-accent);border-radius:50%;animation:shopSpin .8s linear infinite}
.shop-media-viewer{display:grid;gap:18px}.shop-media-viewer>img{display:block;width:100%;max-height:72vh;object-fit:contain;border-radius:20px;background:var(--shop-surface-2)}.shop-media-viewer-nav{display:flex;gap:9px;overflow:auto}.shop-media-viewer-nav button{flex:0 0 70px;height:76px;border:1px solid var(--shop-line);border-radius:12px;background:var(--shop-surface);overflow:hidden}.shop-media-viewer-nav button.active{border-color:var(--shop-accent)}.shop-media-viewer-nav img{width:100%;height:100%;object-fit:contain;padding:5px}
.shop-product-video{width:100%;max-height:72vh;border-radius:20px;background:#020617}
.shop-mobile-buybar{gap:8px}.shop-mobile-buybar .shop-mobile-buy-now{background:transparent;color:var(--shop-text);border:1px solid var(--shop-line)}
@media(max-width:980px){.shop-product-detail-v3{grid-template-columns:1fr;gap:26px}.shop-product-gallery-v3{position:relative;top:auto;grid-template-columns:1fr}.shop-product-gallery-v3 .shop-product-main-media{grid-column:1;min-height:520px}.shop-product-gallery-v3 .shop-product-main-media>img{min-height:520px}.shop-product-thumbnails{grid-column:1;grid-row:auto;flex-direction:row;max-height:none;overflow-x:auto}.shop-product-thumb{flex-basis:74px;width:74px;height:84px}.shop-review-layout{grid-template-columns:1fr}.shop-review-form{position:relative;top:auto}}
@media(max-width:640px){.shop-product-detail-v3{padding-top:18px}.shop-product-gallery-v3 .shop-product-main-media{min-height:420px;border-radius:20px}.shop-product-gallery-v3 .shop-product-main-media>img{min-height:420px;padding:24px}.shop-scent-profile{grid-template-columns:repeat(2,minmax(0,1fr))}.shop-product-section-head{align-items:flex-start;flex-direction:column}.shop-review-summary{width:100%;justify-content:flex-start}.shop-field-row{grid-template-columns:1fr}.shop-review-card header{flex-direction:column}.shop-product-variants header{align-items:flex-start;flex-direction:column}.shop-mobile-buybar>div{min-width:0}.shop-mobile-buybar .shop-button{padding-inline:10px;font-size:11px}}

/* ========================================================================== */
/* Blue Sky Commerce UX 4.0 — homepage, catalog, category and checkout reset  */
/* ========================================================================== */
:root{
  --shop-v4-ink:var(--bss-canvas-deep);
  --shop-v4-panel:var(--bss-surface);
  --shop-v4-panel-2:var(--bss-surface-raised);
  --shop-v4-blue:var(--bss-primary);
  --shop-v4-blue-soft:var(--bss-primary-hover);
  --shop-v4-line:var(--bss-border-strong);
}
html[data-theme="dark"] .commerce-page{background:var(--bss-bg);background-image:radial-gradient(circle at 15% -10%,var(--bss-primary-soft),transparent 32%),radial-gradient(circle at 88% 18%,var(--bss-accent-subtle),transparent 26%)}
html[data-theme="dark"] .shop-header{background:var(--bss-surface-overlay);border-color:var(--bss-border)}
html[data-theme="dark"] .shop-announcement{background:var(--bss-bg-soft);border-bottom:1px solid var(--bss-border)}
.commerce-home-v4 .shop-section,.commerce-catalog-v4 .shop-section{padding-block:clamp(64px,8vw,112px)}
.shop-section-heading-v4{grid-template-columns:minmax(0,1fr) minmax(260px,440px) auto;align-items:end;margin-bottom:34px}
.shop-section-heading-v4 h2{font-size:clamp(30px,4vw,52px);line-height:1.15}

/* Homepage hero */
.shop-home-hero-v4{position:relative;min-height:690px;display:flex;align-items:center;overflow:hidden;background:#020617;color:#f8fafc;border-bottom:1px solid rgba(148,163,184,.14)}
.shop-home-hero-v4::before{content:"";position:absolute;inset:0;background-image:linear-gradient(rgba(148,163,184,.045) 1px,transparent 1px),linear-gradient(90deg,rgba(148,163,184,.045) 1px,transparent 1px);background-size:72px 72px;mask-image:linear-gradient(to bottom,#000,transparent 88%)}
.shop-home-hero-glow{position:absolute;width:600px;height:600px;border-radius:50%;left:-220px;top:-240px;background:rgba(37,99,235,.18);filter:blur(90px)}
.shop-home-hero-layout{position:relative;z-index:1;display:grid;grid-template-columns:minmax(0,1.06fr) minmax(390px,.94fr);gap:clamp(42px,7vw,100px);align-items:center;padding-block:72px}
.shop-home-hero-copy{max-width:690px}
.shop-home-hero-copy h1{margin:20px 0 24px;font-size:clamp(48px,7vw,92px);line-height:1.05;letter-spacing:-.055em;color:#fff;text-wrap:balance}
.shop-home-hero-copy>p{max-width:650px;margin:0;color:#bdc8da;font-size:clamp(15px,1.5vw,19px);line-height:2}
.shop-home-hero-actions{display:flex;flex-wrap:wrap;gap:12px;margin-top:34px}
.shop-home-hero-v4 .shop-button-ghost{border-color:rgba(226,232,240,.25);color:#fff;background:rgba(255,255,255,.035)}
.shop-profile-shortcuts{display:grid;grid-template-columns:repeat(4,minmax(0,1fr));gap:1px;margin-top:44px;border:1px solid rgba(148,163,184,.18);border-radius:18px;overflow:hidden;background:rgba(148,163,184,.12)}
.shop-profile-shortcuts a{display:grid;gap:4px;min-height:82px;padding:16px;background:rgba(2,6,23,.82);transition:.25s ease}
.shop-profile-shortcuts a:hover{background:rgba(37,99,235,.14)}
.shop-profile-shortcuts small{color:#60a5fa;font:800 9px/1.3 Manrope,sans-serif;letter-spacing:.14em}
.shop-profile-shortcuts strong{font-size:12px;color:#e2e8f0}
.shop-home-product-stage{min-height:570px;cursor:pointer}
.shop-home-product-stage .shop-hero-product-card{background:linear-gradient(155deg,rgba(255,255,255,.11),rgba(255,255,255,.025));border:1px solid rgba(226,232,240,.16);box-shadow:0 40px 100px rgba(0,0,0,.46)}
.shop-home-product-stage .shop-hero-product-meta h2,.shop-home-product-stage .shop-hero-product-meta span,.shop-home-product-stage .shop-hero-product-meta p{color:#f8fafc}
.shop-home-product-stage .shop-floating-note{background:rgba(8,17,33,.9);border-color:rgba(148,163,184,.2);color:#e2e8f0;backdrop-filter:blur(16px)}
.shop-home-product-stage .shop-hero-orbit{border-color:rgba(96,165,250,.38)}

.shop-home-trust-v4{background:#071022;color:#e2e8f0;border-bottom:1px solid rgba(148,163,184,.15)}
.shop-home-trust-v4 .shop-container{display:grid;grid-template-columns:repeat(4,1fr)}
.shop-home-trust-v4 article{display:grid;gap:3px;padding:22px 28px;border-inline-start:1px solid rgba(148,163,184,.14)}
.shop-home-trust-v4 article:first-child{border-inline-start:0}
.shop-home-trust-v4 b{font-size:14px}.shop-home-trust-v4 span{color:#8492a8;font-size:11px}

/* Home category architecture */
.shop-home-categories-v4{background:var(--shop-bg)}
.shop-category-grid-v4{display:grid;grid-template-columns:repeat(12,1fr);gap:16px}
.shop-category-card-v4{position:relative;grid-column:span 6;min-height:300px;display:flex;flex-direction:column;justify-content:flex-end;overflow:hidden;padding:32px;border:1px solid var(--shop-border);border-radius:26px;background:linear-gradient(145deg,color-mix(in srgb,var(--category-color) 24%,var(--shop-surface)),var(--shop-surface));box-shadow:none;isolation:isolate}
.shop-category-card-v4:nth-child(n+3){grid-column:span 4;min-height:235px}
.shop-category-card-v4::before{content:attr(data-letter);position:absolute;inset-inline-start:22px;top:-48px;z-index:-1;color:color-mix(in srgb,var(--category-color) 75%,transparent);font:900 clamp(160px,19vw,260px)/1 Manrope,sans-serif;opacity:.32}
.shop-category-card-v4.has-image::after{content:"";position:absolute;inset:0;z-index:-1;background:linear-gradient(to top,rgba(2,6,23,.94),rgba(2,6,23,.12) 75%)}
.shop-category-card-v4 .shop-category-image{position:absolute;inset:0;z-index:-2;width:100%;height:100%;object-fit:cover}
.shop-category-card-v4>div{max-width:500px}.shop-category-card-v4 small{color:var(--shop-accent-text);font-size:11px;font-weight:800}.shop-category-card-v4 h3{margin:8px 0 5px;font-size:clamp(26px,3vw,40px);line-height:1.2}.shop-category-card-v4 p{max-width:430px;margin:0;color:var(--shop-text-soft);font-size:13px;line-height:1.85}.shop-category-card-v4.has-image h3,.shop-category-card-v4.has-image p{color:#fff}.shop-category-card-v4.has-image small{color:#93c5fd}.shop-category-card-number{position:absolute;top:25px;inset-inline-end:28px;color:var(--shop-text-muted);font:700 12px Manrope,sans-serif}.shop-category-card-v4 .shop-category-arrow{position:absolute;inset-inline-end:28px;bottom:28px;width:48px;height:48px;display:grid;place-items:center;border:1px solid var(--shop-border);border-radius:50%;background:color-mix(in srgb,var(--shop-surface) 75%,transparent);transition:.25s ease}.shop-category-card-v4:hover{transform:translateY(-5px);border-color:color-mix(in srgb,var(--shop-accent) 45%,var(--shop-border));box-shadow:var(--shop-shadow-md)}.shop-category-card-v4:hover .shop-category-arrow{background:var(--shop-accent);border-color:var(--shop-accent);color:#fff}

/* Clean product cards */
.shop-home-product-grid-v4,.shop-catalog-grid-v4{display:grid;grid-template-columns:repeat(auto-fit,minmax(min(100%,245px),1fr));gap:18px}
.shop-product-card-v2{display:flex;flex-direction:column;min-width:0;border:1px solid var(--shop-border);border-radius:22px;background:var(--shop-surface);box-shadow:none;overflow:hidden;transition:transform .25s var(--shop-ease),border-color .25s,box-shadow .25s}
.shop-product-card-v2:hover{transform:translateY(-5px);border-color:color-mix(in srgb,var(--shop-accent) 38%,var(--shop-border));box-shadow:0 24px 60px rgba(15,23,42,.13)}
.shop-product-card-v2 .shop-product-media-wrap{border-radius:0;background:linear-gradient(155deg,var(--shop-bg-soft),color-mix(in srgb,var(--shop-accent) 5%,var(--shop-surface)));border:0;border-bottom:1px solid var(--shop-border)}
.shop-product-card-v2 .shop-product-media{min-height:auto;aspect-ratio:4/5;padding:24px}
.shop-product-card-v2 .shop-product-media-link{display:none}
.shop-product-card-v2 .shop-product-info{display:flex;flex:1;flex-direction:column;padding:18px}
.shop-product-card-v2 .shop-product-category{margin-bottom:9px;color:var(--shop-text-muted);font-size:10px}
.shop-product-card-v2 h3{margin:0;font-size:18px;line-height:1.45}
.shop-product-card-v2 .shop-product-summary{min-height:0;margin:8px 0 0;color:var(--shop-text-soft);font-size:12px;line-height:1.8;display:-webkit-box;-webkit-line-clamp:2;-webkit-box-orient:vertical;overflow:hidden}
.shop-product-card-v2 .shop-product-facts{display:none}
.shop-product-card-v2 .shop-product-notes{margin-top:13px;display:flex;gap:5px;flex-wrap:nowrap;overflow:hidden}
.shop-product-card-v2 .shop-product-notes span{flex:0 0 auto;padding:5px 8px;border:1px solid var(--shop-border);border-radius:999px;background:transparent;color:var(--shop-text-muted);font-size:9px}
.shop-product-card-v2 .shop-product-bottom{margin-top:auto;padding-top:17px;border-top:1px solid var(--shop-border);align-items:center}
.shop-product-card-v2 .shop-product-commerce{display:grid;gap:4px}.shop-product-card-v2 .shop-product-price strong{font-size:17px}.shop-product-card-v2 .shop-card-stock{font-size:9px}.shop-product-card-v2 .shop-product-add{border-radius:12px;min-height:42px}.shop-product-card-v2 .shop-product-add.is-full{padding-inline:13px;font-size:10px}.shop-product-card-v2 .shop-favorite-button{width:38px;height:38px;background:color-mix(in srgb,var(--shop-surface) 88%,transparent);border-color:var(--shop-border)}

/* Home paths and editorial blocks */
.shop-home-featured-v4{background:var(--shop-bg-soft)}
.shop-path-grid-v4{display:grid;grid-template-columns:1fr 1fr 1.15fr;gap:16px}
.shop-path-grid-v4>a,.shop-path-grid-v4>button{position:relative;min-height:300px;display:flex;flex-direction:column;align-items:flex-start;justify-content:flex-end;padding:30px;border:1px solid var(--shop-border);border-radius:26px;background:var(--shop-surface);color:var(--shop-text);text-align:right;overflow:hidden;transition:.25s ease}
.shop-path-grid-v4>a::before,.shop-path-grid-v4>button::before{content:"";position:absolute;width:240px;height:240px;border-radius:50%;top:-120px;left:-90px;background:rgba(37,99,235,.1)}
.shop-path-grid-v4>button{background:#10151f;color:#fff;border-color:rgba(96,165,250,.22)}
.shop-path-grid-v4 small{color:var(--shop-accent-text);font:800 10px Manrope,sans-serif;letter-spacing:.14em}.shop-path-grid-v4 h3{margin:10px 0 7px;font-size:28px}.shop-path-grid-v4 p{margin:0 0 24px;color:var(--shop-text-soft);font-size:13px;line-height:1.9}.shop-path-grid-v4 button p{color:#aebbd0}.shop-path-grid-v4 span{font-size:12px;font-weight:800;color:var(--shop-accent-text)}.shop-path-grid-v4>a:hover,.shop-path-grid-v4>button:hover{transform:translateY(-5px);box-shadow:var(--shop-shadow-md)}
.shop-home-guide-v4{background:#020617;color:#f8fafc}
.shop-home-guide-card-v4{display:grid;grid-template-columns:1fr 1fr;gap:70px;align-items:center;padding:clamp(34px,6vw,74px);border:1px solid rgba(148,163,184,.18);border-radius:32px;background:linear-gradient(140deg,rgba(37,99,235,.14),rgba(255,255,255,.025))}.shop-home-guide-card-v4 h2{margin:15px 0;font-size:clamp(32px,5vw,60px)}.shop-home-guide-card-v4 p{color:#a9b5c8;line-height:2}.shop-home-guide-card-v4 ol{list-style:none;padding:0;margin:0;display:grid}.shop-home-guide-card-v4 li{display:grid;grid-template-columns:62px 1fr;gap:16px;align-items:center;padding:20px 0;border-bottom:1px solid rgba(148,163,184,.16)}.shop-home-guide-card-v4 li:last-child{border-bottom:0}.shop-home-guide-card-v4 li>b{font:800 20px Manrope;color:#60a5fa}.shop-home-guide-card-v4 li span{display:grid;gap:4px}.shop-home-guide-card-v4 li small{color:#8492a8}
.shop-story-grid-v4{display:grid;grid-template-columns:.85fr 1.15fr;gap:clamp(40px,8vw,120px);align-items:center}.shop-story-visual-v4{min-height:470px;display:flex;flex-direction:column;justify-content:flex-end;padding:42px;border-radius:30px;background:linear-gradient(145deg,#10151f,#020617);color:#fff;overflow:hidden}.shop-story-visual-v4 span{color:#60a5fa;font:800 11px Manrope;letter-spacing:.18em}.shop-story-visual-v4 strong{margin-top:14px;font:700 clamp(42px,6vw,76px)/1.03 Manrope;letter-spacing:-.06em}

/* Catalog v4 */
.shop-catalog-intro-v4{padding:48px 0 34px;border-bottom:1px solid var(--shop-border);background:linear-gradient(180deg,color-mix(in srgb,var(--shop-bg-soft) 70%,var(--shop-bg)),var(--shop-bg))}
.shop-catalog-intro-grid{display:grid;grid-template-columns:1fr minmax(360px,.72fr);gap:60px;align-items:end}.shop-catalog-intro-grid h1{margin:12px 0 10px;font-size:clamp(38px,6vw,68px);line-height:1.1}.shop-catalog-intro-grid p{margin:0;max-width:680px;color:var(--shop-text-soft)}.shop-catalog-intro-search label{height:58px;display:flex;align-items:center;gap:12px;padding:0 17px;border:1px solid var(--shop-border);border-radius:16px;background:var(--shop-surface)}.shop-catalog-intro-search svg{width:20px}.shop-catalog-intro-search input{flex:1;min-width:0;border:0;outline:0;background:transparent;color:var(--shop-text)}.shop-catalog-intro-search>div{display:flex;gap:20px;margin-top:13px;color:var(--shop-text-muted);font-size:11px}.shop-catalog-intro-search strong{color:var(--shop-text);font-size:14px}
.shop-catalog-section-v4{padding:36px 0 100px}
.shop-category-rail-v4{margin:0 0 22px;padding:24px;border:1px solid var(--shop-border);border-radius:24px;background:var(--shop-surface)}
.shop-category-rail-v4>header{display:flex;align-items:end;justify-content:space-between;gap:20px;margin-bottom:18px}.shop-category-rail-v4>header span{color:var(--shop-accent-text);font-size:10px;font-weight:800}.shop-category-rail-v4>header h2{margin:5px 0 0;font-size:24px}.shop-category-rail-v4>header button{border:0;background:transparent;color:var(--shop-accent-text);font-weight:800}
.shop-category-rail-v4 .shop-category-showcase-grid{display:flex;gap:10px;overflow-x:auto;padding-bottom:3px;scrollbar-width:thin;scroll-snap-type:x proximity}
.shop-category-rail-v4 .shop-catalog-category-card{position:relative;flex:1 0 180px;min-height:128px;max-width:280px;padding:18px;border:1px solid var(--shop-border);border-radius:18px;background:linear-gradient(145deg,color-mix(in srgb,var(--category-color) 20%,var(--shop-surface)),var(--shop-surface));overflow:hidden;scroll-snap-align:start;text-align:right}
.shop-category-rail-v4 .shop-catalog-category-card img{position:absolute;inset:0;width:100%;height:100%;object-fit:cover}.shop-category-rail-v4 .shop-category-card-overlay{position:absolute;inset:0;background:linear-gradient(to top,rgba(2,6,23,.92),rgba(2,6,23,.18))}.shop-category-rail-v4 .shop-category-monogram{position:absolute;inset-inline-start:12px;top:-28px;color:color-mix(in srgb,var(--category-color) 80%,transparent);font:900 120px/1 Manrope;opacity:.42}.shop-category-rail-v4 .shop-category-card-copy{position:relative;z-index:2;height:100%;display:flex;flex-direction:column;align-items:flex-start;justify-content:flex-end}.shop-category-rail-v4 .shop-category-card-copy small{font-size:9px;color:var(--shop-accent-text)}.shop-category-rail-v4 .has-image .shop-category-card-copy small,.shop-category-rail-v4 .has-image .shop-category-card-copy strong{color:#fff}.shop-category-rail-v4 .shop-category-card-copy strong{margin-top:5px;font-size:17px}.shop-category-rail-v4 .shop-category-card-copy em{display:none}.shop-category-rail-v4 .shop-category-card-copy i{position:absolute;inset-inline-end:0;bottom:0}.shop-category-rail-v4 .shop-catalog-category-card.active{border-color:var(--shop-accent);box-shadow:0 0 0 2px rgba(37,99,235,.14)}
.shop-category-chips-v4{display:flex;gap:7px;overflow:auto;margin-bottom:14px;padding:4px 0;scrollbar-width:none}.shop-category-chips-v4 button{flex:0 0 auto;min-height:38px;padding:0 14px;border:1px solid var(--shop-border);border-radius:999px;background:var(--shop-surface);color:var(--shop-text-soft);font-size:11px;font-weight:800}.shop-category-chips-v4 button.active{background:var(--shop-accent);border-color:var(--shop-accent);color:#fff}
.shop-catalog-toolbar-v4{top:78px;min-height:70px;margin-bottom:18px;padding:11px 15px;border:1px solid var(--shop-border);border-radius:18px;background:color-mix(in srgb,var(--shop-bg) 88%,transparent);box-shadow:none;backdrop-filter:blur(18px)}
.shop-catalog-toolbar-v4 .shop-catalog-summary{display:flex;align-items:center;gap:10px}.shop-catalog-toolbar-v4 .shop-catalog-summary strong{font-size:14px}.shop-catalog-toolbar-v4 .shop-catalog-summary span{font-size:11px}.shop-catalog-toolbar-v4 .shop-sort{min-height:44px;border-radius:12px}.shop-catalog-toolbar-v4 .shop-filter-toggle{min-height:44px;border-radius:12px}
.shop-catalog-layout-v4{grid-template-columns:250px minmax(0,1fr);gap:18px;align-items:start}.shop-filter-panel-v4{position:sticky;top:164px;border-radius:20px;box-shadow:none}.shop-filter-panel-v4 fieldset{padding-block:15px}.shop-catalog-grid-v4{grid-template-columns:repeat(auto-fit,minmax(230px,1fr));align-items:stretch}

/* Cart and checkout */
.shop-cart-drawer{width:min(460px,100vw);background:var(--shop-bg);border-inline-start:1px solid var(--shop-border)}
.shop-drawer-head>div>span{display:block;color:var(--shop-accent-text);font:800 9px Manrope;letter-spacing:.16em}.shop-drawer-head h2{margin:3px 0}
.shop-cart-shipping-progress{margin:0 18px 14px;padding:14px;border:1px solid var(--shop-border);border-radius:15px;background:var(--shop-surface)}.shop-cart-shipping-progress>div{display:flex;justify-content:space-between;gap:12px;margin-bottom:9px;font-size:10px}.shop-cart-shipping-progress b{color:var(--shop-accent-text)}.shop-cart-shipping-progress>i{display:block;height:5px;border-radius:99px;background:var(--shop-bg-soft);overflow:hidden}.shop-cart-shipping-progress>i>span{display:block;height:100%;border-radius:inherit;background:var(--shop-accent)}
.shop-cart-item{grid-template-columns:72px 1fr auto;padding:14px 18px;gap:13px}.shop-cart-item>div:nth-child(2)>small{color:var(--shop-text-muted);font-size:9px}.shop-cart-item h3{margin:3px 0 2px;font-size:13px}.shop-cart-thumb{width:72px;height:88px;border-radius:13px}
.shop-cart-recommendations{padding:0 18px 16px}.shop-cart-recommendations>header{display:flex;justify-content:space-between;gap:10px;margin-bottom:10px;font-size:11px}.shop-cart-recommendations>header a{color:var(--shop-accent-text)}.shop-cart-recommendations>div{display:grid;gap:7px}.shop-cart-recommendations article{display:grid;grid-template-columns:1fr auto;gap:8px;align-items:center;padding:8px;border:1px solid var(--shop-border);border-radius:13px;background:var(--shop-surface)}.shop-cart-recommendations article>a{display:grid;grid-template-columns:48px 1fr;align-items:center;gap:9px;min-width:0}.shop-cart-recommendations img,.shop-cart-recommendations .shop-bottle-scene{width:48px;height:56px;object-fit:contain}.shop-cart-recommendations article span{display:grid;min-width:0}.shop-cart-recommendations article b{overflow:hidden;text-overflow:ellipsis;white-space:nowrap;font-size:11px}.shop-cart-recommendations article small{color:var(--shop-text-muted);font-size:9px}.shop-cart-recommendations article>button{width:34px;height:34px;border:1px solid var(--shop-border);border-radius:10px;background:transparent;color:var(--shop-accent);font-size:18px}.shop-cart-summary>p{display:flex;justify-content:space-between;margin:0 0 13px;color:var(--shop-text-muted);font-size:11px}.shop-cart-summary>p b{color:var(--shop-text)}
.shop-modal-wide{width:min(1120px,calc(100vw - 28px))}.shop-checkout-v4{padding:0}.shop-checkout-steps{display:grid;grid-template-columns:repeat(3,1fr);gap:0;margin:0 0 24px;border:1px solid var(--shop-border);border-radius:16px;overflow:hidden}.shop-checkout-steps>div{position:relative;display:flex;align-items:center;justify-content:center;gap:9px;min-height:60px;padding:10px;border-inline-start:1px solid var(--shop-border);color:var(--shop-text-muted);background:var(--shop-bg-soft)}.shop-checkout-steps>div:first-child{border-inline-start:0}.shop-checkout-steps i{width:27px;height:27px;display:grid;place-items:center;border:1px solid var(--shop-border);border-radius:50%;font-style:normal;font-size:11px}.shop-checkout-steps .active{background:color-mix(in srgb,var(--shop-accent) 8%,var(--shop-surface));color:var(--shop-text)}.shop-checkout-steps .active i,.shop-checkout-steps .done i{background:var(--shop-accent);border-color:var(--shop-accent);color:#fff}.shop-checkout-steps .done{color:var(--shop-text-soft)}
.shop-checkout-layout-v4{display:grid;grid-template-columns:minmax(0,1.2fr) minmax(300px,.8fr);gap:22px;align-items:start}.shop-checkout-panels{min-height:480px;display:flex;flex-direction:column;padding:24px;border:1px solid var(--shop-border);border-radius:20px;background:var(--shop-surface)}.shop-checkout-panels>section>header{margin-bottom:22px}.shop-checkout-panels>section>header>span{color:var(--shop-accent-text);font:800 9px Manrope;letter-spacing:.15em}.shop-checkout-panels>section>header h3{margin:6px 0;font-size:24px}.shop-checkout-panels>section>header p{margin:0;color:var(--shop-text-muted);font-size:12px}.shop-checkout-v4 .shop-field input,.shop-checkout-v4 .shop-field textarea,.shop-checkout-v4 .shop-field select{min-height:48px;border-radius:12px}.shop-checkout-v4 .shop-field small{color:var(--shop-text-muted);font-size:9px}.shop-checkout-v4 textarea{min-height:94px}.shop-checkout-actions{display:flex;justify-content:space-between;gap:10px;margin-top:auto;padding-top:24px}.shop-checkout-actions .shop-button-primary{margin-inline-start:auto}.shop-checkout-summary{position:sticky;top:100px;padding:22px;border:1px solid var(--shop-border);border-radius:20px;background:var(--shop-bg-soft)}.shop-checkout-summary>header{display:flex;justify-content:space-between;align-items:center;margin-bottom:16px}.shop-checkout-summary>header h3{margin:0}.shop-checkout-summary>header span{color:var(--shop-text-muted);font-size:10px}.shop-checkout-list{display:grid;gap:11px;max-height:260px;overflow:auto;padding-bottom:15px;border-bottom:1px solid var(--shop-border)}.shop-checkout-list>div{display:flex;justify-content:space-between;gap:15px}.shop-checkout-list span{display:grid;gap:2px}.shop-checkout-list b{font-size:11px}.shop-checkout-list small{color:var(--shop-text-muted);font-size:9px}.shop-checkout-list strong{white-space:nowrap;font-size:10px}.shop-checkout-totals{padding-top:12px}.shop-checkout-totals p{display:flex;justify-content:space-between;gap:15px;margin:8px 0;font-size:11px}.shop-checkout-totals p:last-child{margin-top:15px;padding-top:13px;border-top:1px solid var(--shop-border);font-size:14px}.shop-checkout-trust{display:flex;gap:8px;align-items:flex-start;margin-top:15px;padding:11px;border-radius:12px;background:color-mix(in srgb,var(--shop-accent) 8%,var(--shop-surface));color:var(--shop-text-soft);font-size:9px;line-height:1.7}.shop-checkout-trust svg{flex:0 0 16px;width:16px}.shop-checkout-review-card{display:grid;gap:12px}.shop-checkout-review-card>div,.shop-checkout-review-card>label{display:flex;align-items:flex-start;gap:12px;padding:16px;border:1px solid var(--shop-border);border-radius:15px;background:var(--shop-bg-soft)}.shop-checkout-review-card svg{flex:0 0 20px;color:var(--shop-accent)}.shop-checkout-review-card span{display:grid;gap:3px}.shop-checkout-review-card small{color:var(--shop-text-muted);line-height:1.8}.shop-checkout-review-card label input{margin-top:4px}.shop-inline-spinner{width:16px;height:16px;border:2px solid rgba(255,255,255,.45);border-top-color:#fff;border-radius:50%;animation:shopSpin .7s linear infinite}.shop-order-success-v4>small{display:block;margin-top:15px;color:var(--shop-accent-text);font:800 10px Manrope;letter-spacing:.16em}.shop-order-next-steps{display:grid;grid-template-columns:repeat(3,1fr);gap:8px;margin:25px 0}.shop-order-next-steps div{display:grid;gap:5px;padding:13px;border:1px solid var(--shop-border);border-radius:13px}.shop-order-next-steps b{color:var(--shop-accent-text)}.shop-order-next-steps span{font-size:10px}

/* Light mode: keep day surfaces light (do not force navy bands). */
html[data-theme="light"] .shop-home-hero-v4 .shop-kicker b{color:#2563eb}

@media(max-width:1100px){.shop-home-hero-layout{grid-template-columns:1fr .8fr;gap:34px}.shop-profile-shortcuts{grid-template-columns:repeat(2,1fr)}.shop-catalog-intro-grid{grid-template-columns:1fr .85fr}.shop-catalog-layout-v4{grid-template-columns:220px minmax(0,1fr)}.shop-path-grid-v4{grid-template-columns:1fr 1fr}.shop-path-grid-v4>button{grid-column:1/-1;min-height:220px}.shop-category-card-v4:nth-child(n){grid-column:span 6}.shop-checkout-layout-v4{grid-template-columns:1fr 320px}}
@media(max-width:900px){.shop-home-hero-layout{grid-template-columns:1fr;padding-block:52px}.shop-home-product-stage{min-height:520px;max-width:620px;width:100%;margin-inline:auto}.shop-home-hero-copy{text-align:center;margin-inline:auto}.shop-home-hero-copy>p{margin-inline:auto}.shop-home-hero-actions{justify-content:center}.shop-profile-shortcuts{text-align:right}.shop-home-trust-v4 .shop-container{grid-template-columns:repeat(2,1fr)}.shop-home-trust-v4 article:nth-child(3){border-top:1px solid rgba(148,163,184,.14)}.shop-home-trust-v4 article:nth-child(4){border-top:1px solid rgba(148,163,184,.14)}.shop-home-guide-card-v4,.shop-story-grid-v4{grid-template-columns:1fr}.shop-catalog-intro-grid{grid-template-columns:1fr;gap:25px}.shop-catalog-layout-v4{grid-template-columns:1fr}.shop-filter-panel-v4{position:fixed;top:auto}.shop-checkout-layout-v4{grid-template-columns:1fr}.shop-checkout-summary{position:relative;top:auto}.shop-checkout-panels{min-height:0}}
@media(max-width:720px){.shop-section-heading-v4{grid-template-columns:1fr;align-items:start;gap:12px}.shop-section-heading-v4>a{margin-top:3px}.shop-home-hero-v4{min-height:auto}.shop-home-hero-copy h1{font-size:clamp(42px,13vw,66px)}.shop-home-product-stage{min-height:430px}.shop-profile-shortcuts{grid-template-columns:1fr 1fr;margin-top:30px}.shop-profile-shortcuts a{min-height:70px;padding:13px}.shop-home-trust-v4 article{padding:17px 15px}.shop-category-grid-v4{grid-template-columns:1fr}.shop-category-card-v4:nth-child(n){grid-column:auto;min-height:230px;padding:24px}.shop-category-card-v4 .shop-category-arrow{bottom:22px;inset-inline-end:22px}.shop-path-grid-v4{grid-template-columns:1fr}.shop-path-grid-v4>button{grid-column:auto}.shop-home-guide-card-v4{padding:28px;gap:28px}.shop-story-visual-v4{min-height:330px}.shop-catalog-intro-v4{padding-top:32px}.shop-catalog-intro-grid h1{font-size:42px}.shop-category-rail-v4{padding:17px;border-radius:18px}.shop-category-rail-v4 .shop-catalog-category-card{flex-basis:155px;min-height:115px}.shop-catalog-toolbar-v4{top:69px;align-items:flex-start}.shop-catalog-toolbar-v4 .shop-catalog-summary span{display:none}.shop-catalog-tools{width:auto}.shop-catalog-grid-v4,.shop-home-product-grid-v4{grid-template-columns:repeat(2,minmax(0,1fr));gap:10px}.shop-product-card-v2 .shop-product-info{padding:12px}.shop-product-card-v2 h3{font-size:14px}.shop-product-card-v2 .shop-product-summary{display:none}.shop-product-card-v2 .shop-product-notes{display:none}.shop-product-card-v2 .shop-product-price strong{font-size:13px}.shop-product-card-v2 .shop-product-price small{font-size:8px}.shop-product-card-v2 .shop-product-category .ltr{display:none}.shop-product-card-v2 .shop-product-add.is-full{width:38px;min-width:38px;height:38px;padding:0}.shop-product-card-v2 .shop-product-add.is-full span{display:none}.shop-checkout-steps>div{min-height:52px;padding:7px}.shop-checkout-steps span{display:none}.shop-checkout-panels{padding:17px}.shop-checkout-actions{position:sticky;bottom:-1px;z-index:3;margin:20px -17px -17px;padding:13px 17px;background:var(--shop-surface);border-top:1px solid var(--shop-border)}.shop-order-next-steps{grid-template-columns:1fr}}
@media(max-width:390px){.shop-catalog-grid-v4,.shop-home-product-grid-v4{grid-template-columns:1fr 1fr}.shop-home-hero-actions{display:grid}.shop-home-hero-actions .shop-button{width:100%}.shop-catalog-intro-search>div{flex-direction:column;gap:4px}}

/* Commerce UX 4.0: content must never depend on IntersectionObserver. */
.commerce-home-v4 .shop-reveal,
.commerce-catalog-v4 .shop-reveal {
  opacity: 1;
  transform: none;
}

/* Phase 6 — promotions, gift cards and loyalty checkout */
.shop-checkout-benefits{margin-top:22px;padding:20px;border:1px solid color-mix(in srgb,var(--shop-accent) 24%,var(--shop-line));border-radius:18px;background:color-mix(in srgb,var(--shop-accent) 5%,var(--shop-surface));}
.shop-checkout-benefits>header{margin-bottom:16px}.shop-checkout-benefits>header span{font-size:.72rem;letter-spacing:.14em;color:var(--shop-accent);font-weight:800}.shop-checkout-benefits>header h4{margin:5px 0 4px;font-size:1.05rem}.shop-checkout-benefits>header p{margin:0;color:var(--shop-muted);font-size:.86rem}
.shop-checkout-benefit-grid{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:12px;align-items:end}.shop-benefit-apply{display:flex;align-items:end}.shop-benefit-apply .shop-button{width:100%;min-height:46px}
.shop-checkout-totals p.is-benefit strong{color:#16845b}.shop-checkout-totals p.is-final{margin-top:10px;padding-top:14px;border-top:1px solid var(--shop-line);font-size:1.03rem}.shop-checkout-totals p.is-final strong{font-size:1.15rem;color:var(--shop-text)}
.shop-checkout-benefit-errors{display:grid;gap:7px;margin:12px 0}.shop-checkout-benefit-errors p{display:flex;gap:7px;align-items:center;margin:0;padding:9px 11px;border-radius:10px;background:rgba(220,38,38,.08);color:#b42318;font-size:.82rem}.shop-checkout-benefit-errors svg{width:16px;height:16px;flex:0 0 auto}
.shop-order-saving{margin:14px auto!important;padding:10px 14px;border-radius:999px;background:rgba(22,132,91,.09);color:#137054;font-weight:750;width:max-content;max-width:100%}
[data-theme="dark"] .shop-checkout-benefit-errors p{color:#ffb4ad;background:rgba(220,38,38,.16)}
@media(max-width:760px){.shop-checkout-benefit-grid{grid-template-columns:1fr}.shop-checkout-benefits{padding:16px}}

/* ========================================================================== */
/* Storefront CMS & navigation refresh — 0.11.26                              */
/* ========================================================================== */
.shop-category-nav{position:relative;display:flex;align-items:stretch;height:100%}
.shop-category-nav>button{display:inline-flex;align-items:center;gap:7px;min-height:46px;padding:0 4px;border:0;background:transparent;color:var(--shop-text);font:inherit;font-size:12px;font-weight:700;cursor:pointer}
.shop-category-nav>button>span{font-size:11px;transition:transform .2s ease}
.shop-category-nav.open>button>span,.shop-category-nav:focus-within>button>span{transform:rotate(180deg)}
.shop-mega-menu{position:absolute;z-index:1150;top:calc(100% + 14px);right:50%;display:grid;grid-template-columns:240px minmax(460px,690px);width:min(920px,calc(100vw - 40px));min-height:380px;border:1px solid var(--shop-border);border-radius:24px;background:color-mix(in srgb,var(--shop-surface) 97%,transparent);box-shadow:0 35px 90px rgba(15,23,42,.2);backdrop-filter:blur(24px);overflow:hidden;opacity:0;visibility:hidden;pointer-events:none;transform:translate(50%,-8px);transition:opacity .18s ease,transform .18s ease,visibility .18s}
.shop-category-nav:hover .shop-mega-menu,.shop-category-nav:focus-within .shop-mega-menu,.shop-category-nav.open .shop-mega-menu{opacity:1;visibility:visible;pointer-events:auto;transform:translate(50%,0)}
.shop-mega-parents{display:grid;align-content:start;gap:5px;padding:16px;background:var(--shop-bg-soft);border-inline-end:1px solid var(--shop-border)}
.shop-mega-parents>a{display:grid;grid-template-columns:42px minmax(0,1fr);grid-template-rows:auto auto;gap:1px 10px;align-items:center;min-height:64px;padding:9px 10px;border:1px solid transparent;border-radius:14px;color:var(--shop-text);text-decoration:none;transition:.18s ease}
.shop-mega-parents>a>span{grid-row:1/3;display:grid;place-items:center;width:42px;height:42px;border-radius:12px;background:var(--shop-surface);border:1px solid var(--shop-border);color:var(--shop-accent-text);font-weight:900}
.shop-mega-parents>a>b{font-size:12px}.shop-mega-parents>a>small{color:var(--shop-text-muted);font-size:8px}
.shop-mega-parents>a:hover,.shop-mega-parents>a.active{border-color:color-mix(in srgb,var(--shop-accent) 35%,var(--shop-border));background:var(--shop-surface);box-shadow:0 10px 25px rgba(15,23,42,.07)}
.shop-mega-children{position:relative;padding:26px;min-width:0}.shop-mega-children>section{display:none}.shop-mega-children>section.active{display:block;animation:shopMegaIn .18s ease}
@keyframes shopMegaIn{from{opacity:0;transform:translateX(6px)}to{opacity:1;transform:none}}
.shop-mega-children section>header{display:flex;justify-content:space-between;gap:20px;padding-bottom:19px;margin-bottom:18px;border-bottom:1px solid var(--shop-border)}
.shop-mega-children section>header small{color:var(--shop-accent-text);font:800 8px Manrope;letter-spacing:.13em}.shop-mega-children section>header h3{margin:5px 0;font-size:25px}.shop-mega-children section>header p{max-width:430px;margin:0;color:var(--shop-text-muted);font-size:10px;line-height:1.8}.shop-mega-children section>header>a{align-self:flex-start;white-space:nowrap;color:var(--shop-accent-text);font-size:10px;font-weight:800}
.shop-mega-children section>div{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:10px}
.shop-mega-children section>div>a{display:grid;grid-template-columns:48px minmax(0,1fr);grid-template-rows:auto auto;align-items:center;gap:2px 10px;min-height:70px;padding:10px;border:1px solid var(--shop-border);border-radius:14px;background:var(--shop-surface);color:var(--shop-text);text-decoration:none;transition:.18s ease}
.shop-mega-children section>div>a:hover{border-color:var(--shop-accent);transform:translateY(-2px);box-shadow:0 12px 30px rgba(15,23,42,.08)}
.shop-mega-children section>div>a>span{grid-row:1/3;display:grid;place-items:center;width:48px;height:48px;border-radius:11px;background:var(--shop-bg-soft);overflow:hidden;color:var(--shop-accent-text);font-weight:900}.shop-mega-children section>div>a img{width:100%;height:100%;object-fit:cover}.shop-mega-children section>div>a>b{font-size:10px}.shop-mega-children section>div>a>small{color:var(--shop-text-muted);font-size:8px}.shop-mega-empty{grid-column:1/-1!important}

.shop-home-hero-v4{min-height:var(--shop-home-hero-min-height,640px)}
.shop-home-hero-layout{min-height:var(--shop-home-hero-min-height,640px)}
body[data-home-hero-layout="media-left"] .shop-home-hero-copy{order:2}body[data-home-hero-layout="media-left"] .shop-home-product-stage{order:1}
body[data-home-hero-layout="centered"] .shop-home-hero-layout{grid-template-columns:1fr;text-align:center;justify-items:center;padding-block:72px}body[data-home-hero-layout="centered"] .shop-home-hero-copy{max-width:850px}body[data-home-hero-layout="centered"] .shop-home-hero-copy>p{margin-inline:auto}body[data-home-hero-layout="centered"] .shop-home-hero-actions{justify-content:center}body[data-home-hero-layout="centered"] .shop-home-product-stage{width:min(680px,100%)}
body[data-home-hero-layout="full"] .shop-home-hero-layout{position:relative;grid-template-columns:1fr;min-height:var(--shop-home-hero-min-height,640px);align-items:end;padding-block:70px}body[data-home-hero-layout="full"] .shop-home-product-stage{position:absolute;inset:0;max-width:none;min-height:100%;z-index:0;opacity:.58}body[data-home-hero-layout="full"] .shop-home-hero-copy{position:relative;z-index:2;max-width:760px;padding:34px;border:1px solid rgba(148,163,184,.2);border-radius:28px;background:color-mix(in srgb,var(--shop-bg) 78%,transparent);backdrop-filter:blur(18px)}
.shop-hero-custom-media{width:100%;height:100%;min-height:var(--shop-home-hero-min-height,640px);border-radius:30px;overflow:hidden;background:var(--shop-surface);border:1px solid var(--shop-border)}.shop-hero-custom-media img{width:100%;height:100%;min-height:inherit}.shop-hero-custom-media.is-logo{display:grid;place-items:center;padding:clamp(38px,8vw,100px)}.shop-hero-custom-media.is-logo img{max-width:78%;max-height:420px;min-height:0}
body[data-home-section-style="boxed"] [data-home-section]{width:min(calc(100% - 36px),var(--shop-container));margin:28px auto;padding:45px 0;border:1px solid var(--shop-border);border-radius:28px;background:var(--shop-surface)}body[data-home-section-style="boxed"] [data-home-section]>.shop-container{width:min(calc(100% - 44px),var(--shop-container))}
body[data-home-section-style="minimal"] [data-home-section]{padding-block:54px}body[data-home-section-style="minimal"] .shop-section-heading-v4 p{display:none}
.shop-category-grid-v4{display:grid;grid-template-columns:repeat(var(--shop-home-category-columns,3),minmax(0,1fr));grid-auto-rows:var(--shop-home-category-height,280px);gap:14px}
.shop-category-card-v4:nth-child(n){grid-column:auto;grid-row:auto;min-height:0;height:100%}
body[data-home-category-layout="editorial"] .shop-category-card-v4.size-wide{grid-column:span 2}body[data-home-category-layout="editorial"] .shop-category-card-v4.size-tall{grid-row:span 2}body[data-home-category-layout="editorial"] .shop-category-card-v4.size-featured{grid-column:span 2;grid-row:span 2}
.shop-category-card-v4.media-logo .shop-category-image{object-fit:contain!important;padding:clamp(26px,5vw,64px);background:color-mix(in srgb,var(--category-color) 18%,var(--shop-surface))}.shop-category-card-v4.media-logo:after{background:linear-gradient(to top,color-mix(in srgb,var(--shop-bg) 84%,transparent),transparent 68%)}
.shop-category-card-v4.media-monogram .shop-category-symbol{position:absolute;inset:auto auto 14px 18px;font:900 clamp(75px,10vw,160px)/1 Manrope;color:color-mix(in srgb,var(--category-color) 65%,var(--shop-text));opacity:.22}
.shop-category-rail-v4 .shop-category-showcase-grid{display:grid;grid-template-columns:repeat(var(--shop-category-columns,4),minmax(0,1fr));gap:10px;overflow:visible}.shop-category-rail-v4 .shop-catalog-category-card{min-width:0;max-width:none;min-height:var(--shop-category-height,190px);height:var(--shop-category-height,190px)}.shop-category-rail-v4 .shop-catalog-category-card.size-wide{grid-column:span 2}.shop-category-rail-v4 .shop-catalog-category-card.size-tall,.shop-category-rail-v4 .shop-catalog-category-card.size-featured{min-height:calc(var(--shop-category-height,190px) * 1.35);height:calc(var(--shop-category-height,190px) * 1.35)}.shop-category-rail-v4 .shop-catalog-category-card.media-logo img{object-fit:contain!important;padding:22px;background:color-mix(in srgb,var(--category-color) 16%,var(--shop-surface))}

.shop-product-gallery-v3{position:relative;top:auto}.shop-product-gallery-v3.is-sticky{position:sticky;top:116px}.shop-product-gallery-v3 .shop-product-main-media{min-height:var(--shop-product-media-height,620px);height:var(--shop-product-media-height,620px)}.shop-product-gallery-v3 .shop-product-main-media>img{min-height:0;height:100%;object-fit:var(--shop-product-media-fit,contain)}body[data-product-media-fit="cover"] .shop-product-gallery-v3 .shop-product-main-media>img{object-fit:cover;padding:0}body[data-product-media-fit="contain"] .shop-product-gallery-v3 .shop-product-main-media>img{object-fit:contain}

.shop-content-article{max-width:980px;margin-inline:auto}.shop-content-article.template-wide{max-width:1280px}.shop-content-article.template-landing{max-width:none}.shop-content-page-header{position:relative;display:grid;align-items:end;min-height:260px;margin:20px 0 34px;border:1px solid var(--shop-border);border-radius:26px;overflow:hidden;background:var(--shop-surface)}.shop-content-page-header>img{position:absolute;inset:0;width:100%;height:100%;object-fit:cover}.shop-content-page-header>img+div{position:relative;z-index:1;padding:34px;background:linear-gradient(to top,rgba(2,6,23,.88),rgba(2,6,23,.08));color:#fff}.shop-content-page-header>div{padding:34px}.shop-content-page-header h1{margin:6px 0;font-size:clamp(34px,6vw,68px)}.shop-content-page-header p{max-width:720px;margin:0;line-height:1.9}.shop-content-body{display:grid;gap:24px;padding-bottom:70px}.content-block{border-radius:22px}.content-block.align-center{text-align:center}.content-block.align-left{text-align:left;direction:ltr}.content-block-hero{position:relative;display:grid;grid-template-columns:minmax(0,1fr) minmax(280px,.75fr);align-items:center;min-height:400px;padding:clamp(28px,5vw,64px);border:1px solid var(--shop-border);overflow:hidden;background:var(--shop-surface)}.content-block-hero-media{position:absolute;inset:0}.content-block-hero-media img{width:100%;height:100%}.content-block-hero-media:after{content:"";position:absolute;inset:0;background:linear-gradient(90deg,color-mix(in srgb,var(--shop-bg) 94%,transparent) 15%,color-mix(in srgb,var(--shop-bg) 68%,transparent),transparent)}.content-block-hero>div:last-child{position:relative;z-index:2;max-width:650px}.content-block-hero h2{margin:8px 0;font-size:clamp(32px,5vw,62px)}.content-block-hero p{line-height:2}.content-block-heading{padding:20px 0}.content-block-heading h2,.content-block-heading h3{margin:0;font-size:clamp(27px,4vw,44px)}.content-block-heading p{color:var(--shop-text-muted)}.content-block-text{padding:24px;border:1px solid var(--shop-border);background:var(--shop-surface);font-size:14px;line-height:2.2}.content-block-text.width-narrow{max-width:700px;margin-inline:auto}.content-block-text.width-wide{font-size:15px}.content-block-image{margin:0;overflow:hidden;border:1px solid var(--shop-border);background:var(--shop-surface)}.content-block-image img{display:block;width:100%}.content-block-image figcaption{padding:12px 17px;color:var(--shop-text-muted);font-size:10px}.content-block-quote{margin:0;padding:42px;border-inline-start:5px solid var(--shop-accent);background:color-mix(in srgb,var(--shop-accent) 7%,var(--shop-surface));font-size:clamp(20px,3vw,32px);line-height:1.8}.content-block-quote cite{display:block;margin-top:18px;color:var(--shop-text-muted);font-size:11px;font-style:normal}.content-block-cta{display:flex;align-items:center;justify-content:space-between;gap:28px;padding:34px;border:1px solid var(--shop-border);background:var(--shop-surface)}.content-block-cta.style-solid{background:#07162d;color:#fff}.content-block-cta.style-outline{background:transparent;border:2px solid var(--shop-accent)}.content-block-cta h2{margin:0 0 7px}.content-block-cta p{margin:0;color:var(--shop-text-muted)}.content-block-columns{display:grid;grid-template-columns:1fr 1fr;gap:16px}.content-block-columns article{padding:28px;border:1px solid var(--shop-border);border-radius:20px;background:var(--shop-surface)}.content-block-columns p{line-height:2}.content-block-faq{padding:30px;border:1px solid var(--shop-border);background:var(--shop-surface)}.content-block-faq details{padding:15px 0;border-bottom:1px solid var(--shop-border)}.content-block-faq details:last-child{border:0}.content-block-faq summary{font-weight:800;cursor:pointer}.content-block-faq p{color:var(--shop-text-soft);line-height:2}.content-block-spacer.size-small{height:18px}.content-block-spacer.size-medium{height:50px}.content-block-spacer.size-large{height:100px}

@media(max-width:900px){.shop-category-nav{display:block;height:auto}.shop-category-nav>button{width:100%;justify-content:flex-start;padding:0 12px}.shop-mega-menu{position:static;display:none;grid-template-columns:1fr;width:100%;min-height:0;margin:4px 0;border-radius:14px;box-shadow:none;opacity:1;visibility:visible;pointer-events:auto;transform:none;background:var(--shop-bg-soft)}.shop-category-nav.open .shop-mega-menu{display:grid}.shop-mega-parents{border-inline-end:0;border-bottom:1px solid var(--shop-border)}.shop-mega-parents>a{min-height:54px}.shop-mega-children{padding:14px}.shop-mega-children section>header{display:block}.shop-mega-children section>header>a{display:inline-block;margin-top:10px}.shop-mega-children section>div{grid-template-columns:1fr 1fr}.shop-category-grid-v4{grid-template-columns:repeat(2,minmax(0,1fr))}.shop-category-rail-v4 .shop-category-showcase-grid{display:flex;overflow-x:auto}.shop-category-rail-v4 .shop-catalog-category-card{flex:0 0 min(72vw,280px)}.content-block-hero{grid-template-columns:1fr;min-height:350px}.content-block-columns{grid-template-columns:1fr}}
@media(max-width:620px){.shop-mega-children section>div{grid-template-columns:1fr}.shop-category-grid-v4{grid-template-columns:1fr;grid-auto-rows:min(var(--shop-home-category-height,280px),320px)}body[data-home-category-layout="editorial"] .shop-category-card-v4.size-wide,body[data-home-category-layout="editorial"] .shop-category-card-v4.size-featured{grid-column:auto}body[data-home-category-layout="editorial"] .shop-category-card-v4.size-tall,body[data-home-category-layout="editorial"] .shop-category-card-v4.size-featured{grid-row:auto}.shop-product-gallery-v3 .shop-product-main-media{height:min(var(--shop-product-media-height,620px),480px);min-height:360px}.content-block-cta{align-items:flex-start;flex-direction:column}.shop-content-page-header{min-height:220px}.content-block-hero,.content-block-text,.content-block-quote,.content-block-faq{padding:23px}}
@media(max-width:980px){.shop-product-gallery-v3.is-sticky{position:relative;top:auto}}

/* Product Variant Engine 0.11.60 */
.shop-product-variants button{
  appearance:none;
  display:flex;
  flex-direction:column;
  align-items:flex-start;
  gap:3px;
  min-width:128px;
  padding:12px 14px;
  border:1px solid var(--shop-line);
  border-radius:14px;
  color:var(--shop-text);
  font:inherit;
  text-align:start;
  background:var(--shop-surface-2);
  cursor:pointer;
  transition:border-color .2s ease,background .2s ease,box-shadow .2s ease,transform .2s ease;
}
.shop-product-variants button:hover:not(:disabled),
.shop-product-variants button.active{
  border-color:var(--shop-accent);
  background:color-mix(in srgb,var(--shop-accent) 9%,var(--shop-surface));
  box-shadow:0 0 0 2px color-mix(in srgb,var(--shop-accent) 12%,transparent);
  transform:translateY(-1px);
}
.shop-product-variants button span{font-weight:800}
.shop-product-variants button small{color:var(--shop-muted);font-size:11px}
.shop-product-variants button em{font-style:normal;color:var(--shop-accent);font-size:10px}
.shop-product-variants button:disabled{opacity:.48;cursor:not-allowed;filter:grayscale(.35)}
.shop-cart-variant{display:inline-flex;margin:.15rem 0 .25rem;padding:.2rem .55rem;border:1px solid var(--shop-line);border-radius:999px;color:var(--shop-muted);font-size:10px;line-height:1.4}
@media(max-width:640px){.shop-product-variants>div{display:grid;grid-template-columns:repeat(2,minmax(0,1fr))}.shop-product-variants button{min-width:0;width:100%}}

/* --------------------------------------------------------------------------
   Phase 3 polish — catalog intro, toolbar, cards (theme-safe)
   -------------------------------------------------------------------------- */
body.commerce-catalog {
  overflow-x: clip;
}

body.commerce-catalog .shop-catalog-intro-v4,
body.commerce-catalog .shop-catalog-intro-v5 {
  padding-block: clamp(36px, 5vw, 64px) clamp(28px, 4vw, 48px);
  background:
    radial-gradient(circle at 88% 0%, color-mix(in srgb, var(--shop-accent, #2f6fed) 10%, transparent), transparent 34%),
    var(--shop-bg, var(--home-bg, #f7f9fc));
  border-bottom: 1px solid var(--shop-border, var(--home-border, #dee6f1));
}

html[data-theme="dark"] body.commerce-catalog .shop-catalog-intro-v4,
html[data-theme="dark"] body.commerce-catalog .shop-catalog-intro-v5 {
  background:
    radial-gradient(circle at 88% 0%, rgba(95,141,251,.12), transparent 34%),
    var(--shop-bg, #0a0b0e);
}

body.commerce-catalog .shop-catalog-intro-grid h1 {
  letter-spacing: -.03em;
  line-height: 1.15;
}

body.commerce-catalog .shop-catalog-finder {
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 200ms ease;
}

@media (hover: hover) and (pointer: fine) {
  body.commerce-catalog .shop-catalog-finder:hover {
    transform: translateY(-3px);
    box-shadow: 0 18px 42px rgba(15, 23, 42, .09);
  }
  body.commerce-catalog .shop-product-card-v2:hover,
  body.commerce-catalog .shop-catalog-grid .shop-product-card:hover {
    transform: translateY(-5px);
    border-color: color-mix(in srgb, var(--shop-accent, #2f6fed) 34%, var(--shop-border, #dee6f1));
    box-shadow: 0 18px 42px rgba(15, 23, 42, .09);
  }
}

body.commerce-catalog .shop-product-card-v2,
body.commerce-catalog .shop-catalog-grid .shop-product-card {
  transition: transform 240ms cubic-bezier(.22,1,.36,1), box-shadow 240ms ease, border-color 200ms ease;
}

body.commerce-catalog .shop-catalog-toolbar,
body.commerce-catalog .shop-filter-panel {
  border-radius: 20px;
}

@media (max-width: 720px) {
  body.commerce-catalog .shop-catalog-intro-grid {
    gap: 18px;
  }
  body.commerce-catalog .shop-catalog-finder {
    width: 100%;
  }
  body.commerce-catalog .shop-catalog-toolbar {
    top: 72px;
    border-radius: 16px;
    padding: 10px;
  }
}

@media (prefers-reduced-motion: reduce) {
  body.commerce-catalog .shop-catalog-finder,
  body.commerce-catalog .shop-product-card-v2,
  body.commerce-catalog .shop-catalog-grid .shop-product-card {
    transition: none !important;
  }
}
