/* ==========================================================================
   AURELIA COSMETICS — Global Stylesheet
   High-end B2B cosmetics export site
   Palette: cream / sand backgrounds, rose-gold + earth accents, dark ink text
   ========================================================================== */

/* ---------- Design tokens ---------- */
:root {
  --cream:        #FAF6F1;
  --cream-deep:   #F3ECE3;
  --sand:         #EDE4D9;
  --rose:         #B76E79;
  --rose-soft:    #D9A5AD;
  --rose-pale:    #F5E3E5;
  --gold:         #C8A15A;
  --terra:        #A9714B;
  --ink:          #2B2523;
  --ink-soft:     #574E49;
  --muted:        #857A73;
  --white:        #FFFFFF;
  --line:         rgba(43, 37, 35, 0.12);

  --font-serif: "Cormorant Garamond", "Playfair Display", Georgia, "Times New Roman", serif;
  --font-sans:  "Jost", "Avenir Next", "Segoe UI", -apple-system, BlinkMacSystemFont, Helvetica, Arial, sans-serif;

  --shadow-sm: 0 2px 10px rgba(43, 37, 35, 0.06);
  --shadow-md: 0 10px 30px rgba(43, 37, 35, 0.10);
  --radius: 6px;
  --max-w: 1180px;
  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
}

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

html { scroll-behavior: smooth; }

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

img, svg { display: block; max-width: 100%; }

a { color: var(--rose); text-decoration: none; transition: color .25s var(--ease); }
a:hover { color: var(--terra); }

ul { list-style: none; }

h1, h2, h3, h4 {
  font-family: var(--font-serif);
  font-weight: 600;
  color: var(--ink);
  line-height: 1.2;
  letter-spacing: 0.01em;
}

.container { max-width: var(--max-w); margin: 0 auto; padding: 0 24px; }

/* ---------- Utilities ---------- */
.eyebrow {
  display: inline-block;
  font-size: 12px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
  font-weight: 500;
}

.section { padding: 88px 0; }
.section--sand { background: var(--cream-deep); }

.section-head { max-width: 640px; margin: 0 auto 56px; text-align: center; }
.section-head h2 { font-size: clamp(30px, 4vw, 42px); margin-bottom: 14px; }
.section-head p { color: var(--muted); }

.divider {
  width: 56px; height: 1px; margin: 18px auto 0;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 15px 34px;
  border: 1px solid transparent;
  border-radius: 2px;
  cursor: pointer;
  transition: all .3s var(--ease);
}

.btn--primary {
  background: var(--rose);
  color: var(--white);
}
.btn--primary:hover {
  background: var(--ink);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn--ghost {
  background: transparent;
  color: var(--ink);
  border-color: rgba(43, 37, 35, 0.35);
}
.btn--ghost:hover {
  border-color: var(--ink);
  background: var(--ink);
  color: var(--white);
  transform: translateY(-2px);
}

.btn--light {
  background: var(--white);
  color: var(--ink);
}
.btn--light:hover { background: var(--sand); transform: translateY(-2px); }

/* ==========================================================================
   Header / Navigation
   ========================================================================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(250, 246, 241, 0.92);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 78px;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-serif);
  font-size: 24px;
  font-weight: 700;
  letter-spacing: 0.22em;
  color: var(--ink);
  line-height: 1.15;
}
.logo-mark {
  flex: 0 0 auto;
  width: 40px;
  height: 40px;
  display: block;
  filter: drop-shadow(0 2px 6px rgba(183, 110, 121, 0.28));
}
.logo-wordmark {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.logo span {
  display: block;
  font-family: var(--font-sans);
  font-size: 8.5px;
  font-weight: 500;
  letter-spacing: 0.42em;
  color: var(--gold);
  margin-top: 1px;
}

.main-nav { display: flex; align-items: center; gap: 38px; }
.main-nav a {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-soft);
  position: relative;
  padding: 6px 0;
}
.main-nav a::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 0; height: 1px;
  background: var(--rose);
  transition: width .3s var(--ease);
}
.main-nav a:hover::after,
.main-nav a.is-active::after { width: 100%; }
.main-nav a.is-active { color: var(--ink); }

.main-nav a.nav-cta {
  border: 1px solid var(--rose);
  color: var(--rose);
  padding: 10px 24px;
  border-radius: 2px;
}
.main-nav a.nav-cta::after { display: none; }
.main-nav a.nav-cta:hover { background: var(--rose); color: var(--white); }

/* Hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: 0;
  cursor: pointer;
  padding: 8px;
}
.nav-toggle span {
  width: 24px; height: 1.5px;
  background: var(--ink);
  transition: transform .3s var(--ease), opacity .3s var(--ease);
}
.nav-toggle.is-open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-toggle.is-open span:nth-child(2) { opacity: 0; }
.nav-toggle.is-open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* ==========================================================================
   Hero (home)
   ========================================================================== */
.hero {
  position: relative;
  min-height: 620px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background:
    radial-gradient(900px 480px at 82% 18%, rgba(217, 165, 173, 0.35), transparent 60%),
    radial-gradient(700px 520px at 8% 88%, rgba(200, 161, 90, 0.22), transparent 60%),
    linear-gradient(135deg, #FBF8F4 0%, #F3E9DF 55%, #EBDCCB 100%);
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Ccircle cx='1' cy='1' r='1' fill='%23B76E79' fill-opacity='0.05'/%3E%3C/svg%3E");
  pointer-events: none;
}

.hero-inner { position: relative; z-index: 2; display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 60px; align-items: center; padding: 90px 0; }

.hero-copy .eyebrow { margin-bottom: 18px; }
.hero-copy h1 {
  font-size: clamp(40px, 5.4vw, 66px);
  font-weight: 500;
  margin-bottom: 22px;
}
.hero-copy h1 em {
  font-style: italic;
  color: var(--rose);
}
.hero-copy p {
  max-width: 480px;
  font-size: 17px;
  color: var(--ink-soft);
  margin-bottom: 36px;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 16px; }

.hero-stats {
  display: flex;
  gap: 44px;
  margin-top: 54px;
  flex-wrap: wrap;
}
.hero-stats .stat b {
  display: block;
  font-family: var(--font-serif);
  font-size: 32px;
  font-weight: 600;
  color: var(--ink);
}
.hero-stats .stat span {
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
}

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  margin-top: 30px;
  padding-top: 26px;
  border-top: 1px solid var(--line);
  font-size: 13px;
  color: var(--ink-soft);
  letter-spacing: 0.02em;
}

/* Hero visual: layered SVG product composition */
.hero-visual { position: relative; display: flex; justify-content: center; }
.hero-visual svg { width: 100%; max-width: 420px; height: auto; filter: drop-shadow(0 24px 40px rgba(43,37,35,.14)); }

/* ==========================================================================
   Product cards
   ========================================================================== */
.product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}

.product-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease);
}
.product-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}

.product-card__media {
  position: relative;
  aspect-ratio: 1 / 1;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(160deg, #FBF8F3 0%, #F4EDE3 100%);
  padding: 20px;
}
.product-card__media svg { width: 62%; height: auto; filter: drop-shadow(0 12px 20px rgba(43,37,35,.18)); }
/* Real photo (set PRODUCTS[].img) — source photos are pre-squared onto a white
   canvas, so a 1:1 media box + `contain` shows the whole product with even,
   intentional margins. A soft inner border lifts the white photo off the tinted
   background so it reads as a framed product shot. */
.product-card__media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 3px;
}

.product-card__badge {
  position: absolute;
  top: 14px; left: 14px;
  background: rgba(255,255,255,0.9);
  color: var(--rose);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 99px;
  border: 1px solid rgba(183, 110, 121, 0.3);
}

.product-card__body { padding: 20px 22px 24px; display: flex; flex-direction: column; flex: 1; }
.product-card__cat {
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
}
.product-card__title {
  font-family: var(--font-serif);
  font-size: 20px;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 8px;
}
.product-card__desc {
  font-size: 13.5px;
  color: var(--muted);
  line-height: 1.6;
  margin-bottom: 18px;
  flex: 1;
}
/* Price line — the key B2B signal, so it carries the card visually. */
.product-card__price {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 10px;
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 600;
  letter-spacing: 0.01em;
  color: var(--ink);
  margin-bottom: 16px;
}
.product-card__moq {
  font-family: var(--font-sans);
  font-size: 10.5px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
}

.product-card__actions { display: flex; gap: 10px; }
.product-card__actions .btn { padding: 10px 18px; font-size: 11px; flex: 1; text-align: center; }

/* ==========================================================================
   Feature / value props (home)
   ========================================================================== */
.value-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 26px;
}
.value-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 38px 28px;
  text-align: center;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.value-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.value-card .icon {
  width: 62px; height: 62px;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--rose-pale), var(--sand));
}
.value-card .icon svg { width: 28px; height: 28px; stroke: var(--rose); }
.value-card h3 { font-size: 21px; margin-bottom: 10px; }
.value-card p { font-size: 14px; color: var(--muted); }

/* ==========================================================================
   Testimonials
   ========================================================================== */
.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}
.testi-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 34px 30px;
  display: flex;
  flex-direction: column;
}
.testi-card .stars { color: var(--gold); letter-spacing: 4px; font-size: 14px; margin-bottom: 16px; }
.testi-card blockquote {
  font-family: var(--font-serif);
  font-size: 17.5px;
  font-style: italic;
  color: var(--ink-soft);
  line-height: 1.65;
  flex: 1;
}
.testi-card .who { margin-top: 22px; display: flex; align-items: center; gap: 14px; }
.testi-card .avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-serif);
  font-size: 17px;
  color: var(--white);
  background: linear-gradient(135deg, var(--rose), var(--terra));
}
.testi-card .who b { display: block; font-size: 14px; color: var(--ink); font-weight: 600; }
.testi-card .who span { font-size: 12px; color: var(--muted); }

/* ==========================================================================
   CTA band
   ========================================================================== */
.cta-band {
  background:
    radial-gradient(700px 320px at 15% 20%, rgba(217,165,173,.28), transparent 60%),
    radial-gradient(700px 320px at 85% 85%, rgba(200,161,90,.20), transparent 60%),
    linear-gradient(120deg, #332B27, #4A3A35 60%, #3A2E2A);
  color: var(--cream);
  text-align: center;
  padding: 96px 24px;
}
.cta-band h2 {
  color: var(--cream);
  font-size: clamp(30px, 4vw, 44px);
  margin-bottom: 16px;
}
.cta-band h2 em { font-style: italic; color: var(--rose-soft); }
.cta-band p { color: rgba(250,246,241,.75); max-width: 560px; margin: 0 auto 36px; }
.cta-band .btn--light:hover { background: var(--rose); color: var(--white); }

/* ==========================================================================
   Page hero (inner pages)
   ========================================================================== */
.page-hero {
  padding: 84px 0 64px;
  text-align: center;
  background:
    radial-gradient(600px 260px at 80% 10%, rgba(217,165,173,.25), transparent 60%),
    linear-gradient(180deg, var(--cream-deep), var(--cream));
  border-bottom: 1px solid var(--line);
}
.page-hero h1 { font-size: clamp(34px, 4.6vw, 52px); margin-bottom: 14px; }
.page-hero p { max-width: 620px; margin: 0 auto; color: var(--muted); }
.breadcrumb {
  margin-top: 22px;
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
}
.breadcrumb a { color: var(--rose); }

/* ==========================================================================
   Products page — filter bar
   ========================================================================== */
.filter-bar {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-bottom: 48px;
}
.filter-btn {
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 11px 26px;
  border: 1px solid rgba(43,37,35,.2);
  background: transparent;
  color: var(--ink-soft);
  border-radius: 99px;
  cursor: pointer;
  transition: all .28s var(--ease);
}
.filter-btn:hover { border-color: var(--rose); color: var(--rose); }
.filter-btn.is-active {
  background: var(--ink);
  border-color: var(--ink);
  color: var(--white);
}

.filter-empty {
  text-align: center;
  padding: 60px 0;
  color: var(--muted);
  display: none;
}

/* ==========================================================================
   Product detail
   ========================================================================== */
.detail-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}

.detail-gallery {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 1 / 1;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-md);
  background: linear-gradient(160deg, #FBF8F3 0%, #F4EDE3 100%);
  padding: 28px;
}
.detail-gallery svg { width: 60%; height: auto; filter: drop-shadow(0 18px 32px rgba(43,37,35,.18)); }
/* Real photo on the detail page — same reasoning as the card: source is already
   squared on white, so `contain` avoids cropping the product. */
.detail-gallery img { display: block; width: 100%; height: 100%; object-fit: contain; border-radius: 3px; }
.detail-gallery .tag {
  position: absolute;
  top: 20px; left: 20px;
  background: rgba(255,255,255,.92);
  border: 1px solid rgba(183,110,121,.35);
  color: var(--rose);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 7px 16px;
  border-radius: 99px;
}

.detail-info h1 { font-size: clamp(32px, 3.6vw, 46px); margin-bottom: 10px; }
.detail-info .cat { font-size: 11px; letter-spacing: 0.24em; text-transform: uppercase; color: var(--gold); margin-bottom: 6px; }
.detail-info .lead { font-size: 16.5px; color: var(--ink-soft); margin-bottom: 26px; }
.detail-info .price-note {
  font-family: var(--font-serif);
  font-size: 22px;
  color: var(--rose);
  margin-bottom: 28px;
}

.spec-table { width: 100%; border-collapse: collapse; margin-bottom: 30px; }
.spec-table th, .spec-table td {
  text-align: left;
  padding: 12px 14px;
  font-size: 14px;
  border-bottom: 1px solid var(--line);
}
.spec-table th {
  font-weight: 600;
  color: var(--ink);
  white-space: nowrap;
  width: 40%;
  letter-spacing: 0.04em;
}
.spec-table td { color: var(--ink-soft); }
.spec-table tr:nth-child(odd) { background: rgba(237, 228, 217, .35); }

.detail-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 20px; }
.detail-trust { font-size: 13px; color: var(--muted); }

/* Detail sections below */
.detail-section { margin-top: 64px; }
.detail-section h2 {
  font-size: clamp(26px, 3vw, 34px);
  margin-bottom: 22px;
  text-align: center;
}

.ingrid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}
.ing-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px 24px;
  text-align: center;
}
.ing-card .emoji { font-size: 30px; margin-bottom: 12px; }
.ing-card h3 { font-size: 19px; margin-bottom: 8px; }
.ing-card p { font-size: 13px; color: var(--muted); }

.oem-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  counter-reset: oem;
}
.oem-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 32px 28px;
  counter-increment: oem;
  position: relative;
}
.oem-card::before {
  content: "0" counter(oem);
  font-family: var(--font-serif);
  font-size: 40px;
  font-weight: 600;
  color: var(--rose-soft);
  opacity: .55;
  display: block;
  margin-bottom: 10px;
}
.oem-card h3 { font-size: 20px; margin-bottom: 10px; }
.oem-card p { font-size: 14px; color: var(--muted); }

/* Related products reuse .product-grid */

/* ==========================================================================
   About page
   ========================================================================== */
.about-story {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.about-story .text h2 { font-size: clamp(28px, 3.6vw, 40px); margin-bottom: 20px; }
.about-story .text p { margin-bottom: 16px; color: var(--ink-soft); }

.about-visual {
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4 / 4.4;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-md);
}
.about-visual svg { width: 60%; height: auto; }

.stats-band {
  background: var(--ink);
  padding: 70px 0;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  text-align: center;
}
.stats-grid .stat b {
  display: block;
  font-family: var(--font-serif);
  font-size: clamp(34px, 4vw, 48px);
  font-weight: 600;
  color: var(--rose-soft);
}
.stats-grid .stat span {
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(250,246,241,.6);
}

.cert-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.cert-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 34px 24px;
  text-align: center;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.cert-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.cert-card .seal {
  width: 74px; height: 74px;
  margin: 0 auto 18px;
  border-radius: 50%;
  border: 1.5px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-serif);
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--terra);
  background: linear-gradient(135deg, #FDFBF7, var(--sand));
}
.cert-card h3 { font-size: 18px; margin-bottom: 8px; }
.cert-card p { font-size: 13px; color: var(--muted); }

/* ==========================================================================
   Contact page
   ========================================================================== */
.contact-layout {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 56px;
  align-items: start;
}

.form-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 44px 42px;
  box-shadow: var(--shadow-sm);
}
.form-card h2 { font-size: 28px; margin-bottom: 8px; }
.form-card > p { font-size: 14px; color: var(--muted); margin-bottom: 30px; }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-group { margin-bottom: 18px; }
.form-group label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink);
  margin-bottom: 8px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  font-family: var(--font-sans);
  font-size: 15px;
  color: var(--ink);
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: 3px;
  padding: 13px 16px;
  transition: border-color .25s var(--ease), box-shadow .25s var(--ease);
}
.form-group textarea { resize: vertical; min-height: 130px; }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--rose);
  box-shadow: 0 0 0 3px rgba(183, 110, 121, 0.12);
}
.form-group .error-msg {
  display: none;
  font-size: 12px;
  color: #B0413E;
  margin-top: 6px;
}
.form-group.has-error input,
.form-group.has-error select,
.form-group.has-error textarea { border-color: #B0413E; }
.form-group.has-error .error-msg { display: block; }

.form-success {
  display: none;
  background: #F0F7F0;
  border: 1px solid #BFDCC0;
  color: #3D6B42;
  border-radius: 4px;
  padding: 18px 22px;
  font-size: 15px;
  margin-bottom: 22px;
}
.form-success.is-visible { display: block; }

/* Same box, used for delivery failures. Never leave a buyer thinking the
   inquiry went through when it did not — the message offers a mailto route. */
.form-success.is-error {
  background: #FDF3F2;
  border-color: #E3B4B1;
  color: #8E3B38;
}
.form-success a { color: inherit; text-decoration: underline; }

/* Contact info side panel */
.contact-panel { display: flex; flex-direction: column; gap: 20px; }
.contact-info-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px 26px;
  display: flex;
  gap: 18px;
  align-items: flex-start;
}
.contact-info-card .icon {
  flex: 0 0 46px;
  width: 46px; height: 46px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--rose-pale), var(--sand));
  display: flex;
  align-items: center;
  justify-content: center;
}
.contact-info-card .icon svg { width: 20px; height: 20px; stroke: var(--rose); }
.contact-info-card h3 { font-size: 17px; margin-bottom: 4px; }
.contact-info-card p, .contact-info-card a { font-size: 14px; color: var(--ink-soft); }
.contact-info-card a:hover { color: var(--rose); }

/* FAQ */
.faq-list { max-width: 820px; margin: 0 auto; }
.faq-item {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  margin-bottom: 14px;
  overflow: hidden;
}
.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 22px 26px;
  font-family: var(--font-serif);
  font-size: 19px;
  font-weight: 600;
  color: var(--ink);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  transition: background .25s var(--ease);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary:hover { background: rgba(237, 228, 217, .4); }
.faq-item summary .chev {
  flex: 0 0 26px;
  width: 26px; height: 26px;
  border: 1px solid var(--line);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  color: var(--rose);
  transition: transform .3s var(--ease);
}
.faq-item[open] summary .chev { transform: rotate(45deg); }
.faq-item .faq-body { padding: 0 26px 22px; font-size: 14.5px; color: var(--ink-soft); }

/* ==========================================================================
   Footer
   ========================================================================== */
.site-footer {
  background: #241F1D;
  color: rgba(250, 246, 241, 0.65);
  padding: 72px 0 0;
  font-size: 14px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.1fr;
  gap: 44px;
  padding-bottom: 56px;
}
.footer-grid .logo { color: var(--cream); margin-bottom: 16px; display: inline-block; }
.footer-about p { line-height: 1.8; max-width: 300px; }
.footer-col h4 {
  color: var(--cream);
  font-size: 15px;
  font-family: var(--font-sans);
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.footer-col ul li { margin-bottom: 11px; }
.footer-col ul a { color: rgba(250,246,241,.65); }
.footer-col ul a:hover { color: var(--rose-soft); }

.social-links { display: flex; gap: 12px; }
.social-links a {
  width: 40px; height: 40px;
  border: 1px solid rgba(250,246,241,.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(250,246,241,.7);
  transition: all .3s var(--ease);
}
.social-links a:hover {
  background: var(--rose);
  border-color: var(--rose);
  color: var(--white);
  transform: translateY(-3px);
}
.social-links svg { width: 17px; height: 17px; }

.footer-bottom {
  border-top: 1px solid rgba(250,246,241,.12);
  padding: 22px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  font-size: 12.5px;
  letter-spacing: 0.04em;
}

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

/* ==========================================================================
   Responsive
   ========================================================================== */
@media (max-width: 1024px) {
  .product-grid { grid-template-columns: repeat(3, 1fr); }
  .value-grid, .cert-grid, .ingrid, .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .oem-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-inner { grid-template-columns: 1fr; padding: 70px 0; }
  .hero-visual { order: -1; }
  .hero-visual svg { max-width: 320px; }
  .detail-layout, .about-story, .contact-layout { grid-template-columns: 1fr; gap: 44px; }
}

@media (max-width: 768px) {
  .section { padding: 64px 0; }

  .nav-toggle { display: flex; }
  .main-nav {
    position: absolute;
    top: 78px; left: 0; right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: var(--cream);
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow-md);
    max-height: 0;
    overflow: hidden;
    transition: max-height .4s var(--ease);
  }
  .main-nav.is-open { max-height: 360px; }
  .main-nav a { padding: 16px 24px; border-top: 1px solid var(--line); }
  .main-nav a::after { display: none; }
  .main-nav a.nav-cta { border: 0; margin: 0; padding: 16px 24px; text-align: left; border-radius: 0; }

  .hero { min-height: auto; }
  .hero-copy h1 { font-size: clamp(36px, 9vw, 48px); }
  .hero-stats { gap: 28px; margin-top: 40px; }

  .product-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .testi-grid { grid-template-columns: 1fr; }

  .form-card { padding: 32px 24px; }
  .form-row { grid-template-columns: 1fr; }

  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }

  .value-card, .cert-card, .ing-card, .oem-card { padding: 28px 20px; }
}

@media (max-width: 480px) {
  .product-grid { grid-template-columns: 1fr; }
  .value-grid, .cert-grid, .ingrid, .stats-grid, .oem-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero-actions .btn { width: 100%; text-align: center; }
  .detail-actions .btn { width: 100%; text-align: center; }
}

/* ==========================================================================
   v2 — 2026 redesign additions
   Quote cart · lightbox gallery · search/sort · rich product pages
   ========================================================================== */

/* ---------- Cart toggle (header) ---------- */
.cart-toggle {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px; height: 42px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: var(--white);
  color: var(--ink);
  cursor: pointer;
  transition: all .28s var(--ease);
}
.cart-toggle:hover { border-color: var(--rose); color: var(--rose); transform: translateY(-1px); }
.cart-toggle svg { width: 20px; height: 20px; }
.cart-count {
  position: absolute;
  top: -5px; right: -5px;
  min-width: 19px; height: 19px;
  padding: 0 5px;
  border-radius: 99px;
  background: var(--rose);
  color: var(--white);
  font-size: 11px;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
}

body.cart-open, body.lightbox-open { overflow: hidden; }

/* ---------- Cart drawer ---------- */
.cart-drawer { position: fixed; inset: 0; z-index: 400; pointer-events: none; }
.cart-drawer__backdrop {
  position: absolute; inset: 0;
  background: rgba(35, 28, 25, .45);
  opacity: 0;
  transition: opacity .35s var(--ease);
}
.cart-drawer__panel {
  position: absolute;
  top: 0; right: 0; bottom: 0;
  width: min(430px, 94vw);
  background: var(--cream);
  box-shadow: -18px 0 48px rgba(35,28,25,.22);
  transform: translateX(105%);
  transition: transform .4s var(--ease);
  display: flex;
  flex-direction: column;
}
.cart-drawer.is-open { pointer-events: auto; }
.cart-drawer.is-open .cart-drawer__backdrop { opacity: 1; }
.cart-drawer.is-open .cart-drawer__panel { transform: none; }

.cart-drawer__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 26px;
  border-bottom: 1px solid var(--line);
  background: var(--white);
}
.cart-drawer__head h3 { font-size: 21px; }
.cart-drawer__close {
  border: 0; background: none;
  font-size: 26px; line-height: 1;
  color: var(--muted); cursor: pointer;
  transition: color .25s var(--ease);
}
.cart-drawer__close:hover { color: var(--rose); }

.cart-drawer__items { flex: 1; overflow-y: auto; padding: 10px 26px; }
.cart-empty { padding: 40px 0; color: var(--muted); text-align: center; line-height: 1.9; }
.cart-empty em { font-family: var(--font-serif); color: var(--rose); }

.cart-line {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}
.cart-line__thumb {
  flex: 0 0 62px;
  width: 62px; height: 62px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 4px;
  overflow: hidden;
  display: flex; align-items: center; justify-content: center;
}
.cart-line__thumb img { width: 100%; height: 100%; object-fit: contain; }
.cart-line__info { flex: 1; min-width: 0; }
.cart-line__name {
  display: block;
  font-family: var(--font-serif);
  font-size: 15.5px;
  font-weight: 600;
  color: var(--ink);
  line-height: 1.35;
  margin-bottom: 4px;
}
.cart-line__name:hover { color: var(--rose); }
.cart-line__spec { display: block; font-size: 12px; color: var(--muted); margin-bottom: 8px; }
.cart-line__qty {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: 1px solid var(--line);
  border-radius: 99px;
  padding: 3px 8px;
  background: var(--white);
}
.cart-line__qty button {
  border: 0; background: none;
  width: 22px; height: 22px;
  font-size: 15px; line-height: 1;
  cursor: pointer;
  color: var(--ink-soft);
  transition: color .2s var(--ease);
}
.cart-line__qty button:hover { color: var(--rose); }
.cart-line__qty b { font-size: 13px; min-width: 18px; text-align: center; color: var(--ink); }
.cart-line__remove {
  border: 0; background: none;
  color: var(--muted); font-size: 18px;
  cursor: pointer; padding: 4px;
  transition: color .2s var(--ease);
}
.cart-line__remove:hover { color: var(--rose); }

.cart-drawer__foot {
  padding: 20px 26px 26px;
  background: var(--white);
  border-top: 1px solid var(--line);
}
.cart-total {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 6px;
}
.cart-total span { font-size: 13px; color: var(--muted); text-transform: uppercase; letter-spacing: .12em; }
.cart-total b { font-family: var(--font-serif); font-size: 24px; color: var(--ink); }
.cart-note { font-size: 11.5px; color: var(--muted); margin-bottom: 14px; line-height: 1.6; }
.cart-checkout { display: block; text-align: center; margin-bottom: 10px; }
.cart-continue { display: block; text-align: center; }

/* ---------- Lightbox (image series viewer) ---------- */
.lightbox {
  position: fixed; inset: 0;
  z-index: 500;
  background: rgba(24, 19, 17, .94);
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 20px 64px 16px;
}
.lightbox.is-open { display: flex; }
.lightbox__close {
  position: absolute;
  top: 18px; right: 22px;
  border: 1px solid rgba(255,255,255,.3);
  background: rgba(255,255,255,.08);
  color: var(--cream);
  width: 46px; height: 46px;
  border-radius: 50%;
  font-size: 26px; line-height: 1;
  cursor: pointer;
  z-index: 3;
  transition: all .25s var(--ease);
}
.lightbox__close:hover { background: var(--rose); border-color: var(--rose); }
.lightbox__stage {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 0;
  overflow: hidden;
}
.lightbox__stage img {
  max-width: 100%;
  max-height: calc(100vh - 220px);
  object-fit: contain;
  background: var(--white);
  border-radius: 6px;
  box-shadow: 0 30px 80px rgba(0,0,0,.5);
  cursor: zoom-in;
  transition: transform .25s var(--ease);
}
.lightbox__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  border: 1px solid rgba(255,255,255,.25);
  background: rgba(255,255,255,.06);
  color: var(--cream);
  width: 50px; height: 50px;
  border-radius: 50%;
  font-size: 18px;
  cursor: pointer;
  z-index: 3;
  transition: all .25s var(--ease);
}
.lightbox__nav:hover { background: var(--rose); border-color: var(--rose); }
.lightbox__prev { left: 22px; }
.lightbox__next { right: 22px; }
.lightbox__bar {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 12px 0 10px;
  color: rgba(250,246,241,.75);
  font-size: 13px;
  letter-spacing: .1em;
}
.lightbox__bar #lbCounter { color: var(--cream); font-weight: 600; }
.lightbox__hint { font-size: 11.5px; letter-spacing: .06em; color: rgba(250,246,241,.45); }
.lightbox__thumbs {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  max-width: 100%;
  padding: 4px 2px 10px;
  scrollbar-width: thin;
}
.lb-thumb {
  flex: 0 0 64px;
  width: 64px; height: 64px;
  border: 1px solid rgba(255,255,255,.22);
  border-radius: 4px;
  overflow: hidden;
  background: var(--white);
  padding: 0;
  cursor: pointer;
  opacity: .62;
  transition: all .22s var(--ease);
}
.lb-thumb img { width: 100%; height: 100%; object-fit: contain; }
.lb-thumb:hover { opacity: 1; }
.lb-thumb.is-active { opacity: 1; border-color: var(--gold); box-shadow: 0 0 0 2px rgba(200,161,90,.55); }

/* ---------- Product cards v2 ---------- */
.product-card__meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  margin-bottom: 8px;
}
.product-card__brand {
  font-size: 9.5px;
  letter-spacing: .16em;
  color: var(--ink-soft);
  border: 1px solid var(--line);
  border-radius: 99px;
  padding: 2px 10px;
  background: var(--cream);
}
.product-card__actions .btn--buy { flex: 1; padding: 10px 12px; font-size: 10.5px; }

/* ---------- Search / sort bar (products page) ---------- */
.search-sort-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 26px;
}
.search-bar {
  position: relative;
  flex: 1;
  min-width: 260px;
  max-width: 440px;
}
.search-bar svg {
  position: absolute;
  left: 16px; top: 50%;
  transform: translateY(-50%);
  width: 17px; height: 17px;
  stroke: var(--muted);
  pointer-events: none;
}
.search-bar input {
  width: 100%;
  font-family: var(--font-sans);
  font-size: 14.5px;
  color: var(--ink);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 99px;
  padding: 13px 18px 13px 44px;
  transition: border-color .25s var(--ease), box-shadow .25s var(--ease);
}
.search-bar input:focus {
  outline: none;
  border-color: var(--rose);
  box-shadow: 0 0 0 3px rgba(183,110,121,.12);
}
.sort-select {
  font-family: var(--font-sans);
  font-size: 13.5px;
  color: var(--ink-soft);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 99px;
  padding: 12px 18px;
  cursor: pointer;
}
.result-count { font-size: 12.5px; color: var(--muted); letter-spacing: .1em; text-transform: uppercase; }

/* ---------- Detail page v2 ---------- */
.detail-breadcrumb { margin-bottom: 26px; }
.detail-gallery-wrap { position: relative; }
.detail-gallery-main {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 1 / 1;
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-md);
  cursor: zoom-in;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 22px;
}
.detail-gallery-main img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}
.detail-gallery-main::after {
  content: "\2922  Full gallery";
  position: absolute;
  right: 14px; bottom: 14px;
  background: rgba(43,37,35,.78);
  color: var(--cream);
  font-size: 11px;
  letter-spacing: .08em;
  padding: 7px 13px;
  border-radius: 99px;
}
.detail-gallery-main .tag {
  position: absolute;
  top: 16px; left: 16px;
  background: var(--cream);
  border: 1px solid rgba(183,110,121,.35);
  color: var(--rose);
  font-size: 10.5px;
  letter-spacing: .16em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 99px;
  z-index: 2;
}
.detail-thumbs {
  display: flex;
  gap: 10px;
  margin-top: 14px;
  flex-wrap: wrap;
}
.thumb-btn {
  position: relative;
  width: 76px; height: 76px;
  border: 1px solid var(--line);
  border-radius: 5px;
  background: var(--white);
  padding: 6px;
  cursor: pointer;
  overflow: hidden;
  transition: all .22s var(--ease);
}
.thumb-btn img { width: 100%; height: 100%; object-fit: contain; }
.thumb-btn:hover { border-color: var(--rose); }
.thumb-btn.is-active { border-color: var(--gold); box-shadow: 0 0 0 2px rgba(200,161,90,.5); }
.thumb-more {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  font-weight: 600;
  color: var(--rose);
  background: var(--cream-deep);
}

.detail-brand {
  display: inline-block;
  font-size: 11px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid rgba(200,161,90,.4);
  border-radius: 99px;
  padding: 5px 16px;
  margin-bottom: 14px;
  background: rgba(200,161,90,.07);
}
.detail-info h1 { font-size: clamp(28px, 3.4vw, 42px); margin-bottom: 10px; }
.detail-info .price-note { margin-bottom: 20px; }
.detail-info .moq-note { font-size: 12.5px; letter-spacing: .12em; text-transform: uppercase; color: var(--muted); margin-bottom: 22px; }

.detail-bullets { margin: 0 0 26px; padding: 0; list-style: none; }
.detail-bullets li {
  position: relative;
  padding: 0 0 0 28px;
  margin-bottom: 11px;
  font-size: 14.5px;
  color: var(--ink-soft);
  line-height: 1.65;
}
.detail-bullets li::before {
  content: "";
  position: absolute;
  left: 2px; top: 9px;
  width: 10px; height: 10px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--rose-soft), var(--rose));
}

.kw-row { margin: 0 0 26px; }
.kw-row h4 {
  font-family: var(--font-sans);
  font-size: 11px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 10px;
}
.kw-chip {
  display: inline-block;
  font-size: 11.5px;
  color: var(--ink-soft);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 99px;
  padding: 5px 13px;
  margin: 0 6px 6px 0;
  transition: all .22s var(--ease);
}
.kw-chip:hover { border-color: var(--rose); color: var(--rose); }

.detail-pay-note {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 12.5px;
  color: var(--muted);
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px dashed var(--line);
}
.detail-pay-note b { color: var(--ink); font-weight: 600; }

/* ---------- Inline detail series ---------- */
.detail-series { max-width: 820px; margin: 0 auto; }
.detail-series-note { text-align: center; color: var(--muted); font-size: 13.5px; margin-bottom: 30px; }
.detail-panel {
  margin: 0 0 26px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.detail-panel img { width: 100%; height: auto; display: block; }

/* ---------- Brand strip (home) ---------- */
.brand-strip { display: grid; grid-template-columns: repeat(4, 1fr); gap: 26px; }
.brand-card {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  transition: transform .35s var(--ease), box-shadow .35s var(--ease);
}
.brand-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.brand-card__media {
  aspect-ratio: 16 / 9;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.brand-card__media img { width: 100%; height: 100%; object-fit: cover; }
.brand-card__body { padding: 24px 26px 26px; }
.brand-card__body h3 { font-size: 22px; margin-bottom: 6px; }
.brand-card__body .cn { font-size: 12px; color: var(--gold); letter-spacing: .14em; margin-bottom: 10px; }
.brand-card__body p { font-size: 13.5px; color: var(--muted); line-height: 1.7; }

/* ---------- Hero visual v2 ---------- */
.hero-visual img.hero-triptych {
  width: 100%;
  max-width: 560px;
  height: auto;
  filter: drop-shadow(0 26px 44px rgba(43,37,35,.16));
}

/* ---------- About certificates gallery ---------- */
.cert-gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.cert-photo {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  cursor: zoom-in;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.cert-photo:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.cert-photo img { width: 100%; height: auto; display: block; }
.cert-photo figcaption {
  font-size: 12px;
  color: var(--muted);
  padding: 12px 14px;
  line-height: 1.5;
}
.factory-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }

/* ---------- Checkout page ---------- */
.checkout-layout {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 56px;
  align-items: start;
}
.checkout-list { display: flex; flex-direction: column; gap: 12px; }
.checkout-row {
  display: flex;
  gap: 16px;
  align-items: center;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 16px 18px;
}
.checkout-row img {
  width: 64px; height: 64px;
  object-fit: contain;
  background: var(--cream);
  border-radius: 4px;
  border: 1px solid var(--line);
}
.checkout-row__info { flex: 1; min-width: 0; }
.checkout-row__info b { display: block; font-family: var(--font-serif); font-size: 16.5px; color: var(--ink); margin-bottom: 3px; }
.checkout-row__info span { font-size: 12.5px; color: var(--muted); }
.checkout-row__qty { font-size: 13px; color: var(--ink-soft); }
.checkout-row__price { font-weight: 600; color: var(--ink); font-size: 14.5px; white-space: nowrap; }

.payment-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 34px 32px;
  box-shadow: var(--shadow-sm);
}
.payment-card h3 { font-size: 23px; margin-bottom: 8px; }
.payment-card > p { font-size: 13.5px; color: var(--muted); margin-bottom: 20px; }
.payment-total {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 16px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  margin-bottom: 20px;
}
.payment-total span { font-size: 13px; letter-spacing: .12em; text-transform: uppercase; color: var(--muted); }
.payment-total b { font-family: var(--font-serif); font-size: 30px; color: var(--ink); }
.paypal-placeholder {
  border: 2px dashed rgba(200,161,90,.55);
  background: rgba(200,161,90,.06);
  border-radius: var(--radius);
  padding: 34px 28px;
  text-align: center;
}
.paypal-placeholder .pp-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-sans);
  font-size: 22px;
  font-weight: 600;
  font-style: italic;
  color: #003087;
  margin-bottom: 12px;
}
.paypal-placeholder .pp-badge b { color: #0070BA; font-style: normal; }
.paypal-placeholder p { font-size: 13px; color: var(--ink-soft); line-height: 1.7; max-width: 340px; margin: 0 auto; }
.paypal-placeholder code {
  display: inline-block;
  margin-top: 12px;
  background: var(--cream-deep);
  border: 1px solid var(--line);
  border-radius: 4px;
  padding: 4px 10px;
  font-size: 12px;
  color: var(--terra);
}
.contact-placeholders { display: flex; flex-direction: column; gap: 14px; }
.contact-placeholders .ph-row {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  background: var(--white);
  border: 1px dashed rgba(200,161,90,.5);
  border-radius: var(--radius);
  padding: 16px 18px;
}
.contact-placeholders .ph-row .ico {
  flex: 0 0 38px;
  width: 38px; height: 38px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--rose-pale), var(--sand));
  display: flex; align-items: center; justify-content: center;
}
.contact-placeholders .ph-row .ico svg { width: 17px; height: 17px; stroke: var(--rose); }
.contact-placeholders .ph-row b { display: block; font-size: 13.5px; color: var(--ink); margin-bottom: 2px; }
.contact-placeholders .ph-row span { font-size: 12.5px; color: var(--muted); }

.footer-legal {
  border-top: 1px solid rgba(250,246,241,.08);
  padding: 14px 0;
  font-size: 11px;
  line-height: 1.8;
  color: rgba(250,246,241,.38);
  letter-spacing: .03em;
}

/* ---------- Responsive additions ---------- */
@media (max-width: 1024px) {
  .cert-gallery, .factory-grid { grid-template-columns: repeat(2, 1fr); }
  .brand-strip { grid-template-columns: 1fr; }
  .checkout-layout { grid-template-columns: 1fr; gap: 40px; }
}
@media (max-width: 768px) {
  .search-sort-bar { flex-direction: column; align-items: stretch; }
  .search-bar { max-width: none; }
  .lightbox { padding: 14px 12px 10px; }
  .lightbox__stage img { max-height: calc(100vh - 190px); }
  .lightbox__prev { left: 8px; } .lightbox__next { right: 8px; }
  .lightbox__nav { width: 40px; height: 40px; }
  .lightbox__hint { display: none; }
  .detail-gallery-main::after { content: "\2922"; padding: 6px 11px; }
  .cert-gallery, .factory-grid { grid-template-columns: 1fr; }
}

/* ==========================================================================
   v3 — 2026 refresh: 73-SKU catalogue, 4 brand lines, polish pass
   ========================================================================== */

/* Brand strip → 4 columns, 2 on tablet */
@media (max-width: 1100px) {
  .brand-strip { grid-template-columns: repeat(2, 1fr); }
}

/* Product cards — richer hover & image zoom */
.product-card__media { overflow: hidden; }
.product-card__media img { transition: transform .55s var(--ease); will-change: transform; }
.product-card:hover .product-card__media img { transform: scale(1.055); }
.product-card:hover { box-shadow: var(--shadow-md); }
.product-card { transition: box-shadow .35s var(--ease); }

/* Badge colour coding */
.product-card__badge--new { background: #2E7D5B; color: #fff; }
.product-card__badge--photo-soon { background: #8A8F98; color: #fff; }

/* Price emphasis */
.product-card__price { letter-spacing: .01em; }
.product-card:hover .product-card__price b { color: var(--rose-strong, #B65C6F); }

/* New-arrival strip on home */
#newGrid .product-card { border-top: 2px solid transparent; }

/* Hero refinements */
.hero { position: relative; }
.hero::after {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(600px 300px at 85% 15%, rgba(212, 175, 55, .08), transparent 70%);
}
.hero-stats .stat b { font-variant-numeric: tabular-nums; }

/* Section eyebrow + heading rhythm */
.section-head h2 { letter-spacing: .01em; }

/* Detail page — brand chip for AURELIA */
.detail-brand { text-transform: uppercase; }

/* Checkout & drawer totals */
.cart-total b, .payment-total b { font-variant-numeric: tabular-nums; }

/* Spec table row hover */
#specBody tr:hover td { background: #FBF7F1; }
#specBody tr { transition: background .2s; }

/* Keyword chips subtle hover */
.kw-chip { transition: transform .2s var(--ease), background .2s; }
.kw-chip:hover { transform: translateY(-2px); background: #F3E8DC; }

/* Buttons — softer press */
.btn:active { transform: translateY(1px); }

/* Card meta — MOQ / brand row stays tidy with long specs */
.product-card__meta span:last-child { text-overflow: ellipsis; white-space: nowrap; overflow: hidden; }

/* ==========================================================================
   v4 — 2026 shopping-cart + PayPal interactivity pass
   ========================================================================== */

/* Product card: title links to detail, image already links */
.product-card__title a {
  color: inherit;
  text-decoration: none;
  background-image: linear-gradient(var(--rose), var(--rose));
  background-repeat: no-repeat;
  background-size: 0% 1px;
  background-position: 0 100%;
  transition: background-size .35s var(--ease), color .25s;
}
.product-card__title a:hover { background-size: 100% 1px; color: var(--rose); }

/* Add-to-cart button accent */
.btn--add { position: relative; }

/* Cart badge pulse */
#cartCount.pulse { animation: cartPulse .5s var(--ease); }
@keyframes cartPulse {
  0% { transform: scale(1); }
  40% { transform: scale(1.45); }
  100% { transform: scale(1); }
}

/* Toast feedback */
.cart-toast {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translate(-50%, 120%);
  display: flex;
  align-items: center;
  gap: 10px;
  max-width: min(92vw, 420px);
  padding: 11px 16px;
  background: #2b2722;
  color: #faf6f1;
  border-radius: 999px;
  font-family: var(--font-sans);
  font-size: 13.5px;
  box-shadow: 0 10px 30px rgba(0,0,0,.22);
  z-index: 1000;
  opacity: 0;
  pointer-events: none;
  transition: transform .4s var(--ease), opacity .4s var(--ease);
}
.cart-toast img { width: 30px; height: 30px; border-radius: 50%; object-fit: cover; flex: 0 0 auto; }
.cart-toast.is-visible { transform: translate(-50%, 0); opacity: 1; }

/* Quantity stepper (detail page) */
.detail-qty-row {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  margin: 20px 0 14px;
}
.qty-label {
  font-family: var(--font-sans);
  font-size: 11px;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--muted);
}
.qty-stepper {
  display: inline-flex;
  align-items: stretch;
  border: 1px solid var(--line);
  border-radius: 999px;
  overflow: hidden;
  background: var(--white);
}
.qty-stepper button {
  width: 38px;
  border: 0;
  background: transparent;
  font-size: 18px;
  color: var(--ink);
  cursor: pointer;
  transition: background .2s;
}
.qty-stepper button:hover { background: #f3e8dc; }
.qty-stepper input {
  width: 52px;
  border: 0;
  border-left: 1px solid var(--line);
  border-right: 1px solid var(--line);
  text-align: center;
  font-family: var(--font-sans);
  font-size: 15px;
  color: var(--ink);
  -moz-appearance: textfield;
}
.qty-stepper input::-webkit-outer-spin-button,
.qty-stepper input::-webkit-inner-spin-button { -webkit-appearance: none; margin: 0; }
.qty-moq { font-size: 12px; color: var(--muted); }

/* PayPal Smart Buttons + status */
.paypal-button-container { margin-top: 18px; min-height: 48px; }
.paypal-button-container iframe { max-width: 100%; }
.paypal-status {
  font-size: 12.5px;
  line-height: 1.6;
  margin-top: 10px;
  color: var(--muted);
}
.paypal-status.ok { color: #2E7D5B; }
.paypal-status.err { color: #B4473A; }
.paypal-status.warn { color: #9a6a1f; }

.secure-note {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 16px;
  padding: 12px 14px;
  border: 1px dashed var(--line);
  border-radius: var(--radius);
  font-size: 12px;
  color: var(--muted);
  line-height: 1.6;
}
.secure-note svg { color: var(--gold); flex: 0 0 auto; }

.paypal-success { text-align: center; padding: 20px 0; }
.paypal-success strong { font-size: 20px; color: #2E7D5B; display: block; margin-bottom: 10px; }
.paypal-success p { color: var(--muted); margin-bottom: 18px; line-height: 1.7; }

/* Checkout rows → product name/thumbs link to detail */
.checkout-row img { transition: transform .3s var(--ease); }
.checkout-row a:hover img { transform: scale(1.05); }
.checkout-row__info a { color: var(--ink); text-decoration: none; }
.checkout-row__info a:hover { color: var(--rose); }

/* ==========================================================================
   v5 — 2026 shopping-site completeness pass
   Price font (Amazon-style Oswald tabular) + announcement bar + quick view
   + recently viewed + sticky header + back-to-top + trust & legal helpers
   ========================================================================== */

/* ---------- Price typography (Oswald, tabular numerals) ---------- */
.product-card__price,
.cart-total b,
.payment-total b,
#checkoutTotal,
.checkout-row__price,
.detail-info .price-note,
.hero-stats .stat b {
  font-family: 'Oswald', var(--font-sans), sans-serif;
  font-weight: 600;
  font-variant-numeric: tabular-nums;
  letter-spacing: .015em;
}
.product-card__price { font-size: 17.5px; }
.product-card__price .product-card__moq {
  font-family: var(--font-sans);
  font-weight: 400;
  font-size: 10.5px;
  letter-spacing: .1em;
  margin-left: 10px;
}
.detail-info .price-note { font-size: 30px; color: var(--rose-strong, #B65C6F); }
.cart-total b { font-size: 26px; }
.checkout-row__price { font-size: 16px; color: var(--ink); }

/* ---------- Sticky header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 900;
  background: rgba(253, 250, 245, .96);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  box-shadow: 0 1px 0 var(--line);
}

/* ---------- Announcement bar ---------- */
.announce-bar {
  position: relative;
  background: linear-gradient(90deg, #A85F6C, #B8747F 45%, #C8A15A);
  color: #fff;
  text-align: center;
  font-family: var(--font-sans);
  font-size: 12.5px;
  letter-spacing: .06em;
  padding: 9px 46px 9px 16px;
  line-height: 1.5;
}
.announce-bar a { color: #fff; text-decoration: underline; text-underline-offset: 3px; }
.announce-bar a:hover { color: #FDF3D9; }
.announce-close {
  position: absolute;
  right: 8px;
  top: 50%;
  transform: translateY(-50%);
  background: transparent;
  border: 0;
  color: #fff;
  font-size: 17px;
  line-height: 1;
  padding: 6px 10px;
  cursor: pointer;
  opacity: .85;
}
.announce-close:hover { opacity: 1; }

/* ---------- Back to top ---------- */
.back-to-top {
  position: fixed;
  right: 22px;
  bottom: 22px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: var(--white);
  color: var(--ink);
  font-size: 19px;
  cursor: pointer;
  box-shadow: var(--shadow-sm);
  opacity: 0;
  transform: translateY(10px);
  pointer-events: none;
  transition: opacity .3s var(--ease), transform .3s var(--ease);
  z-index: 800;
}
.back-to-top.is-visible { opacity: 1; transform: translateY(0); pointer-events: auto; }
.back-to-top:hover { border-color: var(--gold); color: var(--rose-strong, #B65C6F); }

/* ---------- Quick view ---------- */
.quick-view-btn {
  position: absolute;
  left: 50%;
  bottom: 14px;
  transform: translate(-50%, 8px);
  background: rgba(43, 39, 34, .92);
  color: #fff;
  border: 0;
  border-radius: 999px;
  padding: 9px 20px;
  font-family: var(--font-sans);
  font-size: 12px;
  letter-spacing: .12em;
  text-transform: uppercase;
  cursor: pointer;
  opacity: 0;
  transition: opacity .3s var(--ease), transform .3s var(--ease);
  z-index: 2;
}
.product-card__media:hover .quick-view-btn { opacity: 1; transform: translate(-50%, 0); }
.quick-view-btn:hover { background: #000; }
@media (hover: none) { .quick-view-btn { opacity: 1; transform: translate(-50%, 0); } }

.qv-overlay {
  position: fixed;
  inset: 0;
  background: rgba(30, 25, 20, .55);
  z-index: 950;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  pointer-events: none;
  transition: opacity .25s;
}
.qv-overlay.is-open { opacity: 1; pointer-events: auto; }
.qv-modal {
  background: var(--white);
  border-radius: var(--radius);
  max-width: 860px;
  width: 100%;
  max-height: 88vh;
  overflow: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  box-shadow: 0 30px 80px rgba(0,0,0,.35);
  position: relative;
  transform: translateY(12px);
  transition: transform .3s var(--ease);
}
.qv-overlay.is-open .qv-modal { transform: translateY(0); }
.qv-modal__media { background: #fff; display: flex; align-items: center; justify-content: center; min-height: 300px; }
.qv-modal__media img { width: 100%; height: 100%; object-fit: contain; max-height: 520px; }
.qv-modal__body { padding: 30px 30px 34px; display: flex; flex-direction: column; }
.qv-modal__body h3 { font-size: 23px; line-height: 1.25; margin: 8px 0 10px; }
.qv-modal__body h3 a { color: inherit; text-decoration: none; }
.qv-modal__body h3 a:hover { color: var(--rose-strong, #B65C6F); }
.qv-modal__price { font-family: 'Oswald', var(--font-sans); font-weight: 600; font-size: 24px; color: var(--rose-strong, #B65C6F); font-variant-numeric: tabular-nums; }
.qv-modal__spec { font-size: 12.5px; color: var(--muted); margin: 4px 0 14px; }
.qv-modal__bullets { margin: 0 0 18px; padding-left: 18px; }
.qv-modal__bullets li { font-size: 13px; color: var(--muted); line-height: 1.65; margin-bottom: 6px; }
.qv-modal__actions { display: flex; gap: 10px; margin-top: auto; flex-wrap: wrap; }
.qv-modal__close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 0;
  background: rgba(43,39,34,.08);
  font-size: 18px;
  cursor: pointer;
  z-index: 3;
}
.qv-modal__close:hover { background: rgba(43,39,34,.16); }
@media (max-width: 720px) { .qv-modal { grid-template-columns: 1fr; } .qv-modal__media { min-height: 200px; } .qv-modal__media img { max-height: 280px; } }

/* ---------- Recently viewed ---------- */
#recentGrid .product-card { border-top: 2px solid var(--gold); }

/* ---------- Detail page service strip ---------- */
.service-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 22px;
  padding-top: 18px;
  border-top: 1px dashed var(--line);
}
.service-strip .svc { display: flex; gap: 10px; align-items: flex-start; }
.service-strip .svc svg { width: 20px; height: 20px; stroke: var(--gold); flex: 0 0 auto; margin-top: 2px; }
.service-strip .svc b { display: block; font-size: 12.5px; color: var(--ink); font-weight: 600; }
.service-strip .svc span { font-size: 11.5px; color: var(--muted); line-height: 1.5; }
@media (max-width: 720px) { .service-strip { grid-template-columns: 1fr; } }

/* ---------- Footer payment strip ---------- */
.footer-payments {
  margin-top: 14px;
  font-size: 11.5px;
  letter-spacing: .08em;
  color: rgba(250,246,241,.55);
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}
.footer-payments .pp-ico {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 3px 9px;
  border: 1px solid rgba(250,246,241,.18);
  border-radius: 4px;
  font-size: 11px;
  color: rgba(250,246,241,.75);
}
.footer-payments .pp-ico b { font-weight: 600; color: #9BD1FF; }

/* ---------- Order success / legal / 404 pages ---------- */
.page-card {
  max-width: 760px;
  margin: 0 auto;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 40px 44px;
  box-shadow: var(--shadow-sm);
}
.page-card h2 { margin-bottom: 16px; }
.page-card p, .page-card li { font-size: 14.5px; color: var(--muted); line-height: 1.85; }
.page-card ul, .page-card ol { margin: 10px 0 18px 22px; }
.page-card h3 { margin: 26px 0 10px; font-size: 18px; }
.success-hero { text-align: center; }
.success-hero .check-ico {
  width: 74px; height: 74px; border-radius: 50%;
  margin: 0 auto 20px;
  background: #E4F2EA;
  color: #2E7D5B;
  display: flex; align-items: center; justify-content: center;
}
.success-summary {
  display: inline-block;
  margin: 18px auto 0;
  padding: 14px 26px;
  border: 1px dashed var(--line);
  border-radius: var(--radius);
  font-family: 'Oswald', var(--font-sans);
  font-size: 15px;
  letter-spacing: .04em;
}
