/* ============================================================
   GRAVORA — Design System (shared across all pages)
   ============================================================ */

:root {
  /* Brand palette */
  --ink: #0F1216;
  --ink-2: #161a20;
  --navy: #1C3D6A;
  --navy-deep: #142d4f;
  --crystal: #77A9F1;
  --crystal-icy: #B4CEF2;
  --crystal-deep: #4E86E0;
  --silver: #C9CDD2;
  --mist: #EEF2F7;
  --mist-2: #e4eaf2;
  --surface: #FFFFFF;
  --text: #14181D;
  --muted: #5D6164;
  --line: #e2e7ee;
  --line-dark: rgba(201,205,210,.16);

  --serif: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  --sans: "Inter", system-ui, -apple-system, sans-serif;

  --radius: 12px;
  --radius-sm: 7px;
  --shadow-sm: 0 1px 2px rgba(15,18,22,.05);
  --shadow-card: 0 18px 40px -24px rgba(28,61,106,.42);
  --shadow-lg: 0 30px 70px -32px rgba(15,18,22,.5);
  --ease: cubic-bezier(.22,.61,.36,1);

  --maxw: 1240px;
  --gut: 40px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--sans);
  color: var(--text);
  background: var(--mist);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }

.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 var(--gut); }

/* ---------- Typographic helpers ---------- */
.eyebrow {
  font-size: 12px; letter-spacing: .22em; text-transform: uppercase;
  font-weight: 600; color: var(--crystal-deep);
}
.eyebrow.on-dark { color: var(--crystal-icy); }
.serif { font-family: var(--serif); }
.section-head { text-align: center; margin-bottom: 36px; }
.section-head h2 {
  font-family: var(--serif); font-weight: 600; font-size: clamp(30px, 4vw, 44px);
  line-height: 1.05; letter-spacing: -.5px; margin-top: 8px;
}
.section-head p { color: var(--muted); max-width: 560px; margin: 12px auto 0; font-size: 15.5px; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  font-size: 13px; font-weight: 600; letter-spacing: .06em; text-transform: uppercase;
  padding: 14px 28px; border-radius: var(--radius-sm); border: 1px solid transparent;
  transition: all .22s var(--ease); white-space: nowrap;
}
.btn svg { width: 16px; height: 16px; }
.btn-primary { background: var(--crystal); color: #fff; }
.btn-primary:hover { background: var(--crystal-deep); transform: translateY(-1px); box-shadow: 0 10px 22px -10px rgba(78,134,224,.7); }
.btn-dark { background: var(--ink); color: #fff; }
.btn-dark:hover { background: #000; transform: translateY(-1px); }
.btn-ghost { background: transparent; color: #fff; border-color: rgba(255,255,255,.45); }
.btn-ghost:hover { border-color: #fff; background: rgba(255,255,255,.08); }
.btn-outline { background: transparent; color: var(--navy); border-color: var(--navy); }
.btn-outline:hover { background: var(--navy); color: #fff; }
.btn-block { width: 100%; }
.btn-lg { padding: 17px 34px; font-size: 13.5px; }

/* ============================================================
   USP bar
   ============================================================ */
.usp {
  background: var(--ink); color: var(--silver);
  font-size: 11.5px; letter-spacing: .14em; text-transform: uppercase; font-weight: 500;
  height: 38px; display: flex; align-items: center; justify-content: center;
  overflow: hidden; position: relative;
}
.usp-track { display: flex; gap: 0; }
.usp-item { display: flex; align-items: center; gap: 10px; }
.usp-item svg { width: 14px; height: 14px; color: var(--crystal); }
.usp-sep { color: var(--crystal); margin: 0 18px; }

/* ============================================================
   Header
   ============================================================ */
.site-header {
  background: var(--ink); color: #fff; position: sticky; top: 0; z-index: 100;
  border-bottom: 1px solid var(--line-dark);
}
.header-inner {
  display: grid; grid-template-columns: 1fr auto 1fr; align-items: center;
  gap: 20px; height: 74px;
}
.header-left { display: flex; align-items: center; gap: 24px; justify-self: start; }
.nav-left { display: flex; gap: 30px; }
.nav-link {
  font-size: 12.5px; font-weight: 600; letter-spacing: .05em; text-transform: uppercase;
  opacity: .82; transition: opacity .2s; position: relative; padding: 8px 0;
  display: inline-flex; align-items: center; gap: 6px;
}
.nav-link:hover { opacity: 1; }
.nav-link svg { width: 11px; height: 11px; transition: transform .2s; }
.has-dropdown { position: relative; }
.has-dropdown:hover .nav-link svg { transform: rotate(180deg); }
.dropdown {
  position: absolute; top: 100%; left: 50%; transform: translateX(-50%) translateY(8px);
  background: #fff; color: var(--text); border-radius: var(--radius); min-width: 210px;
  box-shadow: var(--shadow-lg); padding: 10px; opacity: 0; visibility: hidden;
  transition: all .22s var(--ease); border: 1px solid var(--line);
}
.has-dropdown:hover .dropdown { opacity: 1; visibility: visible; transform: translateX(-50%) translateY(8px); }
.dropdown a {
  display: flex; align-items: center; gap: 12px; padding: 11px 14px; border-radius: 8px;
  font-size: 14px; font-weight: 500; transition: background .15s;
}
.dropdown a:hover { background: var(--mist); color: var(--navy); }
.dropdown a .d-sub { font-size: 11.5px; color: var(--muted); font-weight: 400; }
.dropdown a .d-ico { width: 34px; height: 34px; border-radius: 8px; background: var(--mist); display: grid; place-items: center; color: var(--navy); flex: none; }
.dropdown a .d-ico svg { width: 17px; height: 17px; }

.brand { justify-self: center; }
.brand img { height: 36px; }

.nav-right { display: flex; gap: 8px; justify-self: end; align-items: center; }

/* Language switcher (flag toggle) */
.lang-switch { display: inline-flex; align-items: center; gap: 6px; margin-right: 6px; }
.lang-switch .lang-opt { background: transparent; border: none; padding: 0; cursor: pointer; line-height: 0; border-radius: 4px; }
.lang-switch .lang-opt img { display: block; width: 26px; height: 18px; object-fit: cover; border-radius: 3px; border: 1px solid rgba(255,255,255,.28); box-shadow: 0 1px 3px rgba(0,0,0,.45); opacity: .5; filter: saturate(.85); transition: opacity .18s, border-color .18s, transform .18s, box-shadow .18s; }
.lang-switch .lang-opt:hover img { opacity: .85; transform: translateY(-1px); }
.lang-switch .lang-opt.active img { opacity: 1; filter: none; border-color: var(--crystal, #77A9F1); box-shadow: 0 0 0 2px rgba(119,169,241,.35), 0 1px 3px rgba(0,0,0,.45); }
.lang-switch.mm-lang { display: flex; align-items: center; gap: 10px; margin: 14px 0 0; }
.lang-switch.mm-lang .mm-lang-label { font-size: 12px; letter-spacing: .08em; text-transform: uppercase; color: var(--silver, #C9CDD2); opacity: .8; margin-right: auto; }
.lang-switch.mm-lang .lang-opt img { width: 34px; height: 23px; }
.icon-btn {
  width: 40px; height: 40px; display: grid; place-items: center; border-radius: 8px;
  background: transparent; border: none; color: #fff; opacity: .85; transition: all .18s; position: relative;
}
.icon-btn:hover { opacity: 1; background: rgba(255,255,255,.08); }
.icon-btn svg { width: 20px; height: 20px; }
.cart-count {
  position: absolute; top: 3px; right: 2px; background: var(--crystal); color: #fff;
  font-size: 10px; font-weight: 700; min-width: 17px; height: 17px; padding: 0 4px;
  border-radius: 999px; display: grid; place-items: center; line-height: 1;
}
.cart-count[data-count="0"] { display: none; }
.hamburger { display: grid; }
.hamburger .ham-x { display: none; }

/* ---------- Drawer menu (slides from left) ---------- */
.mm-overlay { position: fixed; inset: 0; z-index: 199; background: rgba(15,18,22,.55); opacity: 0; visibility: hidden; transition: opacity .3s var(--ease), visibility .3s var(--ease); }
.mm-overlay.open { opacity: 1; visibility: visible; }
.mobile-menu {
  position: fixed; top: 0; left: 0; bottom: 0; width: min(360px, 86vw); z-index: 200; background: var(--ink); color: #fff;
  transform: translateX(-100%); transition: transform .32s var(--ease);
  display: flex; flex-direction: column; padding: 22px 24px; overflow-y: auto; box-shadow: 20px 0 50px -20px rgba(0,0,0,.5);
}
.mobile-menu.open { transform: translateX(0); }
.mobile-menu .mm-top { display: flex; justify-content: space-between; align-items: center; margin-bottom: 18px; }
.mobile-menu .mm-top img { height: 30px; }
.mm-nav { display: flex; flex-direction: column; flex: 1; }
.mm-group { padding: 14px 0; border-bottom: 1px solid var(--line-dark); }
.mm-group:first-child { padding-top: 4px; }
.mm-gtitle { font-size: 11px; letter-spacing: .16em; text-transform: uppercase; color: var(--silver); opacity: .55; font-weight: 600; margin-bottom: 6px; }
.mobile-menu a.mm-link { font-family: var(--serif); font-size: 20px; padding: 8px 0; border: none; display: flex; align-items: center; gap: 10px; transition: color .15s, padding-left .15s; }
.mobile-menu a.mm-link:hover { color: var(--crystal-icy); padding-left: 4px; }
.mm-sub { display: flex; align-items: center; gap: 10px; padding: 2px 0 6px 2px; }
.mm-sub a { font-size: 13.5px; font-weight: 600; color: var(--crystal-icy); }
.mm-sub a:hover { text-decoration: underline; }
.mm-sub span { color: var(--silver); opacity: .4; }
.mm-foot { margin-top: 18px; padding-top: 16px; border-top: 1px solid var(--line-dark); }
.mm-foot-links { display: flex; gap: 22px; margin-bottom: 14px; }
.mm-account { display: inline-flex; align-items: center; gap: 9px; font-size: 14px; font-weight: 600; color: #fff; padding: 4px 0; }
.mm-account svg { width: 17px; height: 17px; }
.mm-account:hover { color: var(--crystal-icy); }
.mm-wa { display: flex; align-items: center; justify-content: center; gap: 9px; background: var(--crystal); color: #fff; font-weight: 600; font-size: 14px; padding: 13px; border-radius: 10px; transition: background .2s; }
.mm-wa:hover { background: var(--crystal-deep); }
.mm-wa svg { width: 18px; height: 18px; }
.mm-legal { margin-top: 14px; font-size: 12px; color: var(--silver); opacity: .7; }
.mm-legal a:hover { color: var(--crystal-icy); }
.mm-social { display: flex; gap: 10px; margin-top: 14px; }
.mm-social a { width: 36px; height: 36px; border-radius: 50%; border: 1px solid var(--line-dark); display: grid; place-items: center; color: #fff; transition: .2s; }
.mm-social a:hover { background: var(--crystal); border-color: var(--crystal); }
.mm-social svg { width: 17px; height: 17px; }

/* ============================================================
   Hero top — original brand banner, clean (no overlay)
   ============================================================ */
.hero-banner { display: block; background: var(--ink); line-height: 0; }
.hero-banner picture { display: block; width: 100%; }
.hero-banner .hero-img { width: 100%; height: auto; display: block; vertical-align: bottom; }

/* ============================================================
   Split feature (variant B)
   ============================================================ */
.split {
  background: var(--ink); color: #fff; margin: 0;
  padding: clamp(44px, 5vw, 80px) clamp(28px, 5vw, 64px);
}
.split-inner {
  max-width: 1180px; margin: 0 auto;
  display: grid; grid-template-columns: minmax(0, 560px) auto; justify-content: center; align-items: center;
  gap: clamp(36px, 5vw, 80px);
  border: 1px solid rgba(201, 205, 210, .22); border-radius: 16px;
  padding: clamp(28px, 3.5vw, 52px) clamp(28px, 4vw, 60px);
}
.split .s-left { display: flex; flex-direction: column; justify-content: center; }
.split h2, .split h1 { font-family: var(--serif); font-size: clamp(34px, 3.8vw, 50px); font-weight: 600; line-height: 1.04; letter-spacing: -.5px; margin-top: 16px; }
.split h2 em, .split h1 em { font-style: italic; color: var(--crystal-icy); }
.split p { color: var(--silver); font-size: 16px; line-height: 1.6; margin: 18px 0 28px; max-width: 420px; }
/* Image: a moderate square sized by height, balanced with the text block.
   Square box + square image = full composition, no crop, no black bands. */
.split .s-right { position: relative; aspect-ratio: 1 / 1; height: clamp(300px, 30vw, 400px); width: auto; overflow: hidden; border-radius: 6px; }
.split .s-right img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; display: block; }
@media (max-width: 860px) {
  .split-inner { grid-template-columns: 1fr; gap: 28px; }
  .split .s-right { order: -1; justify-self: center; width: min(100%, 380px); height: auto; }
}

/* ============================================================
   Collection sections + product cards
   ============================================================ */
.section { padding: 78px 0; }
.section.on-mist { background: var(--mist); }
.section.on-surface { background: var(--surface); }
.section.on-ink { background: var(--ink); color: #fff; }

.collection-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 20px; margin-bottom: 30px; }
.collection-head .ch-text h2 { font-family: var(--serif); font-size: clamp(28px, 3.4vw, 40px); font-weight: 600; line-height: 1.05; margin-top: 6px; }
.collection-head .ch-link { font-size: 13px; font-weight: 600; letter-spacing: .04em; text-transform: uppercase; color: var(--navy); display: inline-flex; align-items: center; gap: 7px; white-space: nowrap; transition: gap .2s; }
.collection-head .ch-link:hover { gap: 12px; }
.on-ink .collection-head .ch-link { color: var(--crystal-icy); }

.product-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.product-grid.cols-3 { grid-template-columns: repeat(3, 1fr); }

.product-card {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius);
  overflow: hidden; transition: transform .3s var(--ease), box-shadow .3s var(--ease); position: relative;
  display: flex; flex-direction: column;
}
.product-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-card); }
.product-card .pc-media { position: relative; aspect-ratio: 1/1; overflow: hidden; background: var(--ink); }
.product-card .pc-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .55s var(--ease); }
.product-card:hover .pc-media img { transform: scale(1.06); }
.product-card .pc-body { padding: 18px 18px 20px; display: flex; flex-direction: column; gap: 6px; flex: 1; }
.product-card .pc-name { font-family: var(--serif); font-size: 21px; font-weight: 600; line-height: 1.15; }
.product-card .pc-meta { font-size: 12px; color: var(--muted); letter-spacing: .02em; }
.product-card .pc-foot { display: flex; align-items: center; justify-content: space-between; margin-top: auto; padding-top: 10px; }
.product-card .pc-price { font-family: var(--serif); font-size: 22px; font-weight: 600; color: var(--ink); }
.product-card .pc-price s { color: var(--muted); font-size: 16px; font-weight: 400; margin-right: 6px; }
.product-card .pc-add {
  width: 38px; height: 38px; border-radius: 8px; background: var(--mist); border: 1px solid var(--line);
  display: grid; place-items: center; color: var(--navy); transition: all .2s;
}
.product-card .pc-add:hover { background: var(--crystal); color: #fff; border-color: var(--crystal); }
.product-card .pc-add svg { width: 18px; height: 18px; }

.badge {
  position: absolute; top: 12px; left: 12px; z-index: 2; font-size: 10.5px; font-weight: 700;
  letter-spacing: .1em; text-transform: uppercase; padding: 6px 11px; border-radius: 999px;
}
.badge.sold { background: rgba(15,18,22,.82); color: #fff; }
.badge.new { background: var(--crystal); color: #fff; }
.badge.gold { background: #C9A24B; color: #fff; }
.product-card.is-sold .pc-media img { filter: grayscale(.6) brightness(.85); }
.product-card.is-sold:hover { transform: none; box-shadow: var(--shadow-sm); }

/* ---------- Collection cards (4-up, variant B style) ---------- */
.collection-cards { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.coll-card { position: relative; aspect-ratio: 3/4; border-radius: var(--radius); overflow: hidden; display: block; }
.coll-card .cc-bg { position: absolute; inset: 0; }
.coll-card .cc-bg img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease); }
.coll-card:hover .cc-bg img { transform: scale(1.07); }
.coll-card::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 36%, rgba(15,18,22,.92) 100%); }
.coll-card .cc-label { position: absolute; left: 0; right: 0; bottom: 0; padding: 22px; z-index: 2; }
.coll-card .cc-label h3 { font-family: var(--serif); color: #fff; font-size: 24px; font-weight: 600; }
.coll-card .cc-line { width: 28px; height: 2px; background: var(--crystal); margin-top: 9px; transition: width .3s var(--ease); }
.coll-card:hover .cc-line { width: 56px; }

/* ---------- Category banner cards (Cristale / Brelocuri) ---------- */
.cat-banners { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.cat-banner {
  position: relative; border-radius: var(--radius); overflow: hidden; min-height: 300px;
  display: flex; align-items: flex-end; color: #fff; padding: 34px; isolation: isolate;
}
.cat-banner .cb-bg { position: absolute; inset: 0; z-index: -1; }
.cat-banner .cb-bg img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease); }
.cat-banner:hover .cb-bg img { transform: scale(1.05); }
.cat-banner::after { content: ""; position: absolute; inset: 0; z-index: -1; background: linear-gradient(180deg, rgba(15,18,22,.12) 0%, rgba(15,18,22,.85) 100%); }
.cat-banner .cb-text h3 { font-family: var(--serif); font-size: 32px; font-weight: 600; line-height: 1.05; }
.cat-banner .cb-text p { font-size: 14px; color: rgba(255,255,255,.82); margin: 6px 0 16px; max-width: 320px; }

/* ============================================================
   How it works
   ============================================================ */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 26px; }
.step .step-img { aspect-ratio: 1/1; border-radius: var(--radius); overflow: hidden; background: var(--ink); position: relative; }
.step .step-img img { width: 100%; height: 100%; object-fit: cover; }
.step .step-n {
  position: absolute; top: 14px; left: 14px; width: 34px; height: 34px; border-radius: 50%;
  background: rgba(15,18,22,.55); backdrop-filter: blur(4px); border: 1px solid rgba(255,255,255,.35);
  color: #fff; font-family: var(--serif); font-size: 18px; font-weight: 600; display: grid; place-items: center;
}
.step h3 { font-family: var(--serif); font-size: 23px; font-weight: 600; margin: 18px 0 7px; }
.step p { font-size: 14px; color: var(--muted); line-height: 1.6; }

/* ============================================================
   Trust section
   ============================================================ */
.trust { display: grid; grid-template-columns: 1.1fr 1fr; gap: 56px; align-items: center; }
.trust .t-img { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-card); }
.trust .t-img img { width: 100%; height: 100%; object-fit: cover; }
.trust-list { display: flex; flex-direction: column; gap: 22px; margin-top: 28px; }
.trust-item { display: flex; gap: 18px; }
.trust-item .ti-ico { width: 50px; height: 50px; border-radius: 50%; background: var(--mist); display: grid; place-items: center; color: var(--navy); flex: none; }
.trust-item .ti-ico svg { width: 23px; height: 23px; }
.trust-item h4 { font-family: var(--serif); font-size: 21px; font-weight: 600; }
.trust-item p { font-size: 14px; color: var(--muted); margin-top: 3px; line-height: 1.55; }

/* ============================================================
   Footer
   ============================================================ */
.site-footer { background: var(--ink); color: var(--silver); padding: 64px 0 30px; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 40px; }
.footer-brand img { height: 34px; margin-bottom: 18px; }
.footer-brand p { font-size: 14px; line-height: 1.65; max-width: 280px; color: var(--silver); opacity: .85; }
.footer-col h5 { font-size: 12px; letter-spacing: .14em; text-transform: uppercase; color: #fff; margin-bottom: 16px; font-weight: 600; }
.footer-col a { display: block; font-size: 14px; padding: 6px 0; opacity: .8; transition: opacity .18s; }
.footer-col a:hover { opacity: 1; color: var(--crystal-icy); }
.footer-social { display: flex; gap: 10px; margin-top: 20px; }
.footer-social a { width: 38px; height: 38px; border-radius: 50%; border: 1px solid var(--line-dark); display: grid; place-items: center; transition: all .2s; }
.footer-social a:hover { background: var(--crystal); border-color: var(--crystal); color: #fff; }
.footer-social svg { width: 18px; height: 18px; }
.footer-bottom { border-top: 1px solid var(--line-dark); margin-top: 48px; padding-top: 24px; display: flex; justify-content: space-between; align-items: center; gap: 18px; flex-wrap: wrap; font-size: 12.5px; opacity: .75; }
.footer-pay { display: flex; gap: 8px; align-items: center; }
.footer-pay span { width: 40px; height: 26px; border-radius: 5px; background: rgba(255,255,255,.08); border: 1px solid var(--line-dark); display: grid; place-items: center; font-size: 9px; font-weight: 700; letter-spacing: .03em; }

/* ---------- Compliance strip (firm data + ANPC/SAL) ---------- */
.footer-legal { border-top: 1px solid var(--line-dark); margin-top: 40px; padding-top: 26px; display: grid; grid-template-columns: 1.5fr 1fr; gap: 30px; align-items: start; }
.firm-data { font-size: 12.5px; line-height: 1.9; color: var(--silver); opacity: .9; }
.firm-data h5 { font-size: 12px; letter-spacing: .14em; text-transform: uppercase; color: #fff; margin-bottom: 10px; opacity: 1; }
.anpc-block { display: flex; flex-direction: column; gap: 12px; }
.anpc-block h5 { font-size: 12px; letter-spacing: .14em; text-transform: uppercase; color: #fff; margin-bottom: 2px; }
.anpc-badges { display: flex; gap: 12px; flex-wrap: wrap; align-items: center; }
.anpc-badge { display: flex; align-items: center; justify-content: center; height: 50px; width: 230px; max-width: 100%; border: 1px dashed rgba(201,205,210,.4); border-radius: 6px; background: rgba(255,255,255,.04); font-size: 11px; color: var(--silver); text-align: center; padding: 4px 10px; line-height: 1.3; transition: .2s; }
.anpc-badge:hover { border-color: var(--crystal); color: #fff; }
.anpc-badge b { color: var(--crystal-icy); }
.anpc-badge.img { width: auto; border: 1px solid var(--line); background: #fff; padding: 7px 12px; border-radius: 8px; }
.anpc-badge.img:hover { border-color: var(--crystal); box-shadow: 0 6px 16px -8px rgba(0,0,0,.4); transform: translateY(-1px); }
.anpc-badge.img img { height: 100%; width: auto; display: block; }

/* ---------- Placeholder highlight (to be filled by owner) ---------- */
.ph-fill { background: #fff4c2; color: #6b5a14; padding: 0 5px; border-radius: 3px; font-weight: 600; font-family: var(--sans); }
.on-dark .ph-fill, .firm-data .ph-fill, .site-footer .ph-fill { background: rgba(255,225,120,.22); color: #ffe690; }

/* ============================================================
   Cookie consent banner
   ============================================================ */
.cookie-banner { position: fixed; left: 16px; right: 16px; bottom: 16px; z-index: 250; max-width: 1080px; margin: 0 auto; background: var(--ink); color: var(--silver); border: 1px solid var(--line-dark); border-radius: 14px; box-shadow: 0 24px 60px -20px rgba(0,0,0,.6); padding: 20px 24px; display: flex; align-items: center; gap: 22px; flex-wrap: wrap; transform: translateY(140%); transition: transform .4s var(--ease); }
.cookie-banner.show { transform: none; }
.cookie-banner .cb-text { flex: 1; min-width: 240px; font-size: 13px; line-height: 1.6; }
.cookie-banner .cb-text b { color: #fff; font-family: var(--serif); font-size: 16px; font-weight: 600; display: block; margin-bottom: 4px; }
.cookie-banner .cb-text a { color: var(--crystal-icy); text-decoration: underline; }
.cookie-banner .cb-actions { display: flex; gap: 10px; flex-wrap: wrap; }
.cookie-settings { position: fixed; inset: 0; z-index: 260; background: rgba(15,18,22,.55); display: none; place-items: center; padding: 20px; }
.cookie-settings.show { display: grid; }
.cookie-settings .cs-card { background: #fff; color: var(--text); border-radius: 16px; width: min(460px, 100%); padding: 26px; }
.cookie-settings h3 { font-family: var(--serif); font-size: 22px; font-weight: 600; margin-bottom: 8px; }
.cookie-settings .cs-row { display: flex; align-items: flex-start; gap: 14px; padding: 14px 0; border-bottom: 1px solid var(--line); }
.cookie-settings .cs-row:last-of-type { border-bottom: none; }
.cookie-settings .cs-row .cs-info { flex: 1; }
.cookie-settings .cs-row b { font-size: 14px; }
.cookie-settings .cs-row p { font-size: 12.5px; color: var(--muted); margin-top: 3px; line-height: 1.5; }
.cookie-settings .cs-foot { display: flex; gap: 10px; margin-top: 18px; }
.cs-switch { position: relative; width: 44px; height: 25px; flex: none; }
.cs-switch input { opacity: 0; width: 0; height: 0; }
.cs-switch .tk { position: absolute; inset: 0; background: #cdd3db; border-radius: 999px; cursor: pointer; transition: .18s; }
.cs-switch .tk::before { content: ""; position: absolute; left: 3px; top: 3px; width: 19px; height: 19px; background: #fff; border-radius: 50%; transition: .18s; box-shadow: 0 1px 2px rgba(0,0,0,.25); }
.cs-switch input:checked + .tk { background: var(--crystal); }
.cs-switch input:checked + .tk::before { transform: translateX(19px); }
.cs-switch input:disabled + .tk { background: #1f8a5b; opacity: .6; cursor: not-allowed; }

@media (max-width: 700px) {
  .footer-legal { grid-template-columns: 1fr; gap: 22px; }
}

/* ============================================================
   Scroll reveal
   ============================================================ */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.in { opacity: 1; transform: none; }

/* ============================================================
   Newsletter premium band
   ============================================================ */
.nl-band { background: var(--ink); color: #fff; position: relative; overflow: hidden; }
.nl-band::before { content: ""; position: absolute; inset: 0; background: radial-gradient(120% 140% at 85% 50%, rgba(28,61,106,.55), transparent 60%), radial-gradient(80% 120% at 12% 20%, rgba(119,169,241,.18), transparent 55%); }
.nl-band .nl-band-crystal { position: absolute; right: 5%; top: 50%; transform: translateY(-50%); width: 200px; opacity: .12; filter: drop-shadow(0 0 30px rgba(119,169,241,.5)); }
.nl-band .wrap { position: relative; z-index: 1; padding: 56px var(--gut); max-width: 880px; text-align: center; margin: 0 auto; }
.nl-band .nl-eyebrow { font-size: 12px; letter-spacing: .2em; text-transform: uppercase; color: var(--crystal-icy); font-weight: 600; }
.nl-band h2 { font-family: var(--serif); font-size: clamp(28px, 4vw, 42px); font-weight: 600; line-height: 1.1; margin: 12px 0 8px; }
.nl-band p { color: var(--silver); font-size: 15.5px; max-width: 460px; margin: 0 auto 26px; }
.nl-band form { display: flex; gap: 12px; max-width: 480px; margin: 0 auto; }
.nl-band input[type=email] { flex: 1; font-family: var(--sans); font-size: 15px; padding: 15px 18px; border-radius: 10px; border: 1px solid var(--line-dark); background: rgba(255,255,255,.07); color: #fff; transition: .2s; }
.nl-band input[type=email]::placeholder { color: rgba(201,205,210,.6); }
.nl-band input[type=email]:focus { outline: none; border-color: var(--crystal); box-shadow: 0 0 0 3px rgba(119,169,241,.3); background: rgba(255,255,255,.1); }
.nl-band .nl-band-note { font-size: 12px; color: var(--silver); opacity: .7; margin-top: 14px; }
.nl-band .nl-band-note a { color: var(--crystal-icy); text-decoration: underline; }
.nl-band .nl-band-success { font-size: 17px; }
.nl-band .nl-band-success .nl-code { display: inline-block; font-family: ui-monospace, Menlo, monospace; font-weight: 700; letter-spacing: .1em; color: #fff; background: var(--crystal); padding: 8px 18px; border-radius: 8px; margin-left: 8px; }
@media (max-width: 560px) { .nl-band form { flex-direction: column; } }

/* ============================================================
   Search overlay
   ============================================================ */
.search-overlay { position: fixed; left: 0; right: 0; top: 0; z-index: 260; background: rgba(15,18,22,.6); backdrop-filter: blur(4px); opacity: 0; visibility: hidden; transition: opacity .25s, visibility .25s; }
.search-overlay.open { opacity: 1; visibility: visible; }
.search-panel { background: var(--ink); color: #fff; transform: translateY(-100%); transition: transform .3s var(--ease); padding: 24px var(--gut) 32px; box-shadow: 0 20px 50px -20px rgba(0,0,0,.6); }
.search-overlay.open .search-panel { transform: none; }
.search-inner { max-width: 760px; margin: 0 auto; }
.search-bar { display: flex; align-items: center; gap: 14px; border-bottom: 2px solid rgba(255,255,255,.2); padding-bottom: 14px; }
.search-bar svg { width: 24px; height: 24px; color: var(--silver); flex: none; }
.search-bar input { flex: 1; background: none; border: none; outline: none; color: #fff; font-family: var(--serif); font-size: clamp(22px, 3vw, 32px); }
.search-bar input::placeholder { color: rgba(201,205,210,.5); }
.search-close { background: none; border: none; color: var(--silver); cursor: pointer; padding: 6px; }
.search-close:hover { color: #fff; }
.search-close svg { width: 24px; height: 24px; }
.search-body { margin-top: 22px; }
.search-cap { font-size: 12px; letter-spacing: .14em; text-transform: uppercase; color: var(--silver); opacity: .7; margin-bottom: 14px; }
.search-chips { display: flex; gap: 10px; flex-wrap: wrap; }
.search-chips a { font-size: 13px; font-weight: 600; padding: 9px 16px; border-radius: 999px; border: 1px solid var(--line-dark); color: #fff; transition: .15s; }
.search-chips a:hover { background: var(--crystal); border-color: var(--crystal); }
.search-results { display: flex; flex-direction: column; gap: 6px; max-height: 50vh; overflow-y: auto; }
.search-res { display: flex; align-items: center; gap: 14px; padding: 10px; border-radius: 10px; transition: background .15s; }
.search-res:hover { background: rgba(255,255,255,.06); }
.search-res .sr-thumb { width: 52px; height: 52px; border-radius: 8px; overflow: hidden; background: #000; flex: none; }
.search-res .sr-thumb img { width: 100%; height: 100%; object-fit: cover; }
.search-res .sr-thumb .ph-img { width: 100%; height: 100%; }
.search-res .sr-name { font-weight: 600; font-size: 14.5px; }
.search-res .sr-cat { font-size: 12px; color: var(--silver); opacity: .7; }
.search-res .sr-price { margin-left: auto; font-family: var(--serif); font-size: 17px; font-weight: 600; }
.search-empty { color: var(--silver); font-size: 14.5px; padding: 8px 0; }

/* ============================================================
   Auth modal + account
   ============================================================ */
.auth-overlay { position: fixed; inset: 0; z-index: 280; background: rgba(15,18,22,.6); display: none; place-items: center; padding: 20px; }
.auth-overlay.open { display: grid; }
.auth-card { background: #fff; color: var(--text); border-radius: 16px; width: min(420px, 100%); padding: 28px; position: relative; }
.auth-tabs { display: flex; gap: 6px; background: var(--mist); border-radius: 10px; padding: 4px; margin-bottom: 20px; }
.auth-tab { flex: 1; padding: 10px; border: none; background: none; border-radius: 8px; font-weight: 600; font-size: 14px; cursor: pointer; color: var(--muted); }
.auth-tab.active { background: #fff; color: var(--navy); box-shadow: var(--shadow-sm); }
.auth-card h3 { font-family: var(--serif); font-size: 24px; font-weight: 600; margin-bottom: 4px; }
.auth-card .auth-sub { font-size: 13.5px; color: var(--muted); margin-bottom: 18px; }
.auth-card .ffield { margin-bottom: 14px; }
.auth-card .ffield label { display: block; font-size: 12.5px; font-weight: 600; color: var(--muted); margin-bottom: 6px; }
.auth-card .input { width: 100%; font-family: var(--sans); font-size: 15px; padding: 12px 14px; border: 1px solid var(--line); border-radius: 8px; }
.auth-card .input:focus { outline: none; border-color: var(--crystal); box-shadow: 0 0 0 3px rgba(119,169,241,.22); }
.auth-forgot { font-size: 12.5px; color: var(--navy); text-decoration: underline; }
.auth-close { position: absolute; top: 14px; right: 14px; width: 34px; height: 34px; border-radius: 50%; background: var(--mist); border: none; cursor: pointer; display: grid; place-items: center; }
.auth-close svg { width: 18px; height: 18px; }
.auth-note { font-size: 11.5px; color: var(--muted); text-align: center; margin-top: 14px; }
.acct-layout { display: grid; grid-template-columns: 230px 1fr; gap: 28px; align-items: start; }
.acct-nav { background: #fff; border: 1px solid var(--line); border-radius: 12px; padding: 8px; position: sticky; top: 92px; }
.acct-nav button { width: 100%; text-align: left; background: none; border: none; padding: 11px 14px; border-radius: 8px; font-size: 14px; font-weight: 500; cursor: pointer; color: var(--text); }
.acct-nav button.active { background: var(--navy); color: #fff; }
.acct-card { background: #fff; border: 1px solid var(--line); border-radius: 12px; padding: 24px; }
@media (max-width: 760px) { .acct-layout { grid-template-columns: 1fr; } .acct-nav { position: static; display: flex; overflow-x: auto; } }

/* ============================================================
   About page
   ============================================================ */
.ab-hero { background: var(--ink); color: #fff; padding: 64px 0; }
.ab-hero-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: 48px; align-items: center; }
.ab-hero-text h1 { font-family: var(--serif); font-size: clamp(32px, 4.4vw, 52px); font-weight: 600; line-height: 1.06; letter-spacing: -.5px; margin: 14px 0 16px; }
.ab-hero-text p { color: var(--silver); font-size: 16.5px; line-height: 1.65; margin-bottom: 26px; max-width: 460px; }
.ab-hero-media { aspect-ratio: 4/3; border-radius: var(--radius); overflow: hidden; background: #000; }
.ab-hero-media img { width: 100%; height: 100%; object-fit: cover; }
.ab-hero-media .ph-img { width: 100%; height: 100%; }
.ab-pillars { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.ab-pillar { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 28px; }
.ab-pnum { width: 40px; height: 40px; border-radius: 50%; background: var(--navy); color: #fff; display: grid; place-items: center; font-family: var(--serif); font-size: 19px; font-weight: 600; margin-bottom: 16px; }
.ab-pillar h3 { font-family: var(--serif); font-size: 22px; font-weight: 600; margin-bottom: 8px; line-height: 1.2; }
.ab-pillar p { color: var(--muted); font-size: 14.5px; line-height: 1.6; }
.ab-gallery { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.ab-gitem { aspect-ratio: 1/1; border-radius: var(--radius); overflow: hidden; background: var(--ink); }
.ab-gitem img { width: 100%; height: 100%; object-fit: cover; }
.ab-gitem .ph-img { width: 100%; height: 100%; }
.ab-uspbar { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.ab-usp { display: flex; align-items: center; gap: 12px; color: #fff; font-size: 14.5px; font-weight: 500; justify-content: center; }
.ab-usp-ic { width: 42px; height: 42px; border-radius: 50%; background: rgba(119,169,241,.16); color: var(--crystal-icy); display: grid; place-items: center; flex: none; }
.ab-usp-ic svg { width: 21px; height: 21px; }
.ab-cta { background: var(--mist); text-align: center; padding: 70px 0; }
.ab-cta h2 { font-family: var(--serif); font-size: clamp(28px, 4vw, 44px); font-weight: 600; margin-bottom: 26px; }
@media (max-width: 860px) {
  .ab-hero-grid { grid-template-columns: 1fr; gap: 28px; }
  .ab-pillars { grid-template-columns: 1fr; }
  .ab-gallery { grid-template-columns: repeat(2, 1fr); }
  .ab-uspbar { grid-template-columns: 1fr 1fr; gap: 18px; }
}

/* ---------- Elegant placeholder (missing product photos) ---------- */
.ph-img {
  width: 100%; height: 100%; position: relative; overflow: hidden;
  background:
    radial-gradient(120% 90% at 50% 18%, rgba(119,169,241,.16), transparent 60%),
    repeating-linear-gradient(45deg, #14181d 0 12px, #181d24 12px 24px);
  display: grid; place-items: center; text-align: center;
}
.ph-img .ph-crystal { width: 46px; opacity: .5; margin-bottom: 12px; }
.ph-img .ph-cap { font-family: ui-monospace, "SF Mono", Menlo, monospace; font-size: 11px; letter-spacing: .05em; color: rgba(201,205,210,.65); padding: 0 14px; line-height: 1.5; }
.ph-img.light {
  background:
    radial-gradient(120% 90% at 50% 18%, rgba(119,169,241,.12), transparent 60%),
    repeating-linear-gradient(45deg, #e7ecf3 0 12px, #eef2f7 12px 24px);
}
.ph-img.light .ph-cap { color: #8b94a1; }

/* ============================================================
   Responsive
   ============================================================ */
@media (max-width: 1080px) {
  .product-grid { grid-template-columns: repeat(3, 1fr); }
  .product-grid.cols-3 { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}
@media (max-width: 860px) {
  :root { --gut: 22px; }
  .nav-left { display: none; }
  .header-inner { grid-template-columns: auto 1fr auto; height: 64px; }
  .brand { justify-self: start; }
  .nav-right .icon-account { display: none; }
  .mobile-menu a.mm-link { display: flex; }
  .steps { grid-template-columns: repeat(2, 1fr); gap: 22px 18px; }
  .trust { grid-template-columns: 1fr; gap: 32px; }
  .cat-banners { grid-template-columns: 1fr; }
  .collection-cards { grid-template-columns: repeat(2, 1fr); }
  .section { padding: 56px 0; }
}
@media (max-width: 560px) {
  .product-grid, .product-grid.cols-3 { grid-template-columns: repeat(2, 1fr); gap: 14px; }
  .product-card .pc-name { font-size: 18px; }
  .product-card .pc-price { font-size: 19px; }
  .footer-grid { grid-template-columns: 1fr; }
  .collection-head { flex-direction: column; align-items: flex-start; gap: 8px; }
}

/* ============================================================
   Full-page dark theme (scoped to body.theme-ink — homepage)
   Turns the alternating light sections into one cohesive dark
   surface while keeping every component readable.
   ============================================================ */
.theme-ink { background: var(--ink); color: #fff; }

/* Every section shares the dark surface; a subtle tonal shift
   keeps adjacent blocks distinguishable. */
.theme-ink .section.on-mist,
.theme-ink .section.on-surface { background: var(--ink); color: #fff; }
.theme-ink .section.on-surface { background: var(--ink-2); }

/* Headings & body copy */
.theme-ink .section-head h2,
.theme-ink .collection-head .ch-text h2,
.theme-ink .step h3,
.theme-ink .trust-item h4 { color: #fff; }
.theme-ink .section-head p,
.theme-ink .step p,
.theme-ink .trust-item p,
.theme-ink .product-card .pc-meta,
.theme-ink .story .st-meta { color: var(--silver); }

/* Accents */
.theme-ink .eyebrow,
.theme-ink .collection-head .ch-link { color: var(--crystal-icy); }

/* Trust icon chips */
.theme-ink .trust-item .ti-ico {
  background: rgba(255,255,255,.06);
  border: 1px solid var(--line-dark);
  color: var(--crystal-icy);
}

/* Product cards → dark surface with subtle separation */
.theme-ink .product-card { background: var(--ink-2); border-color: var(--line-dark); }
.theme-ink .product-card .pc-name,
.theme-ink .product-card .pc-price { color: #fff; }
.theme-ink .product-card .pc-add {
  background: rgba(255,255,255,.06);
  border-color: var(--line-dark);
  color: var(--crystal-icy);
}
.theme-ink .product-card .pc-add:hover { background: var(--crystal); color: #fff; border-color: var(--crystal); }

/* Story (reviews) cards + showcase cards → dark, with borders so
   they stay defined against the dark page. */
.theme-ink .story { background: var(--ink-2); border-color: var(--line-dark); }
.theme-ink .story .st-quote,
.theme-ink .story .st-name { color: #fff; }
.theme-ink .showcase-card { border: 1px solid var(--line-dark); }

/* ============================================================
   Product page (produs.html) dark theme — extends body.theme-ink.
   <main class="section on-surface"> already gets the dark surface
   above; these rules recolor the product-specific components.
   ============================================================ */
.theme-ink .breadcrumb { color: var(--silver); }
.theme-ink .breadcrumb a:hover { color: var(--crystal-icy); }

/* Title, brand, price, rating */
.theme-ink .p-brand { color: var(--crystal-icy); }
.theme-ink .p-title,
.theme-ink .p-price .now { color: #fff; }
.theme-ink .p-rating { color: var(--silver); }
.theme-ink .p-rating .pr-link { color: var(--crystal-icy); }

/* Field labels */
.theme-ink .field > label.flabel { color: var(--silver); }

/* Selects & inputs → dark fields with a light dropdown chevron */
.theme-ink .select,
.theme-ink .input {
  background-color: var(--ink);
  border-color: var(--line-dark);
  color: #fff;
}
.theme-ink .select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%23B4CEF2' stroke-width='2'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
}
.theme-ink .input::placeholder { color: rgba(201,205,210,.5); }

/* Upload widget */
.theme-ink .upload { background: rgba(255,255,255,.04); border-color: rgba(255,255,255,.22); }
.theme-ink .upload:hover { background: rgba(255,255,255,.07); border-color: var(--crystal); }
.theme-ink .upload .up-title { color: #fff; }
.theme-ink .upload .up-sub { color: var(--silver); }

/* Preview toggle row */
.theme-ink .toggle-row { background: var(--ink); border-color: var(--line-dark); }
.theme-ink .toggle-row .tr-title { color: #fff; }
.theme-ink .toggle-row .tr-note { color: var(--silver); }
.theme-ink .switch .track { background: rgba(255,255,255,.18); }

/* Reassurance line */
.theme-ink .p-reassure { color: var(--silver); }

/* Accordions + spec table */
.theme-ink .accordions { border-top-color: var(--line-dark); }
.theme-ink .acc { border-bottom-color: var(--line-dark); }
.theme-ink .acc-head { color: #fff; }
.theme-ink .acc-inner { color: var(--silver); }
.theme-ink .spec-table td { border-bottom-color: var(--line-dark); }
.theme-ink .spec-table td:first-child { color: var(--silver); }
.theme-ink .spec-table td:last-child { color: #fff; }

/* Product reviews block */
.theme-ink .prod-reviews { border-top-color: var(--line-dark); }
.theme-ink .prod-reviews .pr-head h2 { color: #fff; }
.theme-ink .prod-reviews .pr-summary { color: var(--silver); }
.theme-ink .rev-card { border-bottom-color: var(--line-dark); }
.theme-ink .rev-card .rc-av { background: rgba(255,255,255,.06); border-color: var(--line-dark); color: var(--crystal-icy); }
.theme-ink .rev-card .rc-name { color: #fff; }
.theme-ink .rev-card .rc-text { color: var(--silver); }
.theme-ink .rev-card .rc-date { color: var(--silver); }
.theme-ink .rev-helpful { color: var(--silver); border-color: var(--line-dark); }
.theme-ink .rev-helpful:hover { border-color: var(--crystal); color: var(--crystal-icy); }
.theme-ink .rev-reply { background: rgba(255,255,255,.04); }
.theme-ink .rev-reply .rr-head { color: var(--crystal-icy); }
.theme-ink .rev-reply .rr-text { color: var(--silver); }

/* ============================================================
   Inner pages dark theme — collection, cart, checkout, account,
   contact, tracking, legal, FAQ, blog, reviews. Extends
   body.theme-ink; selectors outrank shop/reviews/blog.css.
   ============================================================ */

/* ---- Inner page header band + shared bits ---- */
.theme-ink .page-band { background: var(--ink-2); border-bottom-color: var(--line-dark); }
.theme-ink .page-band p { color: var(--silver); }
.theme-ink .breadcrumb a:hover { color: var(--crystal-icy); }
.theme-ink .coll-toolbar .count,
.theme-ink .sort-field label,
.theme-ink .fb-field label { color: var(--silver); }
.theme-ink .btn-reset,
.theme-ink .cf-back { color: var(--crystal-icy); }

/* ---- Chips & filter bars (collection, contact, blog, reviews) ---- */
.theme-ink .filter-bar { background: rgba(255,255,255,.04); border-color: var(--line-dark); }
.theme-ink .cat-chip,
.theme-ink .cf-chip,
.theme-ink .blog-chip,
.theme-ink .rev-chip { background: rgba(255,255,255,.05); border-color: var(--line-dark); color: var(--silver); }
.theme-ink .cat-chip:hover,
.theme-ink .cf-chip:hover,
.theme-ink .blog-chip:hover,
.theme-ink .rev-chip:hover { color: #fff; border-color: var(--crystal); }
.theme-ink .cat-chip.active,
.theme-ink .cf-chip.active,
.theme-ink .blog-chip.active,
.theme-ink .rev-chip.active { background: var(--crystal); border-color: var(--crystal); color: #fff; }

/* ---- Editorial collection rows + quick view ---- */
.theme-ink .ed-row { background: var(--ink-2); border-color: var(--line-dark); }
.theme-ink .er-media { background: var(--ink); }
.theme-ink .ed-row p { color: var(--silver); }
.theme-ink .qv-card { background: var(--ink-2); }
.theme-ink .qv-info p { color: var(--silver); }
.theme-ink .qv-close { background: rgba(255,255,255,.14); color: #fff; }

/* ---- Order tracking ---- */
.theme-ink .trk-card { background: var(--ink-2); border-color: var(--line-dark); }
.theme-ink .trk-date,
.theme-ink .trk-label,
.theme-ink .trk-awb-k { color: var(--silver); }
.theme-ink .trk-step.done .trk-label,
.theme-ink .trk-step.current .trk-label { color: #fff; }
.theme-ink .trk-dot,
.theme-ink .trk-line { background: rgba(255,255,255,.12); color: var(--silver); }
.theme-ink .trk-items,
.theme-ink .trk-livrare,
.theme-ink .trk-awb { border-top-color: var(--line-dark); }
.theme-ink .st-pill { background: rgba(43,111,219,.2); color: #9cc0ff; }
.theme-ink .trk-error { background: rgba(192,57,67,.16); border-color: rgba(192,57,67,.35); color: #f0a0a0; }

/* Callout notes (tracking, contact answer, legal) */
.theme-ink .trk-note,
.theme-ink .cf-answer,
.theme-ink .legal-note { background: rgba(119,169,241,.10); border-color: rgba(119,169,241,.30); }
.theme-ink .legal-note.warn { background: rgba(217,168,19,.12); border-color: rgba(217,168,19,.35); }

/* ---- Discount + generic inputs ---- */
.theme-ink .discount-row input,
.theme-ink .faq-search input { background: var(--ink); border-color: var(--line-dark); color: #fff; }
.theme-ink .discount-row input::placeholder,
.theme-ink .faq-search input::placeholder { color: rgba(201,205,210,.5); }
.theme-ink .faq-search svg { color: var(--silver); }

/* ---- Cart ---- */
.theme-ink .cart-list,
.theme-ink .cart-item { border-color: var(--line-dark); }
.theme-ink .cart-item .ci-opts,
.theme-ink .ci-del { color: var(--silver); }
.theme-ink .qty { background: var(--ink); border-color: var(--line-dark); }
.theme-ink .qty button { color: #fff; }
.theme-ink .qty button:hover { background: rgba(255,255,255,.08); color: var(--crystal-icy); }
.theme-ink .summary { background: rgba(255,255,255,.04); border-color: var(--line-dark); }
.theme-ink .sum-row { color: var(--silver); }
.theme-ink .sum-row b { color: #fff; }
.theme-ink .sum-total { border-top-color: var(--line-dark); }
.theme-ink .cart-empty p { color: var(--silver); }

/* ---- Checkout ---- */
.theme-ink .step-chip { color: var(--silver); }
.theme-ink .step-chip .n { background: rgba(255,255,255,.12); color: var(--silver); }
.theme-ink .step-chip.active { color: #fff; }
.theme-ink .co-card { background: var(--ink-2); border-color: var(--line-dark); }
.theme-ink .ffield label { color: var(--silver); }
.theme-ink .ship-option { border-color: var(--line-dark); }
.theme-ink .ship-option.sel { background: rgba(119,169,241,.12); }
.theme-ink .ship-option .so-sub { color: var(--silver); }
.theme-ink .ship-option .radio { border-color: rgba(255,255,255,.3); }
.theme-ink .pay-card { background: rgba(255,255,255,.04); border-color: var(--line-dark); }
.theme-ink .pay-brands span { background: rgba(255,255,255,.9); border-color: var(--line-dark); color: var(--ink); }
.theme-ink .co-sum-item { border-bottom-color: var(--line-dark); }
.theme-ink .co-sum-item .csi-opt { color: var(--silver); }
.theme-ink .confirm p { color: var(--silver); }
.theme-ink .confirm .order-no { background: rgba(255,255,255,.04); border-color: var(--line-dark); }

/* ---- Legal pages ---- */
.theme-ink .legal-toc { background: rgba(255,255,255,.04); border-color: var(--line-dark); }
.theme-ink .legal-toc h4 { color: var(--silver); }
.theme-ink .legal-toc a { color: var(--silver); }
.theme-ink .legal-toc a:hover { color: var(--crystal-icy); }
.theme-ink .legal-updated { color: var(--silver); border-bottom-color: var(--line-dark); }
.theme-ink .legal-prose p,
.theme-ink .legal-prose li { color: var(--silver); }
.theme-ink .legal-prose a { color: var(--crystal-icy); }
.theme-ink .legal-prose strong { color: #fff; }
.theme-ink .legal-table th,
.theme-ink .legal-table td { border-color: var(--line-dark); }
.theme-ink .legal-table th { background: rgba(255,255,255,.05); color: var(--silver); }
.theme-ink .firm-box { background: rgba(255,255,255,.04); border-color: var(--line-dark); }
.theme-ink .firm-box .fb-k { color: var(--silver); }
.theme-ink .retract-form { background: rgba(255,255,255,.03); border-color: rgba(255,255,255,.22); }
.theme-ink .retract-form .rf-line { border-bottom-color: var(--line-dark); }

/* ---- Contact ---- */
.theme-ink .cf-cat,
.theme-ink .cf-subject { background: var(--ink-2); border-color: var(--line-dark); }
.theme-ink .cf-cat-ic { background: rgba(255,255,255,.06); color: var(--crystal-icy); }
.theme-ink .cf-subject:hover { color: var(--crystal-icy); }
.theme-ink .cf-subject svg { color: var(--silver); }
.theme-ink .cf-answer-h { color: var(--crystal-icy); }
.theme-ink .cf-answer p,
.theme-ink .cf-answer-link,
.theme-ink .cf-answer-more,
.theme-ink .cf-success p { color: var(--silver); }
.theme-ink .contact-success { background: rgba(31,122,77,.18); color: #6fd49a; }
.theme-ink .info-card { background: rgba(255,255,255,.04); border-color: var(--line-dark); }
.theme-ink .info-row { border-bottom-color: var(--line-dark); }
.theme-ink .info-ic { background: rgba(255,255,255,.06); border-color: var(--line-dark); color: var(--crystal-icy); }
.theme-ink .info-k { color: var(--silver); }
.theme-ink .info-v { color: #fff; }
.theme-ink .info-v:hover { color: var(--crystal-icy); }

/* ---- Mini-cart drawer (global) ---- */
.theme-ink .mc-drawer { background: var(--ink-2); }
.theme-ink .mc-head { border-bottom-color: var(--line-dark); }
.theme-ink .mc-head .mc-close { color: #fff; }
.theme-ink .mc-item { border-bottom-color: var(--line-dark); }
.theme-ink .mc-opts,
.theme-ink .mc-note,
.theme-ink .mc-del { color: var(--silver); }
.theme-ink .mc-foot { border-top-color: var(--line-dark); }

/* ---- Account + auth modal ---- */
.theme-ink .acct-nav,
.theme-ink .acct-card { background: var(--ink-2); border-color: var(--line-dark); }
.theme-ink .acct-nav button { color: var(--silver); }
.theme-ink .acct-nav button:hover { color: #fff; background: rgba(255,255,255,.05); }
.theme-ink .acct-nav button.active { background: var(--crystal); color: #fff; }
.theme-ink .auth-card { background: var(--ink-2); color: #fff; }
.theme-ink .auth-tabs { background: rgba(255,255,255,.06); }
.theme-ink .auth-tab { color: var(--silver); }
.theme-ink .auth-tab.active { background: var(--crystal); color: #fff; }
.theme-ink .auth-card .auth-sub,
.theme-ink .auth-card .ffield label,
.theme-ink .auth-note { color: var(--silver); }
.theme-ink .auth-card .input { background: var(--ink); border-color: var(--line-dark); color: #fff; }
.theme-ink .auth-forgot { color: var(--crystal-icy); }
.theme-ink .auth-close { background: rgba(255,255,255,.1); color: #fff; }

/* ---- FAQ ---- */
.theme-ink .faq-empty { color: var(--silver); }

/* ---- Reviews page ---- */
.theme-ink .stories .story { background: var(--ink-2); border-color: var(--line-dark); }
.theme-ink .story .st-quote,
.theme-ink .story .st-name { color: #fff; }
.theme-ink .story .st-meta { color: var(--silver); }
.theme-ink .rev-card .rc-verif { background: rgba(31,138,91,.18); color: #6fd49a; }
.theme-ink .rev-helpful.voted { background: rgba(119,169,241,.16); border-color: var(--crystal); color: var(--crystal-icy); }
.theme-ink .rev-empty,
.theme-ink .rev-success p { color: var(--silver); }
.theme-ink .rev-modal .rm-card,
.theme-ink .rev-modal .rm-head,
.theme-ink .rev-modal .rm-foot { background: var(--ink-2); }
.theme-ink .rev-modal .rm-head,
.theme-ink .rev-modal .rm-foot { border-color: var(--line-dark); }
.theme-ink .rm-upload { background: rgba(255,255,255,.04); border-color: rgba(255,255,255,.22); color: var(--silver); }
.theme-ink .rm-upload:hover { background: rgba(255,255,255,.07); border-color: var(--crystal); }

/* ---- Blog list + article ---- */
.theme-ink .blog-card { background: var(--ink-2); border-color: var(--line-dark); }
.theme-ink .blog-card p,
.theme-ink .blog-card .bc-meta { color: var(--silver); }
.theme-ink .article .a-meta { color: var(--silver); }
.theme-ink .article .a-body p { color: var(--silver); }
.theme-ink .article .a-body blockquote { color: var(--crystal-icy); }
.theme-ink .a-share { border-top-color: var(--line-dark); border-bottom-color: var(--line-dark); }
.theme-ink .a-share .as-label { color: var(--silver); }
.theme-ink .a-share a { border-color: var(--line-dark); color: var(--crystal-icy); }
.theme-ink .a-share a:hover { background: var(--crystal); border-color: var(--crystal); color: #fff; }

/* ---- About page ---- */
.theme-ink .ab-pillar { background: var(--ink-2); border-color: var(--line-dark); }
.theme-ink .ab-pillar p { color: var(--silver); }
.theme-ink .ab-cta { background: var(--ink-2); }
