/* ============================================================
   10G GLOBAL TECH — Design System
   Corporate & trustworthy: deep navy + brass on warm paper.
   Type: Fraunces (display serif) / Archivo (grotesk body)
   ============================================================ */

:root {
  /* Palette — restored 10G brand: blue + lime-green + charcoal on white.
     Variable names kept (navy-*/brass-*) but repointed to brand values. */
  --navy-900: #0d2c41;   /* darkest blue — footer / hero depth   */
  --navy-800: #14527e;   /* PRIMARY deep brand blue — buttons, headings */
  --navy-700: #1a6aa3;   /* mid blue — gradients                  */
  --navy-600: #1a86c9;   /* bright brand blue (logo "1" + ring)   */
  --brass:    #8cc63f;   /* lime-green accent (logo "0" ring)     */
  --brass-2:  #5f8f1f;   /* readable green for text-on-white      */
  --brass-lt: #bfe486;   /* light lime — accents on dark bg       */
  --paper:    #f2f6fb;   /* cool near-white page background        */
  --paper-2:  #e6eef6;   /* alt surface / icon backgrounds         */
  --ink:      #222a31;   /* charcoal body text (logo "G")          */
  --muted:    #5f6e7a;
  --line:     rgba(18, 60, 100, 0.15);
  --line-lt:  rgba(18, 60, 100, 0.08);
  --white:    #ffffff;

  /* Type */
  --serif: "Fraunces", "Times New Roman", serif;
  --sans:  "Archivo", "Helvetica Neue", Arial, sans-serif;

  /* Geometry */
  --wrap: 1200px;
  --radius: 14px;
  --radius-sm: 8px;
  --shadow: 0 18px 48px -24px rgba(6, 22, 41, 0.5);
  --shadow-lg: 0 40px 90px -40px rgba(6, 22, 41, 0.6);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--sans);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: 0; background: none; }
ul { list-style: none; padding: 0; }
input, textarea, select { font-family: inherit; font-size: 1rem; }

/* ---------- Typography ---------- */
h1, h2, h3, h4 { font-family: var(--serif); font-weight: 500; line-height: 1.08; letter-spacing: -0.01em; color: var(--navy-800); }
h1 { font-size: clamp(2.6rem, 6vw, 4.6rem); }
h2 { font-size: clamp(2rem, 4vw, 3.1rem); }
h3 { font-size: clamp(1.3rem, 2vw, 1.6rem); }
p { color: var(--ink); }
.lede { font-size: clamp(1.1rem, 1.6vw, 1.35rem); color: var(--muted); line-height: 1.55; }

.eyebrow {
  display: inline-flex; align-items: center; gap: 0.6em;
  font-family: var(--sans); font-weight: 600;
  font-size: 0.74rem; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--brass-2);
}
.eyebrow::before { content: ""; width: 28px; height: 1px; background: var(--brass); }
.eyebrow.center::before { display: none; }

.serif-accent { font-family: var(--serif); font-style: italic; color: var(--brass-2); font-weight: 400; }

/* ---------- Layout ---------- */
.wrap { width: 100%; max-width: var(--wrap); margin-inline: auto; padding-inline: 24px; }
.section { padding-block: clamp(64px, 9vw, 124px); }
.section-head { max-width: 640px; margin-bottom: 56px; }
.section-head.center { margin-inline: auto; text-align: center; }
.section-head h2 { margin-top: 14px; }
.section-head p { margin-top: 18px; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 0.6em;
  padding: 15px 28px; border-radius: 999px;
  font-weight: 600; font-size: 0.95rem; letter-spacing: 0.01em;
  transition: transform 0.35s var(--ease), background 0.3s, color 0.3s, box-shadow 0.3s;
  white-space: nowrap;
}
.btn svg { width: 18px; height: 18px; transition: transform 0.35s var(--ease); }
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: var(--navy-800); color: var(--white); box-shadow: var(--shadow); }
.btn-primary:hover { background: var(--navy-700); }
.btn-primary:hover svg { transform: translateX(4px); }
.btn-brass { background: var(--brass); color: var(--navy-900); }
.btn-brass:hover { background: var(--brass-lt); }
.btn-ghost { border: 1.5px solid var(--line); color: var(--navy-800); }
.btn-ghost:hover { border-color: var(--navy-800); background: var(--navy-800); color: var(--white); }
.btn-ghost-light { border: 1.5px solid rgba(255,255,255,0.3); color: var(--white); }
.btn-ghost-light:hover { background: rgba(255,255,255,0.1); border-color: var(--white); }
.btn-block { width: 100%; justify-content: center; }
.btn-lg { padding: 18px 34px; font-size: 1rem; }
.btn-sm { padding: 11px 20px; font-size: 0.85rem; }

.link-arrow {
  display: inline-flex; align-items: center; gap: 0.5em;
  font-weight: 600; color: var(--navy-800); font-size: 0.95rem;
}
.link-arrow svg { width: 16px; height: 16px; transition: transform 0.3s var(--ease); }
.link-arrow:hover { color: var(--brass-2); }
.link-arrow:hover svg { transform: translateX(4px); }

/* ============================================================
   HEADER
   ============================================================ */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(246, 242, 234, 0.85);
  backdrop-filter: saturate(140%) blur(14px);
  border-bottom: 1px solid var(--line-lt);
  transition: box-shadow 0.3s, background 0.3s;
}
.site-header.scrolled { box-shadow: 0 8px 30px -18px rgba(6,22,41,0.4); }
.nav { display: flex; align-items: center; justify-content: space-between; height: 76px; }

.brand { display: flex; align-items: center; gap: 12px; }
.brand-mark {
  display: grid; place-items: center;
  width: 48px; height: 48px; border-radius: 12px;
  background: #fff; border: 1px solid var(--line-lt); padding: 5px;
  flex-shrink: 0; box-shadow: 0 3px 10px -5px rgba(18, 60, 100, 0.35);
}
.brand-mark img { width: 100%; height: 100%; object-fit: contain; }
.brand-name { display: flex; flex-direction: column; line-height: 1.05; }
.brand-name b { font-family: var(--serif); font-weight: 600; font-size: 1.12rem; color: var(--navy-800); letter-spacing: -0.01em; }
.brand-name span { font-size: 0.62rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--brass-2); font-weight: 600; }

.nav-links { display: flex; align-items: center; gap: 4px; }
.nav-links a {
  position: relative; padding: 9px 15px; border-radius: 8px;
  font-weight: 500; font-size: 0.95rem; color: var(--navy-800);
  transition: color 0.2s, background 0.2s;
}
.nav-links a:hover { color: var(--brass-2); }
.nav-links a.active { color: var(--brass-2); }
.nav-links a.active::after {
  content: ""; position: absolute; left: 15px; right: 15px; bottom: 2px;
  height: 2px; background: var(--brass); border-radius: 2px;
}

.nav-actions { display: flex; align-items: center; gap: 10px; }
.cart-btn { position: relative; display: grid; place-items: center; width: 44px; height: 44px; border-radius: 11px; color: var(--navy-800); transition: background 0.2s; }
.cart-btn:hover { background: var(--paper-2); }
.cart-btn svg { width: 22px; height: 22px; }
.cart-count {
  position: absolute; top: 4px; right: 4px; min-width: 18px; height: 18px;
  padding: 0 5px; border-radius: 999px; background: var(--brass); color: var(--navy-900);
  font-size: 0.68rem; font-weight: 700; display: grid; place-items: center;
  transform: scale(0); transition: transform 0.3s var(--ease);
}
.cart-count.show { transform: scale(1); }

.nav-toggle { display: none; width: 44px; height: 44px; place-items: center; border-radius: 11px; color: var(--navy-800); }
.nav-toggle svg { width: 26px; height: 26px; }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative; color: var(--white);
  background:
    linear-gradient(100deg, rgba(13,44,65,0.97) 0%, rgba(20,82,126,0.82) 52%, rgba(26,134,201,0.42) 100%),
    var(--navy-800) url(/assets/img/site/hero.jpg) center/cover no-repeat;
  overflow: hidden;
}
.hero::before {
  content: ""; position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.035) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(110% 90% at 70% 10%, #000 0%, transparent 75%);
}
.hero::after {
  content: ""; position: absolute; right: -10%; top: -20%; width: 60%; height: 140%;
  background: radial-gradient(closest-side, rgba(200,163,91,0.18), transparent 70%);
  pointer-events: none;
}
.hero-inner { position: relative; z-index: 2; padding-block: clamp(70px, 11vw, 140px); }
.hero-grid { display: grid; grid-template-columns: 1.15fr 0.85fr; gap: 60px; align-items: center; }
.hero h1 { color: var(--white); }
.hero h1 em { font-style: italic; color: var(--brass-lt); }
.hero .lede { color: rgba(255,255,255,0.78); margin-top: 24px; max-width: 540px; }
.hero-eyebrow { color: var(--brass-lt); }
.hero-eyebrow::before { background: var(--brass-lt); }
.hero-cta { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 38px; }

.hero-card {
  background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.12);
  border-radius: 20px; padding: 30px; backdrop-filter: blur(6px);
}
.hero-card h3 { color: var(--white); font-size: 1.15rem; }
.hero-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 22px 18px; margin-top: 8px; }
.stat .num { font-family: var(--serif); font-size: clamp(2rem, 3.2vw, 2.7rem); color: var(--brass-lt); line-height: 1; }
.stat .lbl { font-size: 0.82rem; color: rgba(255,255,255,0.65); margin-top: 7px; }

/* Hero bottom strip */
.hero-strip { position: relative; z-index: 2; border-top: 1px solid rgba(255,255,255,0.1); }
.hero-strip ul { display: flex; flex-wrap: wrap; gap: 8px 36px; padding-block: 22px; }
.hero-strip li { display: flex; align-items: center; gap: 10px; font-size: 0.9rem; color: rgba(255,255,255,0.75); }
.hero-strip li svg { width: 17px; height: 17px; color: var(--brass-lt); flex-shrink: 0; }

/* ============================================================
   SECTOR CARDS
   ============================================================ */
.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.card {
  position: relative; background: var(--white); border: 1px solid var(--line-lt);
  border-radius: var(--radius); padding: 32px; overflow: hidden;
  transition: transform 0.45s var(--ease), box-shadow 0.45s var(--ease), border-color 0.3s;
}
.card::before {
  content: ""; position: absolute; left: 0; top: 0; bottom: 0; width: 3px;
  background: var(--brass); transform: scaleY(0); transform-origin: top;
  transition: transform 0.45s var(--ease);
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-color: transparent; }
.card:hover::before { transform: scaleY(1); }
.card-ico {
  display: grid; place-items: center; width: 54px; height: 54px; border-radius: 13px;
  background: var(--paper-2); color: var(--navy-700); margin-bottom: 22px;
  transition: background 0.35s, color 0.35s;
}
.card:hover .card-ico { background: var(--navy-800); color: var(--brass-lt); }
.card-ico svg { width: 26px; height: 26px; }
.card h3 { margin-bottom: 10px; }
.card p { color: var(--muted); font-size: 0.96rem; }
.card .link-arrow { margin-top: 18px; }
.card-num { position: absolute; top: 26px; right: 30px; font-family: var(--serif); font-size: 1rem; color: var(--line); }

/* ============================================================
   SPLIT / ABOUT
   ============================================================ */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(40px, 6vw, 80px); align-items: center; }
.split-media {
  position: relative; aspect-ratio: 4/5; border-radius: 20px; overflow: hidden;
  background: linear-gradient(155deg, var(--navy-700), var(--navy-900));
}
.split-media .mesh {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(140,198,63,0.18) 1px, transparent 1px),
    linear-gradient(90deg, rgba(140,198,63,0.12) 1px, transparent 1px);
  background-size: 40px 40px;
  mask-image: radial-gradient(80% 80% at 50% 30%, #000, transparent);
}
.split-media .media-photo { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.split-media .scrim { position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(13,44,65,0.88) 0%, rgba(13,44,65,0.15) 45%, rgba(13,44,65,0.05) 100%); }
.split-badge {
  position: absolute; left: 24px; bottom: 24px; right: 24px;
  background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.14);
  border-radius: 14px; padding: 22px 24px; backdrop-filter: blur(6px); color: #fff;
}
.split-badge b { font-family: var(--serif); font-size: 1.3rem; color: var(--brass-lt); }
.split-badge span { display: block; font-size: 0.86rem; color: rgba(255,255,255,0.7); margin-top: 4px; }

.checklist { display: grid; gap: 16px; margin-top: 28px; }
.checklist li { display: flex; gap: 14px; align-items: flex-start; }
.checklist .tick {
  flex-shrink: 0; display: grid; place-items: center; width: 26px; height: 26px; margin-top: 1px;
  border-radius: 50%; background: var(--brass); color: var(--navy-900);
}
.checklist .tick svg { width: 15px; height: 15px; }
.checklist b { display: block; color: var(--navy-800); font-family: var(--serif); font-weight: 500; font-size: 1.08rem; }
.checklist span { color: var(--muted); font-size: 0.94rem; }

/* ============================================================
   FEATURE / VALUES BANDS
   ============================================================ */
.band-navy { background: var(--navy-800); color: var(--white); position: relative; overflow: hidden; }
.band-navy::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(60% 90% at 85% 50%, rgba(200,163,91,0.14), transparent 70%);
}
.band-navy h2, .band-navy h3 { color: var(--white); }
.band-navy .eyebrow { color: var(--brass-lt); }
.band-navy .eyebrow::before { background: var(--brass-lt); }
.band-navy .lede { color: rgba(255,255,255,0.74); }

.values { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: rgba(255,255,255,0.12); border-radius: var(--radius); overflow: hidden; position: relative; z-index: 2; }
.value { background: var(--navy-800); padding: 34px; }
.value .vnum { font-family: var(--serif); font-size: 0.95rem; color: var(--brass-lt); }
.value h3 { margin: 14px 0 8px; font-size: 1.25rem; }
.value p { color: rgba(255,255,255,0.68); font-size: 0.94rem; }

/* ============================================================
   PARTNERS MARQUEE
   ============================================================ */
.marquee { overflow: hidden; -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); }
.marquee-track { display: flex; gap: 56px; width: max-content; animation: scroll-x 34s linear infinite; }
.marquee:hover .marquee-track { animation-play-state: paused; }
.marquee-track span { font-family: var(--serif); font-size: 1.5rem; color: var(--muted); white-space: nowrap; opacity: 0.7; transition: opacity 0.3s, color 0.3s; }
.marquee-track span:hover { opacity: 1; color: var(--navy-800); }
@keyframes scroll-x { to { transform: translateX(-50%); } }

/* ============================================================
   CTA BAND
   ============================================================ */
.cta-band { position: relative; text-align: center; }
.cta-card {
  background: var(--navy-800); border-radius: 26px; padding: clamp(44px, 7vw, 84px) 32px;
  color: #fff; position: relative; overflow: hidden;
}
.cta-card::before {
  content: ""; position: absolute; inset: 0;
  background-image: linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 48px 48px; mask-image: radial-gradient(90% 90% at 50% 0%, #000, transparent 70%);
}
.cta-card > * { position: relative; z-index: 2; }
.cta-card h2 { color: #fff; max-width: 720px; margin-inline: auto; }
.cta-card p { color: rgba(255,255,255,0.74); max-width: 560px; margin: 18px auto 0; }
.cta-card .hero-cta { justify-content: center; }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer { background: var(--navy-900); color: rgba(255,255,255,0.72); padding-top: 80px; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.2fr; gap: 40px; padding-bottom: 56px; }
.footer-brand .brand-name b { color: #fff; }
.footer-brand p { color: rgba(255,255,255,0.6); margin-top: 18px; max-width: 300px; font-size: 0.94rem; }
.footer-social { display: flex; gap: 10px; margin-top: 22px; }
.footer-social a { display: grid; place-items: center; width: 40px; height: 40px; border-radius: 10px; background: rgba(255,255,255,0.06); color: #fff; transition: background 0.25s, transform 0.25s; }
.footer-social a:hover { background: var(--brass); color: var(--navy-900); transform: translateY(-3px); }
.footer-social svg { width: 18px; height: 18px; }
.footer-col h4 { font-family: var(--sans); font-weight: 700; font-size: 0.78rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--brass-lt); margin-bottom: 18px; }
.footer-col ul { display: grid; gap: 11px; }
.footer-col a { color: rgba(255,255,255,0.68); font-size: 0.94rem; transition: color 0.2s; }
.footer-col a:hover { color: #fff; }
.footer-contact li { display: flex; gap: 12px; font-size: 0.94rem; margin-bottom: 14px; color: rgba(255,255,255,0.7); }
.footer-contact svg { width: 18px; height: 18px; color: var(--brass-lt); flex-shrink: 0; margin-top: 3px; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); padding-block: 26px; display: flex; justify-content: space-between; align-items: center; gap: 16px; flex-wrap: wrap; }
.footer-bottom p { color: rgba(255,255,255,0.5); font-size: 0.85rem; }
.footer-bottom a { color: rgba(255,255,255,0.62); }

/* ============================================================
   PAGE HEADER (interior pages)
   ============================================================ */
.page-head { background: var(--navy-800); color: #fff; position: relative; overflow: hidden; }
.page-head::before {
  content: ""; position: absolute; inset: 0;
  background-image: linear-gradient(rgba(255,255,255,0.035) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,0.035) 1px, transparent 1px);
  background-size: 52px 52px; mask-image: radial-gradient(100% 100% at 80% 0%, #000, transparent 75%);
}
.page-head-inner { position: relative; z-index: 2; padding-block: clamp(52px, 8vw, 96px); max-width: 760px; }
.page-head h1 { color: #fff; margin-top: 16px; }
.page-head .lede { color: rgba(255,255,255,0.76); margin-top: 18px; }
.breadcrumb { display: flex; gap: 8px; font-size: 0.85rem; color: rgba(255,255,255,0.55); }
.breadcrumb a:hover { color: var(--brass-lt); }

/* ============================================================
   SHOP
   ============================================================ */
.shop-layout { display: grid; grid-template-columns: 250px 1fr; gap: 44px; align-items: start; }
.shop-filters { position: sticky; top: 96px; }
.filter-group { border-bottom: 1px solid var(--line); padding-bottom: 22px; margin-bottom: 22px; }
.filter-group h4 { font-family: var(--sans); font-weight: 700; font-size: 0.78rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--muted); margin-bottom: 14px; }
.filter-list { display: grid; gap: 4px; }
.filter-list button {
  display: flex; justify-content: space-between; align-items: center; width: 100%;
  padding: 9px 14px; border-radius: 9px; text-align: left;
  font-size: 0.95rem; color: var(--ink); transition: background 0.2s, color 0.2s;
}
.filter-list button:hover { background: var(--paper-2); }
.filter-list button.active { background: var(--navy-800); color: #fff; }
.filter-list button .ct { font-size: 0.78rem; color: var(--muted); }
.filter-list button.active .ct { color: var(--brass-lt); }

.shop-toolbar { display: flex; justify-content: space-between; align-items: center; gap: 16px; margin-bottom: 26px; flex-wrap: wrap; }
.shop-toolbar .count { color: var(--muted); font-size: 0.92rem; }
.shop-toolbar select { padding: 11px 16px; border: 1px solid var(--line); border-radius: 10px; background: var(--white); color: var(--ink); cursor: pointer; }

.product-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.product-card {
  background: var(--white); border: 1px solid var(--line-lt); border-radius: var(--radius);
  overflow: hidden; display: flex; flex-direction: column;
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
}
.product-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.product-thumb {
  position: relative; aspect-ratio: 4/3; overflow: hidden;
  display: grid; place-items: center; color: #fff;
}
.product-thumb .ph-pattern { position: absolute; inset: 0; opacity: 0.5;
  background-image: linear-gradient(rgba(255,255,255,0.14) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,0.14) 1px, transparent 1px);
  background-size: 26px 26px; }
.product-thumb .ph-ico { position: relative; z-index: 2; width: 64px; height: 64px; opacity: 0.92; }
.product-thumb img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s var(--ease); }
.product-card:hover .product-thumb img { transform: scale(1.06); }
/* Polished-tile sheen for swatch previews (no photo) */
.ph-sheen { position: absolute; inset: 0; z-index: 1;
  background:
    linear-gradient(125deg, rgba(255,255,255,0.30) 0%, rgba(255,255,255,0.04) 34%, rgba(255,255,255,0) 46%, rgba(0,0,0,0.07) 100%);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.10); }
.product-thumb, .pd-media, .cart-thumb { background-color: var(--paper-2); }
.product-tag {
  position: absolute; z-index: 3; top: 12px; left: 12px;
  background: rgba(6,22,41,0.7); color: var(--brass-lt); backdrop-filter: blur(4px);
  font-size: 0.7rem; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase;
  padding: 5px 11px; border-radius: 999px;
}
.product-body { padding: 20px 22px 22px; display: flex; flex-direction: column; flex: 1; }
.product-cat { font-size: 0.74rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--brass-2); font-weight: 600; }
.product-body h3 { font-size: 1.12rem; margin: 8px 0 6px; }
.product-body h3 a:hover { color: var(--brass-2); }
.product-desc { color: var(--muted); font-size: 0.9rem; flex: 1; }
.product-foot { display: flex; align-items: center; justify-content: space-between; gap: 12px; margin-top: 18px; }
.product-price { font-family: var(--serif); font-size: 1.35rem; color: var(--navy-800); }
.product-price small { font-family: var(--sans); font-size: 0.74rem; color: var(--muted); display: block; font-weight: 500; letter-spacing: 0.04em; }
.add-btn {
  display: grid; place-items: center; width: 46px; height: 46px; border-radius: 12px;
  background: var(--navy-800); color: #fff; transition: background 0.25s, transform 0.25s;
  flex-shrink: 0;
}
.add-btn:hover { background: var(--brass); color: var(--navy-900); }
.add-btn:active { transform: scale(0.9); }
.add-btn svg { width: 20px; height: 20px; }

/* Empty / loading state */
.shop-empty { grid-column: 1 / -1; text-align: center; padding: 80px 20px; color: var(--muted); }
.shop-empty svg { width: 56px; height: 56px; color: var(--line); margin: 0 auto 18px; }

/* ============================================================
   PRODUCT DETAIL
   ============================================================ */
.pd-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(32px, 5vw, 64px); align-items: start; }
.pd-media {
  position: relative; aspect-ratio: 1/1; border-radius: 20px; overflow: hidden;
  display: grid; place-items: center; color: #fff;
}
.pd-media .ph-pattern { position: absolute; inset: 0; opacity: 0.45;
  background-image: linear-gradient(rgba(255,255,255,0.14) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,0.14) 1px, transparent 1px);
  background-size: 34px 34px; }
.pd-media .ph-ico { position: relative; z-index: 2; width: 110px; height: 110px; opacity: 0.92; }
.pd-media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.pd-cat { color: var(--brass-2); font-weight: 600; font-size: 0.78rem; letter-spacing: 0.14em; text-transform: uppercase; }
.pd-info h1 { font-size: clamp(2rem, 4vw, 3rem); margin: 12px 0 16px; }
.pd-price { font-family: var(--serif); font-size: 2.2rem; color: var(--navy-800); margin: 8px 0 4px; }
.pd-price small { font-family: var(--sans); font-size: 0.85rem; color: var(--muted); font-weight: 500; }
.pd-desc { color: var(--muted); margin: 20px 0; line-height: 1.7; }
.pd-specs { border-top: 1px solid var(--line); margin: 24px 0; }
.pd-specs li { display: flex; justify-content: space-between; gap: 16px; padding: 13px 0; border-bottom: 1px solid var(--line-lt); font-size: 0.94rem; }
.pd-specs .k { color: var(--muted); }
.pd-specs .v { font-weight: 600; color: var(--navy-800); }
.qty { display: inline-flex; align-items: center; border: 1px solid var(--line); border-radius: 12px; overflow: hidden; }
.qty button { width: 46px; height: 50px; font-size: 1.3rem; color: var(--navy-800); transition: background 0.2s; }
.qty button:hover { background: var(--paper-2); }
.qty input { width: 54px; height: 50px; text-align: center; border: 0; border-inline: 1px solid var(--line); background: transparent; font-weight: 600; }
.pd-actions { display: flex; gap: 14px; margin-top: 24px; flex-wrap: wrap; align-items: center; }
.pd-meta { display: flex; gap: 22px; margin-top: 26px; flex-wrap: wrap; }
.pd-meta div { display: flex; align-items: center; gap: 9px; font-size: 0.88rem; color: var(--muted); }
.pd-meta svg { width: 19px; height: 19px; color: var(--brass-2); }

/* ============================================================
   CART
   ============================================================ */
.cart-layout { display: grid; grid-template-columns: 1fr 360px; gap: 40px; align-items: start; }
.cart-items { display: grid; gap: 0; }
.cart-row { display: grid; grid-template-columns: 92px 1fr auto; gap: 20px; align-items: center; padding: 22px 0; border-bottom: 1px solid var(--line); }
.cart-thumb { width: 92px; aspect-ratio: 1/1; border-radius: 12px; overflow: hidden; display: grid; place-items: center; color: #fff; position: relative; }
.cart-thumb .ph-ico { width: 36px; height: 36px; position: relative; z-index: 2; }
.cart-thumb img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.cart-info .cat { font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--brass-2); font-weight: 600; }
.cart-info h3 { font-size: 1.08rem; margin: 5px 0 4px; }
.cart-info h3 a:hover { color: var(--brass-2); }
.cart-info .unit { color: var(--muted); font-size: 0.86rem; }
.cart-row .qty { transform: scale(0.85); transform-origin: right; }
.cart-end { display: flex; flex-direction: column; align-items: flex-end; gap: 12px; }
.cart-line-total { font-family: var(--serif); font-size: 1.25rem; color: var(--navy-800); }
.cart-remove { display: inline-flex; align-items: center; gap: 5px; font-size: 0.82rem; color: var(--muted); transition: color 0.2s; }
.cart-remove:hover { color: #c0392b; }
.cart-remove svg { width: 15px; height: 15px; }

.cart-summary { background: var(--white); border: 1px solid var(--line-lt); border-radius: var(--radius); padding: 28px; position: sticky; top: 96px; box-shadow: var(--shadow); }
.cart-summary h3 { font-size: 1.25rem; margin-bottom: 18px; }
.summary-row { display: flex; justify-content: space-between; padding: 10px 0; font-size: 0.95rem; color: var(--muted); }
.summary-row.total { border-top: 1px solid var(--line); margin-top: 8px; padding-top: 18px; font-size: 1.05rem; color: var(--navy-800); font-weight: 600; }
.summary-row.total b { font-family: var(--serif); font-size: 1.6rem; font-weight: 500; }
.summary-note { font-size: 0.82rem; color: var(--muted); margin-top: 16px; display: flex; gap: 8px; }
.summary-note svg { width: 16px; height: 16px; color: var(--brass-2); flex-shrink: 0; margin-top: 2px; }

.empty-state { text-align: center; padding: 80px 20px; }
.empty-state svg { width: 72px; height: 72px; color: var(--line); margin: 0 auto 24px; }
.empty-state h2 { margin-bottom: 12px; }
.empty-state p { color: var(--muted); margin-bottom: 28px; }

/* ============================================================
   CHECKOUT
   ============================================================ */
.checkout-layout { display: grid; grid-template-columns: 1fr 380px; gap: 44px; align-items: start; }
.form-card { background: var(--white); border: 1px solid var(--line-lt); border-radius: var(--radius); padding: 32px; }
.form-card + .form-card { margin-top: 24px; }
.form-card h3 { font-size: 1.2rem; margin-bottom: 6px; }
.form-card > p { color: var(--muted); font-size: 0.92rem; margin-bottom: 22px; }
.field { margin-bottom: 18px; }
.field label { display: block; font-size: 0.82rem; font-weight: 600; color: var(--navy-800); margin-bottom: 7px; letter-spacing: 0.02em; }
.field input, .field textarea, .field select {
  width: 100%; padding: 13px 15px; border: 1px solid var(--line); border-radius: 10px;
  background: var(--paper); color: var(--ink); transition: border-color 0.2s, box-shadow 0.2s;
}
.field input:focus, .field textarea:focus, .field select:focus {
  outline: none; border-color: var(--brass); box-shadow: 0 0 0 3px rgba(200,163,91,0.18); background: #fff;
}
.field textarea { resize: vertical; min-height: 92px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.pay-method { display: grid; gap: 12px; }
.pay-opt { display: flex; align-items: center; gap: 14px; padding: 16px 18px; border: 1.5px solid var(--line); border-radius: 12px; cursor: pointer; transition: border-color 0.2s, background 0.2s; }
.pay-opt:hover { border-color: var(--brass); }
.pay-opt input { accent-color: var(--navy-800); width: 18px; height: 18px; }
.pay-opt .pm-ico { display: grid; place-items: center; width: 40px; height: 40px; border-radius: 10px; background: var(--paper-2); color: var(--navy-700); }
.pay-opt .pm-ico svg { width: 21px; height: 21px; }
.pay-opt b { display: block; font-family: var(--sans); font-weight: 600; color: var(--navy-800); font-size: 0.96rem; }
.pay-opt span { font-size: 0.84rem; color: var(--muted); }

.order-summary { background: var(--white); border: 1px solid var(--line-lt); border-radius: var(--radius); padding: 28px; position: sticky; top: 96px; box-shadow: var(--shadow); }
.order-line { display: flex; justify-content: space-between; gap: 14px; padding: 12px 0; border-bottom: 1px solid var(--line-lt); font-size: 0.92rem; }
.order-line .ol-name { color: var(--ink); }
.order-line .ol-name span { color: var(--muted); }
.order-line .ol-price { font-weight: 600; color: var(--navy-800); white-space: nowrap; }

/* ============================================================
   CONTACT
   ============================================================ */
.contact-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: clamp(36px, 5vw, 64px); align-items: start; }
.contact-cards { display: grid; gap: 16px; }
.contact-item { display: flex; gap: 16px; padding: 22px; background: var(--white); border: 1px solid var(--line-lt); border-radius: var(--radius); transition: box-shadow 0.3s, transform 0.3s; }
.contact-item:hover { box-shadow: var(--shadow); transform: translateY(-3px); }
.contact-item .ci-ico { flex-shrink: 0; display: grid; place-items: center; width: 50px; height: 50px; border-radius: 12px; background: var(--navy-800); color: var(--brass-lt); }
.contact-item .ci-ico svg { width: 22px; height: 22px; }
.contact-item h4 { font-family: var(--sans); font-size: 0.78rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--muted); margin-bottom: 6px; }
.contact-item a, .contact-item p { color: var(--navy-800); font-weight: 500; font-size: 1.02rem; }
.contact-item a:hover { color: var(--brass-2); }

/* Toast */
.toast {
  position: fixed; bottom: 26px; left: 50%; transform: translate(-50%, 120%);
  background: var(--navy-800); color: #fff; padding: 14px 22px; border-radius: 12px;
  display: flex; align-items: center; gap: 12px; box-shadow: var(--shadow-lg); z-index: 200;
  font-size: 0.94rem; transition: transform 0.4s var(--ease); max-width: 90vw;
}
.toast.show { transform: translate(-50%, 0); }
.toast svg { width: 20px; height: 20px; color: var(--brass-lt); flex-shrink: 0; }
.toast a { color: var(--brass-lt); font-weight: 600; text-decoration: underline; }

/* ---------- Reveal animation ---------- */
[data-reveal] { opacity: 0; transform: translateY(24px); transition: opacity 0.7s var(--ease), transform 0.7s var(--ease); }
[data-reveal].in { opacity: 1; transform: none; }
[data-reveal-delay="1"] { transition-delay: 0.08s; }
[data-reveal-delay="2"] { transition-delay: 0.16s; }
[data-reveal-delay="3"] { transition-delay: 0.24s; }
[data-reveal-delay="4"] { transition-delay: 0.32s; }
[data-reveal-delay="5"] { transition-delay: 0.4s; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .hero-card { max-width: 460px; }
  .cards { grid-template-columns: repeat(2, 1fr); }
  .values { grid-template-columns: 1fr; }
  .product-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
}
@media (max-width: 880px) {
  .nav-links { display: none; }
  .nav-toggle { display: grid; }
  .site-header.menu-open .nav-links {
    display: flex; position: absolute; top: 76px; left: 0; right: 0;
    flex-direction: column; align-items: stretch; gap: 2px;
    background: var(--paper); border-bottom: 1px solid var(--line); padding: 14px 24px 22px;
    box-shadow: var(--shadow);
  }
  .site-header.menu-open .nav-links a { padding: 13px 14px; border-radius: 10px; }
  .site-header.menu-open .nav-links a.active::after { display: none; }
  .site-header.menu-open .nav-links a.active { background: var(--paper-2); }
  .split { grid-template-columns: 1fr; }
  .split-media { aspect-ratio: 16/10; max-height: 420px; }
  .pd-grid { grid-template-columns: 1fr; }
  .cart-layout, .checkout-layout { grid-template-columns: 1fr; }
  .cart-summary, .order-summary { position: static; }
  .shop-layout { grid-template-columns: 1fr; }
  .shop-filters { position: static; }
  .filter-list { display: flex; flex-wrap: wrap; gap: 8px; }
  .filter-list button { width: auto; border: 1px solid var(--line); }
  .field-row { grid-template-columns: 1fr; }
}
@media (max-width: 560px) {
  body { font-size: 16px; }
  .cards, .product-grid { grid-template-columns: 1fr; }
  .hero-stats { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .cart-row { grid-template-columns: 70px 1fr; grid-template-areas: "thumb info" "thumb end"; row-gap: 12px; }
  .cart-thumb { width: 70px; grid-area: thumb; }
  .cart-info { grid-area: info; }
  .cart-end { grid-area: end; align-items: flex-start; }
  .pd-actions { flex-direction: column; align-items: stretch; }
  .pd-actions .qty { align-self: flex-start; }
}
