/* ===================================================================
   BlendNV — prestige beauty & cosmetics boutique
   Playfair Display (display) + Jost (body/UI)
   Cream / aubergine / blush / champagne palette
   =================================================================== */

:root {
  --cream: #FAF6F2;
  --cream-2: #F3ECE4;
  --ink: #3A2230;          /* deep aubergine/plum */
  --ink-soft: #6B5562;
  --ink-mute: #998A92;
  --blush: #C96A7A;        /* primary accent */
  --blush-soft: #D98C9A;   /* lighter accent */
  --champagne: #E7D3C4;    /* nude secondary */
  --gold: #C9A66B;         /* hairline gold */
  --line: #E7DCD3;
  --line-2: #EFE7DF;
  --white: #FFFFFF;
  --surface: #FFFFFF;

  /* aliases the app.js inline styles / shared markup expect */
  --page-bg: var(--cream);
  --bg: var(--cream);
  --text: var(--ink);
  --text2: var(--ink-soft);
  --text3: var(--ink-mute);
  --accent: var(--blush);
  --accent2: var(--blush-soft);
  --navy: var(--ink);
  --blue: var(--blush);
  --border: var(--line);
  --border-d: rgba(255,255,255,0.14);
  --grad: linear-gradient(120deg, var(--blush) 0%, var(--blush-soft) 100%);

  --radius: 14px;
  --radius-sm: 9px;
  --radius-pill: 999px;
  --shadow: 0 14px 40px rgba(58,34,48,0.10);
  --shadow-card: 0 6px 22px rgba(58,34,48,0.06);
  --header-h: 76px;
  --utility-h: 38px;

  --serif: 'Playfair Display', Georgia, 'Times New Roman', serif;
  --sans: 'Jost', system-ui, -apple-system, Segoe UI, sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--sans);
  background: var(--cream);
  color: var(--ink);
  line-height: 1.6;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  font-weight: 400;
}

h1, h2, h3, h4 { font-family: var(--serif); font-weight: 700; line-height: 1.15; color: var(--ink); }

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button { font-family: inherit; cursor: pointer; }

.container { max-width: 1240px; margin: 0 auto; padding: 0 28px; }

/* ── Utility strip ── */
.utility-strip {
  background: var(--ink);
  color: var(--cream);
  text-align: center;
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 11px 16px;
  font-weight: 500;
}
.utility-strip .dot-sep { margin: 0 10px; color: var(--blush-soft); }

/* ===================================================================
   HEADER — CENTERED LOGO, SYMMETRIC NAV ON BOTH SIDES
   =================================================================== */
.site-header {
  position: sticky; top: 0; z-index: 60;
  background: rgba(250,246,242,0.94);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.header-inner {
  max-width: 1240px; margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 18px;
  padding: 0 28px;
  min-height: var(--header-h);
}
.nav-left  { justify-self: start; }
.nav-right { justify-self: end; }
.main-nav { display: flex; align-items: center; gap: 26px; }
.main-nav a {
  font-size: 12.5px; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--ink-soft); font-weight: 500;
  position: relative; padding: 4px 0; transition: color 0.2s;
}
.main-nav a::after {
  content: ""; position: absolute; left: 0; bottom: -2px; width: 0; height: 1px;
  background: var(--blush); transition: width 0.25s;
}
.main-nav a:hover, .main-nav a.active { color: var(--ink); }
.main-nav a:hover::after, .main-nav a.active::after { width: 100%; }

.bn-logo { justify-self: center; display: inline-flex; align-items: center; }
.bn-logo img { height: 40px; width: auto; }

.header-icon-btn {
  position: relative; background: none; border: none;
  width: 40px; height: 40px; display: inline-flex; align-items: center; justify-content: center;
  color: var(--ink); border-radius: 50%; transition: background 0.18s, color 0.18s;
}
.header-icon-btn:hover { background: var(--cream-2); color: var(--blush); }
.cart-count {
  position: absolute; top: 2px; right: 0;
  background: var(--blush); color: #fff; font-size: 10px; font-weight: 600;
  min-width: 17px; height: 17px; border-radius: 999px;
  align-items: center; justify-content: center; padding: 0 4px; line-height: 1;
}

.mobile-menu-btn {
  display: none; background: none; border: none; width: 40px; height: 40px;
  flex-direction: column; align-items: center; justify-content: center; gap: 4px;
}
.mobile-menu-btn span { width: 22px; height: 1.6px; background: var(--ink); display: block; transition: 0.2s; }

/* mobile nav drawer */
.mobile-nav {
  display: none; flex-direction: column; gap: 2px;
  background: var(--cream); border-bottom: 1px solid var(--line);
  padding: 8px 28px 20px;
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  padding: 12px 0; font-size: 13px; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--ink-soft); border-bottom: 1px solid var(--line-2); font-weight: 500;
}

/* ===================================================================
   BUTTONS
   =================================================================== */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font-family: var(--sans); font-size: 12.5px; letter-spacing: 0.14em; text-transform: uppercase;
  font-weight: 500; padding: 15px 32px; border: none; cursor: pointer;
  border-radius: var(--radius-pill); transition: all 0.22s; text-align: center;
}
.btn-accent, .btn-primary {
  background: var(--ink); color: var(--cream);
}
.btn-accent:hover, .btn-primary:hover { background: var(--blush); transform: translateY(-2px); }
.btn-secondary {
  background: transparent; color: var(--ink); border: 1px solid var(--ink);
}
.btn-secondary:hover { background: var(--ink); color: var(--cream); }
.btn-outline {
  background: transparent; color: var(--ink); border: 1px solid var(--line);
}
.btn-outline:hover { border-color: var(--blush); color: var(--blush); }
.btn-ghost-light {
  background: transparent; color: #fff; border: 1px solid rgba(255,255,255,0.6);
}
.btn-ghost-light:hover { background: rgba(255,255,255,0.16); }
.btn-block { width: 100%; }

/* ===================================================================
   HERO — FULL-BLEED IMAGE WITH OVERLAID HEADLINE
   =================================================================== */
.hero {
  position: relative; min-height: 86vh; display: flex; align-items: center;
  background: var(--ink) center/cover no-repeat;
  background-image: linear-gradient(90deg, rgba(58,34,48,0.62) 0%, rgba(58,34,48,0.30) 55%, rgba(58,34,48,0.10) 100%), url('/assets/images/_hero.jpg');
}
.hero-inner { max-width: 1240px; margin: 0 auto; padding: 0 28px; width: 100%; }
.hero-copy { max-width: 560px; color: var(--cream); }
.hero-eyebrow {
  display: inline-block; font-size: 11.5px; letter-spacing: 0.28em; text-transform: uppercase;
  color: var(--blush-soft); margin-bottom: 22px; font-weight: 500;
}
.hero h1 {
  font-size: clamp(42px, 6vw, 76px); line-height: 1.04; color: var(--cream);
  margin-bottom: 20px; letter-spacing: -0.01em;
}
.hero h1 em { font-style: italic; color: var(--blush-soft); }
.hero-lede { font-size: 17px; line-height: 1.7; color: rgba(250,246,242,0.86); margin-bottom: 34px; max-width: 440px; }
.btn-hero { background: var(--cream); color: var(--ink); }
.btn-hero:hover { background: var(--blush); color: #fff; transform: translateY(-2px); }

/* ===================================================================
   SECTION SCAFFOLDING
   =================================================================== */
.section { padding: 84px 0; }
.section-wrap { max-width: 1240px; margin: 0 auto; padding: 84px 28px; }
.section-eyebrow {
  display: block; font-size: 11.5px; letter-spacing: 0.26em; text-transform: uppercase;
  color: var(--blush); margin-bottom: 12px; font-weight: 500;
}
.section-title { font-size: clamp(28px, 3.4vw, 40px); letter-spacing: -0.01em; }
.section-head {
  display: flex; align-items: flex-end; justify-content: space-between; gap: 24px;
  margin-bottom: 40px; flex-wrap: wrap;
}
.section-head--center { flex-direction: column; align-items: center; text-align: center; }
.lede { font-size: 16px; color: var(--ink-soft); max-width: 560px; }

/* ===================================================================
   FEATURED — HORIZONTAL SNAP-SCROLL CAROUSEL
   =================================================================== */
.featured-rail-wrap { position: relative; }
.featured-grid {
  display: flex; gap: 22px; overflow-x: auto; scroll-snap-type: x mandatory;
  padding: 6px 4px 26px; -webkit-overflow-scrolling: touch;
  scrollbar-width: thin; scrollbar-color: var(--champagne) transparent;
}
.featured-grid::-webkit-scrollbar { height: 6px; }
.featured-grid::-webkit-scrollbar-thumb { background: var(--champagne); border-radius: 99px; }
.featured-card {
  flex: 0 0 300px; scroll-snap-align: start; cursor: pointer;
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius);
  overflow: hidden; transition: box-shadow 0.25s, transform 0.25s; position: relative;
}
.featured-card:hover { box-shadow: var(--shadow); transform: translateY(-4px); }
.featured-img-wrap { position: relative; aspect-ratio: 1/1; background: var(--cream-2); overflow: hidden; }
.featured-img-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s; }
.featured-card:hover .featured-img-wrap img { transform: scale(1.05); }
.featured-info { padding: 18px 20px 16px; }
.featured-cat, .product-brand, .sc-brand {
  font-size: 10.5px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--blush); font-weight: 500; margin-bottom: 6px;
}
.featured-name { font-size: 19px; margin-bottom: 8px; line-height: 1.25; }
.featured-price { font-size: 16px; color: var(--ink); font-family: var(--sans); font-weight: 500; }

/* ===================================================================
   PRODUCT CARD (shop grid + related)
   =================================================================== */
.product-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(248px, 1fr)); gap: 30px 26px;
}
.product-grid-3 { display: grid; grid-template-columns: repeat(auto-fill, minmax(230px, 1fr)); gap: 28px 24px; }
.product-card {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius);
  overflow: hidden; cursor: pointer; transition: box-shadow 0.25s, transform 0.25s; position: relative;
  display: flex; flex-direction: column;
}
.product-card:hover { box-shadow: var(--shadow); transform: translateY(-4px); }
.product-img-wrap { position: relative; aspect-ratio: 1/1; background: var(--cream-2); overflow: hidden; }
.product-img-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s; }
.product-card:hover .product-img-wrap img { transform: scale(1.05); }
.product-info { padding: 18px 20px 14px; flex: 1; }
.product-name { font-size: 18px; line-height: 1.25; margin-bottom: 8px; }
.product-price { font-size: 15px; color: var(--ink); font-weight: 500; }

.star-row { display: flex; align-items: center; gap: 6px; margin-bottom: 9px; }
.stars { color: var(--gold); font-size: 13px; letter-spacing: 1px; }
.review-count { font-size: 12px; color: var(--ink-mute); }

.wishlist-btn {
  position: absolute; top: 12px; right: 12px; z-index: 2;
  width: 36px; height: 36px; border-radius: 50%; border: none;
  background: rgba(255,255,255,0.9); color: var(--blush); font-size: 16px; line-height: 1;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 2px 8px rgba(58,34,48,0.12); transition: transform 0.18s, color 0.18s;
}
.wishlist-btn:hover { transform: scale(1.12); }
.wishlist-btn.active { color: var(--blush); }

.hover-add {
  display: block; width: calc(100% - 40px); margin: 0 20px 18px;
  background: var(--cream-2); color: var(--ink); border: 1px solid var(--line);
  font-size: 11.5px; letter-spacing: 0.14em; text-transform: uppercase; font-weight: 500;
  padding: 12px; border-radius: var(--radius-pill); transition: all 0.2s;
}
.hover-add:hover { background: var(--ink); color: var(--cream); border-color: var(--ink); }

/* ===================================================================
   FIND YOUR SHADE band
   =================================================================== */
.shade-band { background: var(--cream-2); }
.shade-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.shade-card {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 34px 28px; text-align: center; transition: box-shadow 0.25s, transform 0.25s;
  display: block; color: inherit;
}
.shade-card:hover { box-shadow: var(--shadow); transform: translateY(-4px); border-color: var(--blush-soft); }
.shade-swatch { width: 64px; height: 64px; border-radius: 50%; margin: 0 auto 18px; box-shadow: inset 0 -6px 14px rgba(0,0,0,0.06); }
.shade-cool { background: linear-gradient(135deg,#F2D9CF,#E8B7A6); }
.shade-neutral { background: linear-gradient(135deg,#EAC7AC,#D6A37C); }
.shade-warm { background: linear-gradient(135deg,#D9A87C,#B97E50); }
.shade-card h3 { font-size: 22px; margin-bottom: 8px; }
.shade-card p { font-size: 14px; color: var(--ink-soft); margin-bottom: 16px; }
.shade-link { font-size: 11.5px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--blush); font-weight: 500; }

/* ===================================================================
   THE RITUAL editorial strip
   =================================================================== */
.ritual { display: grid; grid-template-columns: 1.05fr 1fr; align-items: stretch; }
.ritual-media { min-height: 480px; background: var(--cream-2) center/cover no-repeat; background-image: url('/assets/images/_editorial.jpg'); }
.ritual-copy { background: var(--ink); color: var(--cream); display: flex; align-items: center; padding: 72px 64px; }
.ritual-copy .section-eyebrow { color: var(--blush-soft); }
.ritual-copy h2 { color: var(--cream); font-size: clamp(28px,3.4vw,42px); margin-bottom: 18px; }
.ritual-copy p { color: rgba(250,246,242,0.82); margin-bottom: 16px; font-size: 16px; line-height: 1.8; }

/* ===================================================================
   CATEGORY TILES (3-up)
   =================================================================== */
.cat-tiles { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.cat-tile {
  position: relative; border-radius: var(--radius); overflow: hidden; min-height: 320px;
  display: flex; align-items: flex-end; color: var(--cream);
  background: var(--ink) center/cover no-repeat; transition: transform 0.3s;
}
.cat-tile::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(58,34,48,0.05) 30%, rgba(58,34,48,0.74) 100%); }
.cat-tile:hover { transform: translateY(-4px); }
.cat-tile-inner { position: relative; z-index: 2; padding: 28px; width: 100%; }
.cat-tile h3 { color: var(--cream); font-size: 26px; margin-bottom: 4px; }
.cat-tile span { font-size: 11.5px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--blush-soft); }
.cat-tile-skincare   { background-image: linear-gradient(135deg, #5b3a4b, #3A2230); }
.cat-tile-foundation { background-image: linear-gradient(135deg, #8a6357, #5b3a4b); }
.cat-tile-fragrance  { background-image: linear-gradient(135deg, #6e4a5b, #3A2230); }

/* ── Value / promise strip ── */
.promise-strip { background: var(--cream-2); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.promise-grid { max-width: 1240px; margin: 0 auto; padding: 40px 28px; display: grid; grid-template-columns: repeat(3,1fr); gap: 30px; }
.promise-item { text-align: center; }
.promise-item h4 { font-size: 17px; margin-bottom: 6px; }
.promise-item p { font-size: 13.5px; color: var(--ink-soft); }

/* ===================================================================
   PAGE HERO (interior pages)
   =================================================================== */
.page-hero { background: var(--cream-2); border-bottom: 1px solid var(--line); }
.page-hero-inner { max-width: 1240px; margin: 0 auto; padding: 54px 28px; }
.page-hero h1 { font-size: clamp(32px, 4vw, 48px); margin-bottom: 10px; }
.page-hero p { color: var(--ink-soft); max-width: 620px; }
.breadcrumb { font-size: 12px; letter-spacing: 0.06em; color: var(--ink-mute); margin-bottom: 14px; text-transform: uppercase; }
.breadcrumb a { color: var(--ink-soft); }
.breadcrumb a:hover { color: var(--blush); }

/* ===================================================================
   SHOP
   =================================================================== */
.shop-layout { max-width: 1240px; margin: 0 auto; padding: 40px 28px 90px; }
.category-pills { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 26px; }
.cat-pill {
  background: var(--surface); border: 1px solid var(--line); color: var(--ink-soft);
  font-size: 11.5px; letter-spacing: 0.12em; text-transform: uppercase; font-weight: 500;
  padding: 10px 22px; border-radius: var(--radius-pill); transition: all 0.2s;
}
.cat-pill:hover { border-color: var(--blush); color: var(--blush); }
.cat-pill.active { background: var(--ink); color: var(--cream); border-color: var(--ink); }
.shop-bar { margin-bottom: 22px; padding-bottom: 16px; border-bottom: 1px solid var(--line); }
.result-count { font-size: 13px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--ink-mute); }

/* ===================================================================
   PRODUCT DETAIL (PDP) — app.js injected
   =================================================================== */
.pdp-wrap { max-width: 1180px; margin: 0 auto; padding: 38px 28px 30px; }
.pdp-breadcrumb { margin-bottom: 26px; }
.pdp-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: start; }
.pdp-img-col { background: var(--cream-2); border-radius: var(--radius); overflow: hidden; border: 1px solid var(--line); }
.pdp-main-img { width: 100%; aspect-ratio: 1/1; object-fit: cover; }
.pdp-cat { font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--blush); font-weight: 500; margin-bottom: 12px; }
.pdp-name { font-size: clamp(30px, 4vw, 44px); line-height: 1.1; margin-bottom: 14px; }
.pdp-stars { display: flex; align-items: center; gap: 8px; margin-bottom: 18px; }
.pdp-price { font-size: 26px; font-weight: 500; margin-bottom: 22px; }
.pdp-short { font-size: 16px; color: var(--ink-soft); margin-bottom: 22px; line-height: 1.7; }
.pdp-bullets { list-style: none; margin-bottom: 30px; }
.pdp-bullets li { position: relative; padding-left: 26px; margin-bottom: 11px; font-size: 14.5px; color: var(--ink-soft); }
.pdp-bullets li::before { content: ""; position: absolute; left: 0; top: 9px; width: 8px; height: 8px; border-radius: 50%; background: var(--blush-soft); }
.pdp-qty-row { display: flex; align-items: center; gap: 18px; margin-bottom: 22px; }
.pdp-qty-row label { font-size: 11.5px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--ink-soft); }
.qty-control { display: inline-flex; align-items: center; border: 1px solid var(--line); border-radius: var(--radius-pill); overflow: hidden; }
.qty-btn { width: 42px; height: 44px; background: none; border: none; font-size: 18px; color: var(--ink); transition: background 0.15s; }
.qty-btn:hover { background: var(--cream-2); }
.qty-display { width: 44px; text-align: center; font-weight: 600; }
.pdp-add-btn {
  width: 100%; max-width: 380px; background: var(--ink); color: var(--cream); border: none;
  font-size: 12.5px; letter-spacing: 0.16em; text-transform: uppercase; font-weight: 500;
  padding: 18px; border-radius: var(--radius-pill); transition: all 0.22s;
}
.pdp-add-btn:hover { background: var(--blush); transform: translateY(-2px); }
.pdp-ship-note { margin-top: 16px; font-size: 13px; color: var(--ink-mute); }
.related-section { max-width: 1240px; margin: 0 auto; padding: 30px 28px 90px; }
.related-section .section-title { margin-bottom: 22px; }

/* ===================================================================
   CART page (#cart-container, app.js injected)
   =================================================================== */
.cart-wrap { max-width: 1100px; margin: 0 auto; padding: 44px 28px 90px; }
#cart-container { display: grid; grid-template-columns: 1fr 360px; gap: 34px; align-items: start; }
.cart-items { display: flex; flex-direction: column; gap: 14px; }
.cart-row {
  display: grid; grid-template-columns: 84px 1fr auto auto auto; gap: 18px; align-items: center;
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: 16px;
}
.cart-thumb { width: 84px; height: 84px; object-fit: cover; border-radius: var(--radius-sm); background: var(--cream-2); }
.cart-row-info a { font-family: var(--serif); font-size: 16px; color: var(--ink); }
.cart-row-info a:hover { color: var(--blush); }
.cart-row-price { font-size: 13px; color: var(--ink-mute); margin-top: 4px; }
.cart-row-qty { display: inline-flex; align-items: center; border: 1px solid var(--line); border-radius: var(--radius-pill); overflow: hidden; }
.cart-row-qty button { width: 34px; height: 34px; background: none; border: none; font-size: 16px; color: var(--ink); }
.cart-row-qty button:hover { background: var(--cream-2); }
.cart-row-qty span { width: 36px; text-align: center; font-weight: 600; font-size: 14px; }
.cart-row-total { font-weight: 600; font-size: 15px; }
.cart-remove { background: none; border: none; color: var(--ink-mute); font-size: 16px; transition: color 0.15s; }
.cart-remove:hover { color: var(--blush); }
.cart-summary {
  background: var(--ink); color: var(--cream); border-radius: var(--radius); padding: 30px 28px;
  position: sticky; top: calc(var(--header-h) + 16px);
}
.cart-summary .summary-row { display: flex; justify-content: space-between; font-size: 14px; padding: 9px 0; color: rgba(250,246,242,0.78); }
.cart-summary .summary-total { font-family: var(--serif); font-size: 20px; color: var(--cream); padding-top: 16px; margin-top: 8px; border-top: 1px solid rgba(255,255,255,0.16); }
.cart-summary .btn-accent { background: var(--cream); color: var(--ink); }
.cart-summary .btn-accent:hover { background: var(--blush); color: #fff; }
.cart-summary .btn-secondary { color: var(--cream); border-color: rgba(255,255,255,0.4); }
.cart-summary .btn-secondary:hover { background: rgba(255,255,255,0.12); color: var(--cream); }
.cart-empty { text-align: center; padding: 80px 24px; grid-column: 1 / -1; }
.cart-empty p { font-size: 18px; color: var(--ink-soft); margin-bottom: 22px; font-family: var(--serif); }

/* ===================================================================
   CHECKOUT (#checkout-form + #checkout-summary + .payment-option)
   =================================================================== */
.checkout-wrap { max-width: 1100px; margin: 0 auto; padding: 44px 28px 90px; }
.checkout-layout { display: grid; grid-template-columns: 1fr 400px; gap: 40px; align-items: start; }
.checkout-form-card, .checkout-summary-card {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: 32px;
}
.checkout-summary-card { position: sticky; top: calc(var(--header-h) + 16px); }
.co-form-title { font-size: 22px; margin-bottom: 22px; }
.form-section-label { font-size: 11.5px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--blush); font-weight: 500; margin: 22px 0 14px; }
.form-group { margin-bottom: 16px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group label { display: block; font-size: 12px; letter-spacing: 0.06em; text-transform: uppercase; color: var(--ink-soft); margin-bottom: 6px; font-weight: 500; }
.form-group input, .form-group select {
  width: 100%; padding: 13px 14px; border: 1px solid var(--line); border-radius: var(--radius-sm);
  font-family: var(--sans); font-size: 15px; color: var(--ink); background: var(--cream);
  transition: border-color 0.15s, box-shadow 0.15s;
}
.form-group input:focus, .form-group select:focus { outline: none; border-color: var(--blush); box-shadow: 0 0 0 3px rgba(201,106,122,0.12); }

.payment-option {
  display: flex; align-items: center; gap: 14px; border: 1.5px solid var(--line);
  border-radius: var(--radius-sm); padding: 16px 18px; cursor: pointer; margin-bottom: 12px;
  transition: border-color 0.15s, box-shadow 0.15s;
}
.payment-option.selected { border-color: var(--blush); box-shadow: 0 0 0 3px rgba(201,106,122,0.1); }
.payment-option input[type="radio"] { accent-color: var(--blush); width: 18px; height: 18px; }
.payment-option .po-label { font-size: 14.5px; font-weight: 500; flex: 1; }
.po-icons { display: flex; gap: 5px; margin-left: auto; }
.po-icons .pay-sm { width: 38px; height: 25px; }
.card-fields { margin-top: 18px; }

.co-place-btn {
  width: 100%; background: var(--ink); color: var(--cream); border: none;
  font-size: 12.5px; letter-spacing: 0.16em; text-transform: uppercase; font-weight: 500;
  padding: 18px; border-radius: var(--radius-pill); margin-top: 24px; transition: all 0.22s;
}
.co-place-btn:hover { background: var(--blush); transform: translateY(-2px); }

#checkout-summary .co-item { display: flex; align-items: center; gap: 12px; padding: 12px 0; border-bottom: 1px solid var(--line-2); }
.co-thumb { width: 56px; height: 56px; object-fit: cover; border-radius: var(--radius-sm); background: var(--cream-2); }
.co-item-name { flex: 1; font-size: 13.5px; color: var(--ink-soft); }
.co-item-price { font-weight: 600; font-size: 14px; }
.co-totals { margin-top: 18px; }
.co-totals .summary-row { display: flex; justify-content: space-between; font-size: 14px; padding: 7px 0; color: var(--ink-soft); }
.co-totals .summary-total { font-family: var(--serif); font-size: 19px; color: var(--ink); padding-top: 14px; margin-top: 6px; border-top: 1px solid var(--line); }
.co-sum-title { font-size: 20px; margin-bottom: 20px; padding-bottom: 14px; border-bottom: 1px solid var(--line); }
.co-secure { display: flex; align-items: center; justify-content: center; gap: 7px; margin-top: 22px; font-size: 12px; color: var(--ink-mute); }
.co-pay-row { display: flex; justify-content: center; gap: 6px; margin-top: 14px; }
.co-pay-row .pay-sm { width: 38px; height: 25px; }

/* ===================================================================
   GENERIC CONTENT PAGES (about/contact/legal)
   =================================================================== */
.content-wrap { max-width: 820px; margin: 0 auto; padding: 56px 28px 90px; }
.content-wrap.wide { max-width: 1100px; }
.content-wrap h2 { font-size: 26px; margin: 36px 0 14px; }
.content-wrap h2:first-child { margin-top: 0; }
.content-wrap h3 { font-size: 18px; margin: 24px 0 10px; }
.content-wrap p { color: var(--ink-soft); margin-bottom: 16px; line-height: 1.8; }
.content-wrap ul { margin: 0 0 18px 22px; color: var(--ink-soft); }
.content-wrap ul li { margin-bottom: 8px; }
.content-wrap a { color: var(--blush); }
.content-wrap a:hover { text-decoration: underline; }
.content-meta { font-size: 13px; color: var(--ink-mute); margin-bottom: 28px; }

.about-feature { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; margin: 10px 0 0; }
.about-feature img { border-radius: var(--radius); aspect-ratio: 4/5; object-fit: cover; background: var(--cream-2); }
.about-values { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; margin-top: 16px; }
.about-value-card { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: 28px 24px; }
.about-value-card h3 { margin-top: 0; }

.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: start; }
.contact-info-card { background: var(--cream-2); border: 1px solid var(--line); border-radius: var(--radius); padding: 30px; }
.contact-info-card h3 { margin-top: 0; }
.contact-info-card p { margin-bottom: 6px; }
.contact-form .form-group textarea {
  width: 100%; padding: 13px 14px; border: 1px solid var(--line); border-radius: var(--radius-sm);
  font-family: var(--sans); font-size: 15px; color: var(--ink); background: var(--cream); min-height: 130px; resize: vertical;
}
.contact-form .form-group textarea:focus { outline: none; border-color: var(--blush); box-shadow: 0 0 0 3px rgba(201,106,122,0.12); }

/* account */
.account-wrap { max-width: 460px; margin: 0 auto; padding: 64px 28px 100px; }
.account-card { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: 38px 34px; box-shadow: var(--shadow-card); }
.account-card h1 { font-size: 28px; text-align: center; margin-bottom: 8px; }
.account-card .account-sub { text-align: center; color: var(--ink-soft); font-size: 14px; margin-bottom: 28px; }
.account-card .form-link { font-size: 13px; color: var(--blush); }
.account-divider { text-align: center; margin: 26px 0; color: var(--ink-mute); font-size: 12px; letter-spacing: 0.1em; text-transform: uppercase; position: relative; }
.account-divider::before, .account-divider::after { content: ""; position: absolute; top: 50%; width: 38%; height: 1px; background: var(--line); }
.account-divider::before { left: 0; } .account-divider::after { right: 0; }

/* success */
.success-wrap { max-width: 560px; margin: 80px auto; padding: 0 28px; text-align: center; }
.success-mark { width: 76px; height: 76px; border-radius: 50%; background: var(--ink); color: var(--cream); display: flex; align-items: center; justify-content: center; margin: 0 auto 24px; }
.success-eyebrow { font-size: 11.5px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--blush); margin-bottom: 12px; }
.success-wrap h1 { font-size: 34px; margin-bottom: 14px; }
.success-wrap p { color: var(--ink-soft); margin-bottom: 10px; line-height: 1.7; }

/* ===================================================================
   FOOTER — LIGHT OVERSIZED BRAND FOOTER
   =================================================================== */
.site-footer { background: var(--cream-2); border-top: 1px solid var(--line); padding-top: 64px; }
.footer-top { max-width: 1240px; margin: 0 auto; padding: 0 28px 48px; text-align: center; border-bottom: 1px solid var(--line); }
.footer-wordmark {
  font-family: var(--serif); font-weight: 700; letter-spacing: 0.18em;
  font-size: clamp(46px, 10vw, 110px); color: var(--ink); line-height: 1; margin-bottom: 14px;
}
.footer-tagline { font-size: 15px; color: var(--ink-soft); font-style: italic; margin-bottom: 26px; }
.footer-newsletter { display: flex; max-width: 420px; margin: 0 auto; gap: 0; }
.footer-newsletter input {
  flex: 1; padding: 14px 16px; border: 1px solid var(--line); border-right: none;
  border-radius: var(--radius-pill) 0 0 var(--radius-pill); font-family: var(--sans); font-size: 14px;
  background: var(--surface); color: var(--ink);
}
.footer-newsletter input:focus { outline: none; border-color: var(--blush); }
.footer-newsletter button {
  background: var(--ink); color: var(--cream); border: none; padding: 0 26px;
  border-radius: 0 var(--radius-pill) var(--radius-pill) 0; font-size: 11.5px;
  letter-spacing: 0.14em; text-transform: uppercase; font-weight: 500; transition: background 0.2s;
}
.footer-newsletter button:hover { background: var(--blush); }

.footer-cols { max-width: 1240px; margin: 0 auto; padding: 48px 28px 40px; display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; }
.footer-col h4 { font-family: var(--sans); font-size: 11.5px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--ink); margin-bottom: 16px; font-weight: 600; }
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 11px; }
.footer-col ul li a { font-size: 14px; color: var(--ink-soft); transition: color 0.15s; }
.footer-col ul li a:hover { color: var(--blush); }

.footer-payment { max-width: 1240px; margin: 0 auto; padding: 0 28px 24px; display: flex; align-items: center; justify-content: center; gap: 8px; flex-wrap: wrap; }
.pay-icon { width: 40px; height: 26px; }

.footer-bottom {
  max-width: 1240px; margin: 0 auto; padding: 22px 28px 40px; border-top: 1px solid var(--line);
  display: flex; align-items: center; justify-content: space-between; gap: 12px; flex-wrap: wrap;
  font-size: 12.5px; color: var(--ink-mute);
}
.footer-bottom a { color: var(--ink-soft); }
.footer-bottom a:hover { color: var(--blush); }

/* ===================================================================
   SIDECART (app.js injected) + overlay + cookie + toast
   =================================================================== */
.sidecart-overlay {
  position: fixed; inset: 0; background: rgba(58,34,48,0.45); opacity: 0; visibility: hidden;
  transition: opacity 0.3s, visibility 0.3s; z-index: 90;
}
.sidecart-overlay.open { opacity: 1; visibility: visible; }
.sidecart {
  position: fixed; top: 0; right: 0; height: 100%; width: 400px; max-width: 90vw;
  background: var(--cream); z-index: 100; transform: translateX(100%);
  transition: transform 0.32s cubic-bezier(.4,0,.2,1); display: flex; flex-direction: column;
  box-shadow: -16px 0 50px rgba(58,34,48,0.18);
}
.sidecart.open { transform: translateX(0); }
.sidecart-head { display: flex; align-items: center; justify-content: space-between; padding: 22px 24px; border-bottom: 1px solid var(--line); }
.sidecart-head h2 { font-size: 19px; }
.sidecart-close { background: none; border: none; font-size: 26px; line-height: 1; color: var(--ink); }
.sidecart-close:hover { color: var(--blush); }
.sidecart-body { flex: 1; overflow-y: auto; padding: 8px 24px; }
.sidecart-empty { text-align: center; padding: 70px 16px; }
.sidecart-empty p { font-family: var(--serif); font-size: 17px; color: var(--ink-soft); margin-bottom: 20px; }
.sidecart-item { display: grid; grid-template-columns: 70px 1fr auto; gap: 14px; padding: 18px 0; border-bottom: 1px solid var(--line-2); }
.sc-thumb { width: 70px; height: 70px; object-fit: cover; border-radius: var(--radius-sm); background: var(--cream-2); }
.sc-name { font-family: var(--serif); font-size: 15px; margin: 2px 0 4px; line-height: 1.25; }
.sc-price { font-size: 14px; color: var(--ink); font-weight: 500; margin-bottom: 8px; }
.sc-controls { display: inline-flex; align-items: center; border: 1px solid var(--line); border-radius: var(--radius-pill); overflow: hidden; }
.sc-qty-btn { width: 30px; height: 30px; background: none; border: none; font-size: 15px; color: var(--ink); }
.sc-qty-btn:hover { background: var(--cream-2); }
.sc-qty-count { width: 32px; text-align: center; font-size: 13px; font-weight: 600; }
.sc-remove { background: none; border: none; color: var(--ink-mute); font-size: 18px; align-self: flex-start; }
.sc-remove:hover { color: var(--blush); }
.sidecart-foot { padding: 20px 24px 26px; border-top: 1px solid var(--line); background: var(--cream); }
.sc-totals .sc-row { display: flex; justify-content: space-between; font-size: 14px; padding: 6px 0; color: var(--ink-soft); }
.sc-totals .sc-total { font-family: var(--serif); font-size: 18px; color: var(--ink); padding-top: 12px; margin-top: 6px; border-top: 1px solid var(--line); }
.sc-ship-note { font-size: 12px; color: var(--ink-mute); text-align: center; margin: 14px 0; }
.sc-checkout-btn { display: block; text-align: center; background: var(--ink); color: var(--cream); padding: 16px; border-radius: var(--radius-pill); font-size: 12px; letter-spacing: 0.16em; text-transform: uppercase; font-weight: 500; transition: background 0.2s; }
.sc-checkout-btn:hover { background: var(--blush); }
.sc-view-bag { display: block; text-align: center; margin-top: 10px; font-size: 12px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--ink-soft); }
.sc-view-bag:hover { color: var(--blush); }
.sc-continue { display: block; width: 100%; background: none; border: none; text-align: center; margin-top: 12px; font-size: 12px; color: var(--ink-mute); text-decoration: underline; text-underline-offset: 3px; }
.sc-continue:hover { color: var(--ink); }

/* cookie banner */
.cookie-banner {
  position: fixed; left: 24px; right: 24px; bottom: 24px; z-index: 80; max-width: 560px; margin: 0 auto;
  background: var(--ink); color: var(--cream); border-radius: var(--radius); padding: 20px 24px;
  box-shadow: var(--shadow); display: flex; align-items: center; gap: 20px;
  transform: translateY(140%); transition: transform 0.4s cubic-bezier(.4,0,.2,1); flex-wrap: wrap;
}
.cookie-banner.visible { transform: translateY(0); }
.cookie-banner p { font-size: 13px; color: rgba(250,246,242,0.86); flex: 1; min-width: 220px; line-height: 1.6; }
.cookie-banner a { color: var(--blush-soft); text-decoration: underline; }
.cookie-actions { display: flex; gap: 10px; }
.cookie-accept { background: var(--cream); color: var(--ink); border: none; padding: 11px 20px; border-radius: var(--radius-pill); font-size: 11.5px; letter-spacing: 0.1em; text-transform: uppercase; font-weight: 500; }
.cookie-accept:hover { background: var(--blush); color: #fff; }
.cookie-manage { background: none; border: 1px solid rgba(255,255,255,0.4); color: var(--cream); padding: 11px 18px; border-radius: var(--radius-pill); font-size: 11.5px; letter-spacing: 0.1em; text-transform: uppercase; }
.cookie-manage:hover { background: rgba(255,255,255,0.12); }

/* cart toast */
#cart-toast {
  position: fixed; bottom: 28px; left: 50%; transform: translateX(-50%);
  background: var(--ink); color: var(--cream); padding: 14px 28px; border-radius: var(--radius-pill);
  font-size: 13px; letter-spacing: 0.08em; z-index: 110; opacity: 0; transition: opacity 0.3s; box-shadow: var(--shadow);
}

/* ===================================================================
   RESPONSIVE
   =================================================================== */
@media (max-width: 1000px) {
  .ritual { grid-template-columns: 1fr; }
  .ritual-media { min-height: 340px; }
  .ritual-copy { padding: 48px 36px; }
  .checkout-layout { grid-template-columns: 1fr; }
  .checkout-summary-card { position: static; order: -1; }
}
@media (max-width: 880px) {
  .main-nav { display: none; }
  .header-inner { grid-template-columns: auto 1fr auto; }
  .nav-left { display: none; }
  .bn-logo { justify-self: start; }
  .nav-right { justify-self: end; }
  .mobile-menu-btn { display: flex; order: 3; }
  .shade-grid, .cat-tiles, .about-values, .promise-grid { grid-template-columns: 1fr; }
  .about-feature, .contact-grid { grid-template-columns: 1fr; gap: 28px; }
  .pdp-grid { grid-template-columns: 1fr; gap: 30px; }
  #cart-container { grid-template-columns: 1fr; }
  .cart-summary { position: static; }
  .footer-cols { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px) {
  .section, .section-wrap { padding: 56px 0; }
  .section-wrap { padding-left: 22px; padding-right: 22px; }
  .footer-cols { grid-template-columns: 1fr 1fr; }
  .cart-row { grid-template-columns: 70px 1fr auto; }
  .cart-row .cart-row-total { grid-column: 2; }
  .form-row { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .promise-grid { grid-template-columns: 1fr; gap: 18px; }
}
