:root {
  --primary: #41655b;
  --primary-dark: #2f4d44;
  --secondary: #d8c8b8;
  --accent: #f4e9e1;
  --bg: #faf9f7;
  --dark: #1f2a28;
  --gold: #c8a66a;
  --muted: #6b6b6b;
  --border: rgba(31, 42, 40, 0.08);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  background: var(--bg);
  color: var(--dark);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5 {
  font-family: 'Playfair Display', 'Georgia', serif;
  font-weight: 500;
  letter-spacing: -0.01em;
  line-height: 1.15;
  margin: 0;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

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

/* ===== NAV ===== */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(250, 249, 247, 0.85);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
}
.brand {
  display: inline-block;
  width: 56px;
  height: 56px;
  background: url('../img/marvy_logo.png') no-repeat center / contain;
  text-indent: -9999px;
  font-size: 0;
  line-height: 0;
  overflow: hidden;
  flex-shrink: 0;
}
.brand-mark { display: none; }
.foot-brand .brand { width: 80px; height: 80px; margin-bottom: 18px; }
.nav-links {
  display: flex;
  gap: 32px;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.02em;
}
.nav-links a {
  color: var(--dark);
  opacity: 0.78;
  transition: opacity .2s, color .2s;
  position: relative;
}
.nav-links a:hover, .nav-links a.active {
  opacity: 1;
  color: var(--primary);
}
.nav-links a.active::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--gold);
  border-radius: 2px;
}
.nav-cta {
  display: flex;
  align-items: center;
  gap: 12px;
}
.lang-switch {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  padding: 6px 10px;
  border: 1px solid var(--border);
  border-radius: 20px;
  background: transparent;
  cursor: pointer;
  color: var(--dark);
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 22px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.02em;
  cursor: pointer;
  border: none;
  transition: transform .15s ease, box-shadow .2s ease, background .2s;
  white-space: nowrap;
}
.btn-primary {
  background: var(--primary);
  color: #fff;
  box-shadow: 0 10px 24px -10px rgba(65, 101, 91, 0.6);
}
.btn-primary:hover { background: var(--primary-dark); transform: translateY(-1px); }
.btn-ghost {
  background: transparent;
  color: var(--primary);
  border: 1px solid var(--primary);
}
.btn-ghost:hover { background: var(--primary); color: #fff; }
.btn-gold {
  background: var(--gold);
  color: #fff;
  box-shadow: 0 10px 24px -10px rgba(200, 166, 106, 0.7);
}
.btn-gold:hover { background: #b6904f; }
.btn-lg { padding: 16px 32px; font-size: 15px; }

.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

/* ===== HERO ===== */
.hero {
  position: relative;
  padding: 80px 0 100px;
  overflow: hidden;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 64px;
  align-items: center;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--primary);
  background: var(--accent);
  padding: 8px 16px;
  border-radius: 999px;
  margin-bottom: 24px;
}
.hero-eyebrow::before {
  content: '';
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--gold);
}
.hero h1 {
  font-size: clamp(40px, 6vw, 72px);
  margin-bottom: 24px;
  color: var(--dark);
}
.hero h1 em {
  font-style: italic;
  color: var(--primary);
}
.hero p.lead {
  font-size: 18px;
  color: var(--muted);
  margin-bottom: 36px;
  max-width: 520px;
}
.hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-trust {
  margin-top: 48px;
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
}
.trust-item .num {
  font-family: 'Playfair Display', serif;
  font-size: 28px;
  color: var(--primary);
  font-weight: 600;
}
.trust-item .lbl {
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
}

.hero-art {
  position: relative;
  aspect-ratio: 4/5;
  border-radius: 24px;
  overflow: hidden;
  background: linear-gradient(135deg, var(--accent), var(--secondary));
  box-shadow: 0 40px 80px -30px rgba(31, 42, 40, 0.4);
}
.hero-art::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 30% 20%, rgba(200, 166, 106, 0.45), transparent 50%),
    radial-gradient(circle at 70% 80%, rgba(65, 101, 91, 0.4), transparent 55%);
}
.hero-art svg {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
}
.hero-badge {
  position: absolute;
  bottom: 24px; left: 24px;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(8px);
  padding: 14px 18px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 12px 30px -10px rgba(0,0,0,0.2);
}
.hero-badge .ic {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--primary);
  color: #fff;
  display: grid; place-items: center;
  font-weight: 600;
}
.hero-badge .t1 { font-weight: 600; font-size: 14px; }
.hero-badge .t2 { font-size: 12px; color: var(--muted); }

/* ===== SECTION ===== */
section { padding: 96px 0; }
.section-head {
  text-align: center;
  margin-bottom: 56px;
}
.section-head .eyebrow {
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
  font-weight: 600;
}
.section-head h2 {
  font-size: clamp(32px, 4vw, 48px);
  margin-bottom: 16px;
}
.section-head p {
  color: var(--muted);
  max-width: 600px;
  margin: 0 auto;
  font-size: 17px;
}

/* ===== CATEGORIES ===== */
.cat-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.cat-card {
  position: relative;
  aspect-ratio: 3/4;
  border-radius: 20px;
  overflow: hidden;
  cursor: pointer;
  transition: transform .35s ease;
  background: var(--accent);
}
.cat-card:hover { transform: translateY(-6px); }
.cat-card .cat-art {
  position: absolute; inset: 0;
}
.cat-card .cat-grad {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(31, 42, 40, 0.85));
}
.cat-card .cat-label {
  position: absolute;
  bottom: 20px; left: 22px; right: 22px;
  color: #fff;
  z-index: 2;
}
.cat-card .cat-label h4 {
  font-size: 22px;
  margin-bottom: 4px;
}
.cat-card .cat-label span {
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  opacity: 0.85;
}

/* ===== PRODUCT GRID ===== */
.prod-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}
.prod-card {
  background: #fff;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid var(--border);
  transition: box-shadow .25s, transform .25s;
}
.prod-card:hover {
  box-shadow: 0 30px 60px -30px rgba(31, 42, 40, 0.25);
  transform: translateY(-4px);
}
.prod-thumb {
  aspect-ratio: 1;
  background: var(--accent);
  position: relative;
  overflow: hidden;
}
.prod-thumb .tag {
  position: absolute;
  top: 14px; left: 14px;
  background: var(--gold);
  color: #fff;
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 700;
  padding: 5px 10px;
  border-radius: 999px;
}
.prod-info { padding: 18px 20px 22px; }
.prod-info .cat {
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 6px;
}
.prod-info h4 {
  font-size: 18px;
  margin-bottom: 10px;
}
.prod-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 8px;
}
.prod-price {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  color: var(--primary);
  font-weight: 600;
}
.prod-add {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: var(--primary);
  color: #fff;
  border: none;
  cursor: pointer;
  display: grid; place-items: center;
  transition: background .2s, transform .2s;
}
.prod-add:hover { background: var(--gold); transform: rotate(90deg); }

/* ===== MODULES (services row) ===== */
.modules {
  background: linear-gradient(180deg, var(--bg), var(--accent));
}
.mod-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.mod-card {
  background: #fff;
  border-radius: 22px;
  padding: 36px 32px;
  border: 1px solid var(--border);
  position: relative;
  overflow: hidden;
  transition: transform .25s;
}
.mod-card:hover { transform: translateY(-6px); }
.mod-icon {
  width: 56px; height: 56px;
  border-radius: 16px;
  background: var(--accent);
  display: grid; place-items: center;
  color: var(--primary);
  margin-bottom: 24px;
}
.mod-card h3 { font-size: 26px; margin-bottom: 12px; }
.mod-card p { color: var(--muted); margin-bottom: 22px; font-size: 15px; }
.mod-card ul {
  list-style: none;
  padding: 0;
  margin: 0 0 26px;
}
.mod-card ul li {
  font-size: 14px;
  color: var(--dark);
  padding: 6px 0;
  display: flex;
  align-items: center;
  gap: 10px;
}
.mod-card ul li::before {
  content: '';
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--gold);
}
.mod-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 600;
  color: var(--primary);
}
.mod-link:hover { color: var(--gold); }

/* ===== OCCASIONS ===== */
.occasions {
  background: var(--dark);
  color: #fff;
}
.occasions .section-head h2 { color: #fff; }
.occasions .section-head p { color: rgba(255,255,255,0.7); }
.occ-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.occ-pill {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  padding: 24px;
  border-radius: 16px;
  text-align: center;
  cursor: pointer;
  transition: background .2s, border-color .2s, transform .2s;
}
.occ-pill:hover {
  background: rgba(200,166,106,0.15);
  border-color: var(--gold);
  transform: translateY(-3px);
}
.occ-pill .ic {
  width: 44px; height: 44px;
  margin: 0 auto 12px;
  border-radius: 50%;
  background: var(--gold);
  display: grid; place-items: center;
}
.occ-pill .nm {
  font-family: 'Playfair Display', serif;
  font-size: 18px;
  margin-bottom: 4px;
}
.occ-pill .ct {
  font-size: 12px;
  color: rgba(255,255,255,0.55);
  letter-spacing: 0.08em;
}

/* ===== BUILDER PROMO ===== */
.builder {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: #fff;
  border-radius: 32px;
  padding: 72px;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 56px;
  align-items: center;
  justify-items: center;
  margin: 0 auto;
  max-width: 1192px;
  position: relative;
  overflow: hidden;
  text-align: center;
}
.builder > div:first-child { max-width: 520px; }
.builder .hero-ctas, .builder > div:first-child > a { margin: 0 auto; }
.builder p { margin-left: auto; margin-right: auto; }
.builder::before {
  content: '';
  position: absolute;
  width: 600px; height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(200,166,106,0.25), transparent 70%);
  top: -200px; right: -150px;
}
.builder .eyebrow {
  color: var(--gold);
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  margin-bottom: 16px;
  font-weight: 600;
}
.builder h2 {
  font-size: clamp(32px, 4.5vw, 52px);
  margin-bottom: 20px;
}
.builder h2 em { color: var(--gold); font-style: italic; }
.builder p { font-size: 17px; opacity: 0.85; margin-bottom: 32px; max-width: 460px; }
.builder-mock {
  background: rgba(255,255,255,0.06);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 24px;
  padding: 28px;
  position: relative;
  z-index: 2;
}
.builder-mock .mock-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
  font-size: 14px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.builder-mock .mock-row:last-child { border-bottom: none; padding-top: 18px; }
.builder-mock .mock-row .v { color: var(--gold); font-weight: 600; }
.builder-mock .mock-swatches {
  display: flex; gap: 8px;
}
.builder-mock .sw {
  width: 22px; height: 22px;
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,0.2);
}

/* ===== GALLERY ===== */
.gal-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  grid-auto-rows: 180px;
}
.gal-tile {
  background: var(--accent);
  border-radius: 14px;
  overflow: hidden;
  cursor: pointer;
  position: relative;
  transition: transform .3s;
}
.gal-tile:hover { transform: scale(1.02); }
.gal-tile.lg { grid-column: span 2; grid-row: span 2; }
.gal-tile.tall { grid-row: span 2; }

/* ===== TESTIMONIALS ===== */
.test-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.test-card {
  background: #fff;
  border-radius: 20px;
  padding: 32px;
  border: 1px solid var(--border);
  position: relative;
}
.test-card .quote-mk {
  font-family: 'Playfair Display', serif;
  font-size: 56px;
  line-height: 1;
  color: var(--gold);
  opacity: 0.4;
  position: absolute;
  top: 16px; right: 24px;
}
.test-card p {
  font-size: 15px;
  color: var(--dark);
  margin-bottom: 24px;
  position: relative;
  z-index: 1;
}
.test-author {
  display: flex;
  align-items: center;
  gap: 14px;
}
.test-author .av {
  width: 46px; height: 46px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--secondary), var(--gold));
  display: grid; place-items: center;
  color: #fff;
  font-weight: 600;
  font-family: 'Playfair Display', serif;
}
.test-author .nm { font-weight: 600; font-size: 14px; }
.test-author .ev { font-size: 12px; color: var(--muted); }
.test-stars { color: var(--gold); margin-bottom: 14px; }

/* ===== CTA BAND ===== */
.cta-band {
  background:
    linear-gradient(rgba(31,42,40,0.85), rgba(65,101,91,0.9)),
    radial-gradient(circle at 30% 50%, var(--gold), transparent 40%);
  color: #fff;
  text-align: center;
  border-radius: 28px;
  padding: 80px 32px;
  margin: 0 auto;
  max-width: 1192px;
}
.cta-band h2 { font-size: clamp(32px, 4vw, 48px); margin-bottom: 16px; }
.cta-band p { opacity: 0.85; max-width: 540px; margin: 0 auto 32px; font-size: 17px; }
.cta-band-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ===== FOOTER ===== */
footer {
  background: var(--dark);
  color: rgba(255,255,255,0.7);
  padding: 80px 0 40px;
}
.foot-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 56px;
}
.foot-grid h5 {
  color: #fff;
  font-size: 14px;
  font-family: 'Inter', sans-serif;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 20px;
  font-weight: 600;
}
.foot-grid ul { list-style: none; padding: 0; margin: 0; }
.foot-grid ul li { margin-bottom: 10px; font-size: 14px; }
.foot-grid ul li a { transition: color .15s; }
.foot-grid ul li a:hover { color: var(--gold); }
/* Footer brand size override is set near the top of this file. */
.foot-brand p { font-size: 14px; max-width: 320px; line-height: 1.7; }
.foot-socials { display: flex; gap: 12px; margin-top: 20px; }
.foot-socials a {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  display: grid; place-items: center;
  transition: background .2s;
}
.foot-socials a:hover { background: var(--gold); color: #fff; }
.foot-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 13px;
}

/* ===== PAGE HEADER (subpages) ===== */
.page-head {
  background: linear-gradient(180deg, var(--accent), var(--bg));
  padding: 80px 0 64px;
  text-align: center;
}
.page-head .eyebrow {
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
  font-weight: 600;
}
.page-head h1 { font-size: clamp(40px, 5vw, 60px); margin-bottom: 16px; }
.page-head p { color: var(--muted); max-width: 600px; margin: 0 auto; font-size: 17px; }

/* ===== SHOP FILTERS ===== */
.shop-layout {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 48px;
}
.filters h5 {
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 18px;
  color: var(--dark);
}
.filter-group { margin-bottom: 32px; padding-bottom: 32px; border-bottom: 1px solid var(--border); }
.filter-group:last-child { border-bottom: none; }
.filter-opt {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 0;
  font-size: 14px;
  color: var(--dark);
  cursor: pointer;
}
.filter-opt input { accent-color: var(--primary); }
.shop-toolbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 28px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--border);
}
.shop-toolbar select {
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 10px 14px;
  font-family: inherit;
  background: #fff;
  font-size: 14px;
  color: var(--dark);
  cursor: pointer;
}

/* ===== BOUQUET BUILDER ===== */
.builder-page {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 48px;
  padding-top: 56px;
  padding-bottom: 96px;
}
.builder-step {
  background: #fff;
  border-radius: 22px;
  padding: 32px;
  margin-bottom: 24px;
  border: 1px solid var(--border);
}
.builder-step .step-num {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--primary);
  font-weight: 600;
  margin-bottom: 8px;
}
.builder-step .step-num span {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--primary);
  color: #fff;
  display: grid; place-items: center;
  font-family: 'Playfair Display', serif;
}
.builder-step h3 { font-size: 24px; margin-bottom: 22px; }
.opt-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
  gap: 12px;
}
.opt-card {
  background: var(--bg);
  border: 2px solid transparent;
  border-radius: 14px;
  padding: 16px;
  cursor: pointer;
  text-align: center;
  transition: border-color .15s, background .15s;
  font-size: 14px;
}
.opt-card:hover { background: var(--accent); }
.opt-card.selected {
  border-color: var(--primary);
  background: var(--accent);
}
.opt-card .opt-swatch {
  width: 48px; height: 48px;
  border-radius: 50%;
  margin: 0 auto 10px;
  border: 2px solid #fff;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}
.opt-card .opt-img {
  width: 72px;
  height: 72px;
  border-radius: 12px;
  overflow: hidden;
  background: var(--accent);
  margin: 0 auto 12px;
  display: grid;
  place-items: center;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}
.opt-card .opt-img img {
  width: 100%; height: 100%; object-fit: cover;
}
.opt-card .opt-img svg { width: 100%; height: 100%; }
.opt-card .qty-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 10px;
  padding-top: 10px;
  border-top: 1px dashed var(--border);
}
.opt-card .qty-btn {
  width: 28px;
  height: 28px;
  border-radius: 8px;
  border: 1px solid var(--border);
  background: #fff;
  cursor: pointer;
  font-size: 15px;
  font-weight: 600;
  color: var(--dark);
  display: grid;
  place-items: center;
  transition: background .12s, border-color .12s, color .12s;
  font-family: inherit;
}
.opt-card .qty-btn:not(:disabled):hover {
  background: var(--primary);
  border-color: var(--primary);
  color: #fff;
}
.opt-card .qty-btn:disabled {
  opacity: 0.35;
  cursor: not-allowed;
}
.opt-card .qty-num {
  min-width: 22px;
  text-align: center;
  font-weight: 600;
  font-size: 14px;
}
.opt-card.flower-card.selected {
  position: relative;
}
.opt-card.flower-card.selected::before {
  content: '';
  position: absolute;
  top: 8px; right: 8px;
  width: 18px; height: 18px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 3px #fff, 0 2px 6px rgba(0,0,0,0.15);
}
.sum-flowers { margin-bottom: 4px; }
.opt-card .opt-name { font-weight: 500; font-size: 13px; }
.opt-card .opt-price {
  font-size: 12px;
  color: var(--muted);
  margin-top: 4px;
}

.color-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.color-chip {
  width: 56px; height: 56px;
  border-radius: 50%;
  cursor: pointer;
  border: 3px solid transparent;
  transition: transform .15s, border-color .15s;
  position: relative;
}
.color-chip.selected {
  border-color: var(--primary);
  transform: scale(1.08);
}
.color-chip.selected::after {
  content: '✓';
  position: absolute; inset: 0;
  display: grid; place-items: center;
  color: #fff;
  font-weight: 600;
  text-shadow: 0 1px 2px rgba(0,0,0,0.4);
}

.summary-card {
  background: #fff;
  border-radius: 22px;
  padding: 32px;
  border: 1px solid var(--border);
  position: sticky;
  top: 96px;
}
.summary-card h3 { font-size: 22px; margin-bottom: 8px; }
.summary-preview {
  aspect-ratio: 1;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--accent), var(--secondary));
  margin-bottom: 24px;
  display: grid;
  place-items: center;
  position: relative;
  overflow: hidden;
}
.summary-row {
  display: flex;
  justify-content: space-between;
  padding: 12px 0;
  font-size: 14px;
  border-bottom: 1px solid var(--border);
}
.summary-row:last-of-type { border-bottom: none; }
.summary-row .lbl { color: var(--muted); }
.summary-row .val { color: var(--dark); font-weight: 500; }
.summary-total {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 20px 0 24px;
  border-top: 2px solid var(--border);
  margin-top: 8px;
}
.summary-total .l { font-size: 14px; color: var(--muted); }
.summary-total .v {
  font-family: 'Playfair Display', serif;
  font-size: 32px;
  color: var(--primary);
  font-weight: 600;
}
.summary-card .btn { width: 100%; justify-content: center; }

/* ===== CONTACT ===== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 48px;
}
.contact-info h2 { font-size: 36px; margin-bottom: 20px; }
.contact-info p { color: var(--muted); margin-bottom: 32px; font-size: 16px; }
.contact-row {
  display: flex;
  gap: 16px;
  padding: 20px 0;
  border-bottom: 1px solid var(--border);
  align-items: center;
}
.contact-row .ic {
  width: 48px; height: 48px;
  border-radius: 14px;
  background: var(--accent);
  color: var(--primary);
  display: grid; place-items: center;
  flex-shrink: 0;
}
.contact-row .lbl { font-size: 12px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--muted); margin-bottom: 4px; }
.contact-row .val { font-weight: 500; }
.whatsapp-cta {
  background: #25D366;
  color: #fff;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 24px;
  border-radius: 999px;
  font-weight: 600;
  margin-top: 24px;
}
.whatsapp-cta:hover { background: #1ebe5b; }

.contact-form {
  background: #fff;
  border-radius: 22px;
  padding: 40px;
  border: 1px solid var(--border);
}
.contact-form h3 { font-size: 26px; margin-bottom: 8px; }
.contact-form .sub { color: var(--muted); font-size: 14px; margin-bottom: 28px; }
.field { margin-bottom: 20px; }
.field label {
  display: block;
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 8px;
}
.field input, .field select, .field textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid var(--border);
  border-radius: 12px;
  font-family: inherit;
  font-size: 14px;
  background: var(--bg);
  color: var(--dark);
  transition: border-color .15s, background .15s;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: var(--primary);
  background: #fff;
}
.field textarea { min-height: 120px; resize: vertical; }
.row-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

/* ===== LEASING PRICING ===== */
.lease-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.lease-card {
  background: #fff;
  border-radius: 22px;
  padding: 36px 28px;
  border: 1px solid var(--border);
  text-align: center;
  position: relative;
  transition: transform .25s, box-shadow .25s;
}
.lease-card:hover { transform: translateY(-6px); box-shadow: 0 30px 60px -30px rgba(31, 42, 40, 0.25); }
.lease-card.featured {
  border-color: var(--gold);
  background: linear-gradient(180deg, #fff, var(--accent));
}
.lease-card.featured::before {
  content: 'Most Popular';
  position: absolute;
  top: -12px; left: 50%;
  transform: translateX(-50%);
  background: var(--gold);
  color: #fff;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: 999px;
}
.lease-card h3 { font-size: 22px; margin-bottom: 8px; }
.lease-card .lease-price {
  font-family: 'Playfair Display', serif;
  font-size: 42px;
  color: var(--primary);
  margin: 12px 0;
}
.lease-card .lease-price small { font-size: 14px; color: var(--muted); }
.lease-card ul { list-style: none; padding: 0; margin: 24px 0 28px; text-align: left; }
.lease-card ul li {
  padding: 8px 0;
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--dark);
}
.lease-card ul li::before {
  content: '✓';
  color: var(--primary);
  font-weight: 700;
}

/* ===== CART BUTTON + DRAWER ===== */
.cart-btn {
  position: relative;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: #fff;
  color: var(--dark);
  cursor: pointer;
  display: grid;
  place-items: center;
  transition: border-color .15s, background .15s;
}
.cart-btn:hover { border-color: var(--primary); background: var(--accent); }
.cart-badge {
  position: absolute;
  top: -4px; right: -4px;
  min-width: 20px; height: 20px;
  border-radius: 999px;
  background: var(--gold);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  padding: 0 5px;
  display: grid;
  place-items: center;
  border: 2px solid #fff;
}

.cart-drawer-bg {
  position: fixed;
  inset: 0;
  background: rgba(31, 42, 40, 0.45);
  backdrop-filter: blur(4px);
  z-index: 200;
  opacity: 0;
  pointer-events: none;
  transition: opacity .25s;
}
.cart-drawer-bg.open { opacity: 1; pointer-events: auto; }
.cart-drawer {
  position: absolute;
  top: 0; right: 0;
  height: 100vh;
  width: 100%;
  max-width: 480px;
  background: var(--bg);
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform .3s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: -30px 0 60px -20px rgba(0, 0, 0, 0.25);
}
.cart-drawer-bg.open .cart-drawer { transform: translateX(0); }
.cart-drawer-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 28px;
  border-bottom: 1px solid var(--border);
  background: #fff;
}
.cart-drawer-head h3 { font-family: 'Playfair Display', serif; font-size: 22px; margin: 0; }
.cart-x {
  background: transparent;
  border: none;
  cursor: pointer;
  width: 36px; height: 36px;
  border-radius: 50%;
  font-size: 22px;
  color: var(--muted);
}
.cart-x:hover { background: var(--accent); color: var(--dark); }
.cart-drawer-body {
  flex: 1;
  overflow-y: auto;
  padding: 20px 24px;
}
.cart-drawer-foot {
  padding: 22px 28px;
  border-top: 1px solid var(--border);
  background: #fff;
}
.cart-row {
  display: grid;
  grid-template-columns: 72px 1fr auto;
  gap: 14px;
  padding: 16px 0;
  border-bottom: 1px solid var(--border);
  align-items: flex-start;
}
.cart-row:last-of-type { border-bottom: none; }
.cart-row-thumb {
  width: 72px; height: 72px;
  border-radius: 12px;
  overflow: hidden;
  background: var(--accent);
}
.cart-row-thumb img { width: 100%; height: 100%; object-fit: cover; }
.cart-row-thumb svg { width: 100%; height: 100%; }
.cart-row-name { font-weight: 600; font-size: 15px; }
.cart-row-meta {
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  margin: 2px 0 8px;
}
.cart-row-qty {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
}
.cart-row-qty button {
  width: 26px; height: 26px;
  border-radius: 6px;
  border: 1px solid var(--border);
  background: #fff;
  cursor: pointer;
  font-size: 14px;
}
.cart-row-qty button:hover { background: var(--accent); }
.cart-row-qty span { min-width: 24px; text-align: center; font-weight: 500; }
.cart-row-remove {
  margin-left: 10px !important;
  background: transparent !important;
  border: none !important;
  color: #9b3d3d !important;
  font-size: 12px !important;
  cursor: pointer;
  width: auto !important;
  padding: 0 !important;
}
.cart-row-price {
  font-family: 'Playfair Display', serif;
  font-size: 17px;
  color: var(--primary);
  font-weight: 600;
}
.cart-total-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 6px;
}
.cart-total-row .lbl { color: var(--muted); font-size: 13px; letter-spacing: 0.08em; text-transform: uppercase; }
.cart-total-row .val { font-family: 'Playfair Display', serif; font-size: 28px; color: var(--primary); font-weight: 600; }

/* ===== WhatsApp FAB ===== */
.fab-wa {
  position: fixed;
  bottom: 28px; right: 28px;
  width: 56px; height: 56px;
  border-radius: 50%;
  background: #25D366;
  color: #fff;
  display: grid; place-items: center;
  box-shadow: 0 12px 30px rgba(37,211,102,0.4);
  z-index: 50;
  transition: transform .15s;
}
.fab-wa:hover { transform: scale(1.08); }

/* ===== MOBILE ===== */
@media (max-width: 980px) {
  .nav-links { display: none; }
  .nav-links.open {
    display: flex;
    position: absolute;
    top: 76px; left: 0; right: 0;
    background: var(--bg);
    flex-direction: column;
    padding: 24px;
    border-bottom: 1px solid var(--border);
    gap: 16px;
  }
  .menu-toggle { display: block; }
  .nav-cta .btn { display: none; }
  .hero { padding: 48px 0 64px; }
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .hero-trust { gap: 20px; }
  section { padding: 64px 0; }
  .cat-grid { grid-template-columns: repeat(2, 1fr); }
  .prod-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .mod-grid { grid-template-columns: 1fr; }
  .builder { padding: 48px 28px; grid-template-columns: 1fr; gap: 32px; border-radius: 24px; margin: 0 16px auto; max-width: calc(100% - 32px); }
  .gal-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 140px; }
  .test-grid { grid-template-columns: 1fr; }
  .occ-grid { grid-template-columns: repeat(2, 1fr); }
  .foot-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .foot-bottom { flex-direction: column; text-align: center; }
  .shop-layout { grid-template-columns: 1fr; }
  .builder-page { grid-template-columns: 1fr; }
  .summary-card { position: static; }
  .contact-grid { grid-template-columns: 1fr; }
  .lease-grid { grid-template-columns: 1fr; }
  .cta-band { padding: 56px 24px; margin: 0 16px auto; max-width: calc(100% - 32px); }
}

@media (max-width: 520px) {
  .cat-grid { grid-template-columns: 1fr; }
  .occ-grid { grid-template-columns: 1fr 1fr; }
  .row-2 { grid-template-columns: 1fr; }
  .foot-grid { grid-template-columns: 1fr; }
}

/* ===== ANIMATIONS ===== */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}
.reveal { animation: fadeUp .8s ease backwards; }
.reveal:nth-child(2) { animation-delay: .1s; }
.reveal:nth-child(3) { animation-delay: .2s; }
.reveal:nth-child(4) { animation-delay: .3s; }
