/* ===== DESIGN TOKENS ===== */
:root {
  --black:    #080808;
  --deep:     #0f0f0d;
  --surface:  #161612;
  --card:     #1c1c18;
  --border:   #2a2a24;
  --border2:  #363630;
  --muted:    #5a5a50;
  --subtle:   #8a8a78;
  --text:     #e8e8d8;
  --white:    #f5f5e8;

  --gold:     #c9a84c;
  --gold-lt:  #e0c070;
  --gold-dk:  #9a7830;
  --gold-bg:  rgba(201,168,76,.08);
  --gold-bdr: rgba(201,168,76,.18);

  --green:    #4a9e6a;
  --green-bg: rgba(74,158,106,.1);
  --green-bdr:rgba(74,158,106,.3);

  --red:      #c45a4a;

  --font-display: 'Fraunces', Georgia, serif;
  --font-body:    'DM Sans', sans-serif;

  --radius-sm: 10px;
  --radius:    16px;
  --radius-lg: 22px;
  --radius-xl: 32px;

  --shadow-gold: 0 8px 32px rgba(201,168,76,.12);
  --shadow-card: 0 4px 24px rgba(0,0,0,.4);
  --shadow-deep: 0 16px 48px rgba(0,0,0,.6);
  --shadow-lg:   0 24px 64px rgba(0,0,0,.8);

  --max-w: 1200px;
  --header-h: 72px;
}

/* ===== RESET ===== */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  background: var(--black);
  color: var(--text);
  font-size: 15px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
button { border: none; background: none; cursor: pointer; font-family: inherit; color: inherit; }
img { display: block; max-width: 100%; }
input, select, textarea { font-family: inherit; }

/* ===== SCROLLBAR ===== */
::-webkit-scrollbar { width: 6px; height: 6px; }
::-webkit-scrollbar-track { background: transparent; }
::-webkit-scrollbar-thumb { background: var(--border2); border-radius: 4px; }

/* ===== ANIMATIONS ===== */
@keyframes fadeUp   { from{opacity:0;transform:translateY(24px)} to{opacity:1;transform:translateY(0)} }
@keyframes fadeIn   { from{opacity:0} to{opacity:1} }
@keyframes slideL   { from{opacity:0;transform:translateX(-24px)} to{opacity:1;transform:translateX(0)} }
@keyframes shimmer  { 0%{background-position:-400% 0} 100%{background-position:400% 0} }
@keyframes waPulse  { 0%,100%{box-shadow:0 0 0 0 rgba(74,158,106,.5)} 60%{box-shadow:0 0 0 12px rgba(74,158,106,0)} }
@keyframes float    { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-10px)} }
@keyframes spin     { to{transform:rotate(360deg)} }

/* ===== CONTAINER ===== */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
}

/* ===== HEADER ===== */
header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(8,8,8,.96);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  height: var(--header-h);
}

.header-inner {
  height: var(--header-h);
  display: flex;
  align-items: center;
  gap: 32px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.brand-mark {
  width: 40px;
  height: 40px;
  border-radius: 11px;
  background: linear-gradient(135deg, var(--gold-dk), var(--gold));
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.brand-mark::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,.18) 0%, transparent 60%);
}

.brand-mark span {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 14px;
  color: #000;
  position: relative;
  z-index: 1;
  letter-spacing: 1px;
}

.brand-text {
  display: flex;
  flex-direction: column;
}

.brand-name {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 16px;
  letter-spacing: 2.5px;
  color: var(--gold-lt);
  line-height: 1;
}

.brand-sub {
  font-size: 9px;
  letter-spacing: 2.5px;
  color: var(--muted);
  text-transform: uppercase;
  margin-top: 3px;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 4px;
  flex: 1;
}

.nav-link {
  padding: 8px 14px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 500;
  color: var(--muted);
  transition: color .2s, background .2s;
}

.nav-link:hover, .nav-link.active {
  color: var(--text);
  background: var(--surface);
}

.nav-link.active {
  color: var(--gold-lt);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.btn-header {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 9px 18px;
  background: var(--gold-bg);
  border: 1px solid var(--gold-bdr);
  border-radius: var(--radius-sm);
  font-size: 12px;
  font-weight: 600;
  color: var(--gold);
  transition: background .2s, border-color .2s;
}

.btn-header:hover {
  background: rgba(201,168,76,.14);
  border-color: var(--gold-dk);
}

.btn-header svg {
  width: 14px;
  height: 14px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.8;
}

.btn-cart {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--card);
  border: 1px solid var(--border);
  position: relative;
  transition: border-color .2s;
}

.btn-cart:hover { border-color: var(--border2); }

.btn-cart svg {
  width: 16px;
  height: 16px;
  stroke: var(--subtle);
  stroke-width: 1.8;
  fill: none;
}

.cart-count {
  position: absolute;
  top: -3px;
  right: -3px;
  width: 18px;
  height: 18px;
  background: var(--gold);
  color: #000;
  font-size: 9px;
  font-weight: 700;
  border-radius: 50%;
  display: none;
  align-items: center;
  justify-content: center;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 36px;
  height: 36px;
  align-items: center;
  justify-content: center;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 8px;
}

.hamburger span {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--subtle);
  border-radius: 2px;
  transition: all .2s;
}

.mobile-nav {
  display: none;
  flex-direction: column;
  background: var(--deep);
  border-top: 1px solid var(--border);
  padding: 8px 0;
}

.mobile-nav a {
  padding: 12px 24px;
  font-size: 14px;
  color: var(--muted);
  border-bottom: 1px solid var(--border);
  transition: color .2s, background .2s;
}

.mobile-nav a:hover {
  color: var(--text);
  background: var(--surface);
}

.mobile-nav.open {
  display: flex;
}

/* ===== HERO ===== */
.hero {
  min-height: 100vh;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  padding-top: var(--header-h);
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 80% at 80% 20%, rgba(201,168,76,.10) 0%, transparent 60%),
    radial-gradient(ellipse 50% 70% at 10% 80%, rgba(201,168,76,.07) 0%, transparent 50%),
    linear-gradient(180deg, var(--deep) 0%, #060604 100%);
}

.hero-pattern {
  position: absolute;
  inset: 0;
  opacity: .03;
  background-image:
    repeating-linear-gradient(0deg, var(--gold) 0, var(--gold) 1px, transparent 1px, transparent 64px),
    repeating-linear-gradient(90deg, var(--gold) 0, var(--gold) 1px, transparent 1px, transparent 64px);
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 80px 24px 120px;
  max-width: 680px;
  animation: fadeUp .8s cubic-bezier(.16,1,.3,1) both;
}

.hero-eyebrow {
  display: inline-block;
  padding: 5px 16px;
  border: 1px solid var(--gold-bdr);
  background: var(--gold-bg);
  border-radius: 50px;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(40px, 7vw, 72px);
  font-weight: 400;
  line-height: 1.1;
  color: var(--white);
  margin-bottom: 20px;
}

.hero-title em {
  font-style: italic;
  color: var(--gold-lt);
}

.hero-sub {
  font-size: 17px;
  color: var(--muted);
  max-width: 520px;
  line-height: 1.7;
  margin-bottom: 36px;
}

.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 56px;
}

.btn-primary-hero {
  padding: 14px 32px;
  background: var(--gold);
  color: #000;
  font-size: 14px;
  font-weight: 700;
  border-radius: 50px;
  letter-spacing: .5px;
  transition: transform .2s, box-shadow .2s, opacity .2s;
}

.btn-primary-hero:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(201,168,76,.35);
  opacity: .95;
}

.btn-outline-hero {
  padding: 14px 28px;
  border: 1px solid rgba(201,168,76,.3);
  color: var(--gold-lt);
  font-size: 14px;
  font-weight: 500;
  border-radius: 50px;
  transition: border-color .2s, background .2s;
}

.btn-outline-hero:hover {
  border-color: rgba(201,168,76,.6);
  background: rgba(201,168,76,.05);
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 32px;
}

.stat { display: flex; flex-direction: column; }
.stat-num {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 600;
  color: var(--gold);
  line-height: 1;
}
.stat-lbl { font-size: 11px; color: var(--muted); margin-top: 4px; }
.stat-div { width: 1px; height: 40px; background: var(--border); }

.hero-scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--muted);
  font-size: 11px;
  letter-spacing: 1px;
  animation: float 2s ease-in-out infinite;
  cursor: pointer;
}

.hero-scroll svg {
  width: 18px;
  height: 18px;
  stroke: var(--muted);
  stroke-width: 2;
  fill: none;
}

/* ===== GOLD LINE ===== */
.gold-line-full {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border2) 30%, var(--border2) 70%, transparent);
}

/* ===== SECTION ===== */
.section {
  padding: 80px 0;
}

.section-dark {
  background: var(--deep);
}

.sec-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 40px;
}

.sec-head.center {
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.sec-eyebrow {
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 8px;
}

.sec-title {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 400;
  color: var(--white);
  line-height: 1.2;
}

.sec-desc {
  font-size: 16px;
  color: var(--muted);
  margin-top: 12px;
  max-width: 560px;
}

.sec-link {
  font-size: 13px;
  color: var(--gold);
  font-weight: 500;
  white-space: nowrap;
  padding: 8px 16px;
  border: 1px solid var(--gold-bdr);
  border-radius: 50px;
  transition: background .2s;
}

.sec-link:hover { background: var(--gold-bg); }

/* ===== CATEGORIES GRID ===== */
.cats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.cat-card {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  cursor: pointer;
  transition: transform .25s, box-shadow .25s, border-color .25s;
  position: relative;
  overflow: hidden;
}

.cat-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(201,168,76,.04) 0%, transparent 60%);
  opacity: 0;
  transition: opacity .3s;
}

.cat-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-card);
  border-color: var(--gold-bdr);
}

.cat-card:hover::before { opacity: 1; }

.cat-card.cat-soon {
  opacity: .7;
}

.cat-icon-wrap {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: var(--surface);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background .2s, border-color .2s;
}

.cat-icon-wrap svg {
  width: 22px;
  height: 22px;
  stroke: var(--subtle);
  stroke-width: 1.6;
  fill: none;
  transition: stroke .2s;
}

.cat-card:hover .cat-icon-wrap {
  background: var(--gold-bg);
  border-color: var(--gold-bdr);
}

.cat-card:hover .cat-icon-wrap svg { stroke: var(--gold); }

.cat-info { flex: 1; min-width: 0; }
.cat-info h3 { font-family: var(--font-display); font-size: 17px; font-weight: 500; color: var(--white); margin-bottom: 4px; }
.cat-info p { font-size: 12px; color: var(--muted); line-height: 1.5; }

.badge-soon {
  display: inline-block;
  margin-top: 8px;
  padding: 2px 10px;
  background: var(--gold-bg);
  border: 1px solid var(--gold-bdr);
  border-radius: 50px;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--gold);
}

.cat-arrow {
  width: 16px;
  height: 16px;
  stroke: var(--border2);
  stroke-width: 2;
  fill: none;
  flex-shrink: 0;
  transition: stroke .2s, transform .2s;
}

.cat-card:hover .cat-arrow {
  stroke: var(--gold);
  transform: translateX(3px);
}

/* ===== FEATURED GRID ===== */
.featured-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.feat-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform .25s, box-shadow .25s, border-color .25s;
  display: block;
}

.feat-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-gold);
  border-color: var(--gold-bdr);
}

.feat-img {
  height: 180px;
  position: relative;
}

.feat-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(8,8,8,.6) 0%, transparent 60%);
}

.feat-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  padding: 3px 10px;
  background: var(--gold);
  color: #000;
  font-size: 9px;
  font-weight: 700;
  border-radius: 50px;
  letter-spacing: 1px;
  text-transform: uppercase;
  z-index: 2;
}

.feat-body { padding: 16px; }
.feat-breed { font-size: 10px; text-transform: uppercase; letter-spacing: 1.5px; color: var(--gold); font-weight: 600; margin-bottom: 4px; }
.feat-name { font-family: var(--font-display); font-size: 17px; font-weight: 500; color: var(--white); margin-bottom: 4px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.feat-attr { font-size: 11px; color: var(--muted); margin-bottom: 14px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.feat-foot { display: flex; align-items: center; justify-content: space-between; }
.feat-price { font-family: var(--font-display); font-size: 20px; font-weight: 600; color: var(--gold); }
.feat-unit { font-size: 11px; color: var(--muted); }
.feat-cta { font-size: 12px; color: var(--gold); font-weight: 600; }

/* Placeholder */
.feat-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 60px;
  background: var(--surface);
}

/* ===== PROMO BANNER ===== */
.promo-banner {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 32px;
  background: var(--card);
  border: 1px solid var(--gold-bdr);
  border-radius: var(--radius-lg);
  position: relative;
  overflow: hidden;
}

.promo-deco {
  position: absolute;
  top: -60px;
  right: -60px;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201,168,76,.06) 0%, transparent 70%);
}

.promo-icon-wrap {
  width: 68px;
  height: 68px;
  border-radius: 18px;
  background: var(--gold-bg);
  border: 1px solid var(--gold-bdr);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.promo-icon-wrap svg {
  width: 28px;
  height: 28px;
  stroke: var(--gold);
  stroke-width: 1.6;
  fill: none;
}

.promo-text { flex: 1; min-width: 0; position: relative; z-index: 1; }
.promo-text h3 { font-family: var(--font-display); font-size: 22px; font-weight: 500; margin: 8px 0 8px; }
.promo-text p { font-size: 13px; color: var(--muted); line-height: 1.6; margin-bottom: 16px; }

.promo-actions { display: flex; gap: 10px; }

.btn-primary-sm {
  padding: 10px 20px;
  background: var(--gold);
  color: #000;
  font-size: 12px;
  font-weight: 700;
  border-radius: 50px;
  transition: opacity .2s, transform .2s;
}

.btn-primary-sm:hover { opacity: .9; transform: translateY(-1px); }

.btn-outline-sm {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 9px 18px;
  border: 1px solid var(--border);
  color: var(--muted);
  font-size: 11px;
  border-radius: 50px;
  transition: border-color .2s, color .2s;
}

.btn-outline-sm:hover { border-color: var(--border2); color: var(--subtle); }

.btn-outline-sm svg {
  width: 13px;
  height: 13px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
}

.promo-number {
  font-family: var(--font-display);
  font-size: 80px;
  font-weight: 700;
  color: rgba(201,168,76,.06);
  position: absolute;
  right: 32px;
  bottom: -10px;
  line-height: 1;
  user-select: none;
}

.badge-gold {
  display: inline-block;
  padding: 3px 12px;
  background: linear-gradient(135deg, var(--gold-dk), var(--gold));
  color: #000;
  font-size: 9px;
  font-weight: 700;
  border-radius: 50px;
  letter-spacing: 1px;
  text-transform: uppercase;
}

/* ===== WHY GRID ===== */
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.why-card {
  padding: 24px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: transform .25s, border-color .25s;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .5s, transform .5s, border-color .25s;
}

.why-card.visible {
  opacity: 1;
  transform: translateY(0);
}

.why-card:hover { border-color: var(--gold-bdr); }

.why-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: var(--gold-bg);
  border: 1px solid var(--gold-bdr);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.why-icon svg {
  width: 22px;
  height: 22px;
  stroke: var(--gold);
  stroke-width: 1.6;
  fill: none;
}

.why-card h4 {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 500;
  color: var(--white);
  margin-bottom: 8px;
}

.why-card p {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.65;
}

/* ===== PARTNERS ===== */
.partners-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 12px;
}

.partner-item {
  height: 72px;
  border-radius: var(--radius-sm);
  background: var(--card);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color .2s;
}

.partner-item:hover { border-color: var(--border2); }

.partner-item span {
  font-family: var(--font-display);
  font-size: 13px;
  color: var(--border2);
  font-weight: 600;
}

/* ===== CTA SECTION ===== */
.section-cta {
  padding: 80px 0;
}

.cta-box {
  padding: 64px;
  background: linear-gradient(135deg, var(--deep) 0%, #0d0d09 100%);
  border: 1px solid var(--gold-bdr);
  border-radius: var(--radius-xl);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-deco {
  position: absolute;
  top: -100px;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(ellipse, rgba(201,168,76,.07) 0%, transparent 70%);
  pointer-events: none;
}

.cta-box h2 {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 400;
  color: var(--white);
  margin-bottom: 16px;
  position: relative;
}

.cta-box p {
  font-size: 16px;
  color: var(--muted);
  margin-bottom: 36px;
  position: relative;
}

.cta-actions {
  display: flex;
  gap: 14px;
  justify-content: center;
}

.btn-wa {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  background: var(--green-bg);
  border: 1px solid var(--green-bdr);
  color: var(--green);
  font-size: 14px;
  font-weight: 600;
  border-radius: 50px;
  transition: background .2s;
}

.btn-wa:hover { background: rgba(74,158,106,.18); }

.btn-wa svg {
  width: 16px;
  height: 16px;
  stroke: currentColor;
  stroke-width: 1.8;
  fill: none;
}

/* ===== FOOTER ===== */
footer {
  background: var(--deep);
  border-top: 1px solid var(--border);
}

.footer-inner {
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: 64px;
  padding: 60px 24px 40px;
}

.footer-brand .brand { margin-bottom: 16px; }

.footer-brand p {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 20px;
}

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.footer-contact span {
  font-size: 12px;
  color: var(--subtle);
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.footer-col h5 {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--subtle);
  margin-bottom: 16px;
}

.footer-col a {
  display: block;
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 10px;
  transition: color .2s;
}

.footer-col a:hover { color: var(--text); }

.footer-bottom {
  border-top: 1px solid var(--border);
  padding: 16px 0;
}

.footer-bottom .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-bottom span {
  font-size: 11px;
  color: var(--muted);
}

/* ===== WA FAB ===== */
.wa-fab {
  position: fixed;
  bottom: 32px;
  right: 32px;
  width: 56px;
  height: 56px;
  background: var(--green);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: waPulse 2.5s infinite;
  box-shadow: 0 4px 20px rgba(74,158,106,.4);
  z-index: 50;
  transition: transform .2s;
}

.wa-fab:hover { transform: scale(1.1); }

.wa-fab svg {
  width: 22px;
  height: 22px;
  stroke: #fff;
  stroke-width: 1.8;
  fill: none;
}

/* ===== TOAST ===== */
.toast {
  position: fixed;
  top: 90px;
  left: 50%;
  transform: translateX(-50%) translateY(-80px);
  z-index: 200;
  background: var(--gold);
  color: #000;
  padding: 12px 24px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: .3px;
  transition: transform .35s cubic-bezier(.16,1,.3,1);
  pointer-events: none;
  white-space: nowrap;
  box-shadow: var(--shadow-gold);
}

.toast.show { transform: translateX(-50%) translateY(0); }

/* ===== CATALOG PAGE ===== */
.page-header {
  padding: calc(var(--header-h) + 40px) 0 40px;
  background: var(--deep);
  border-bottom: 1px solid var(--border);
}

.page-header h1 {
  font-family: var(--font-display);
  font-size: clamp(32px, 5vw, 52px);
  font-weight: 400;
  color: var(--white);
  margin-bottom: 12px;
}

.page-header p {
  font-size: 16px;
  color: var(--muted);
  max-width: 560px;
}

.catalog-layout {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 32px;
  padding: 48px 0;
  align-items: start;
}

.sidebar {
  position: sticky;
  top: calc(var(--header-h) + 20px);
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px;
}

.sidebar-title {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 20px;
  color: var(--white);
}

.filter-group { margin-bottom: 24px; }

.filter-group-title {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 10px;
}

.filter-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
  padding: 10px 14px;
  border-radius: var(--radius-sm);
  font-size: 13px;
  color: var(--muted);
  transition: background .2s, color .2s;
  text-align: left;
  margin-bottom: 4px;
}

.filter-btn svg {
  width: 16px;
  height: 16px;
  stroke: currentColor;
  stroke-width: 1.8;
  fill: none;
  flex-shrink: 0;
}

.filter-btn:hover {
  background: var(--surface);
  color: var(--text);
}

.filter-btn.active {
  background: var(--gold-bg);
  border: 1px solid var(--gold-bdr);
  color: var(--gold);
}

.catalog-main {}

.catalog-toolbar {
  display: flex;
  gap: 12px;
  margin-bottom: 24px;
  align-items: center;
}

.search-wrap {
  flex: 1;
  position: relative;
}

.search-wrap svg {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  width: 16px;
  height: 16px;
  stroke: var(--muted);
  stroke-width: 1.8;
  fill: none;
}

.search-input {
  width: 100%;
  padding: 12px 14px 12px 42px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 14px;
  color: var(--text);
  outline: none;
  transition: border-color .2s;
}

.search-input::placeholder { color: var(--muted); }
.search-input:focus { border-color: var(--gold-dk); }

.catalog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.prod-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
  transition: transform .22s, box-shadow .22s, border-color .22s;
  display: block;
}

.prod-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-card);
  border-color: var(--border2);
}

.prod-img {
  height: 140px;
  position: relative;
  background: var(--surface);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 52px;
}

.prod-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.unavail-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 4px 8px;
  background: rgba(196,90,74,.85);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .5px;
  color: #fff;
  text-align: center;
}

.prod-badge {
  position: absolute;
  top: 8px;
  left: 8px;
  padding: 3px 10px;
  background: linear-gradient(135deg, var(--gold-dk), var(--gold));
  color: #000;
  font-size: 8px;
  font-weight: 700;
  border-radius: 50px;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.prod-fav {
  position: absolute;
  top: 8px;
  right: 8px;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: rgba(0,0,0,.6);
  backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255,255,255,.1);
  transition: background .2s;
}

.prod-fav:hover { background: rgba(0,0,0,.8); }

.prod-fav svg {
  width: 13px;
  height: 13px;
  stroke: rgba(255,255,255,.7);
  stroke-width: 1.8;
  fill: none;
  transition: stroke .2s, fill .2s;
}

.prod-fav.faved svg { stroke: var(--red); fill: var(--red); }

.prod-body { padding: 14px; }
.prod-breed { font-size: 9px; text-transform: uppercase; letter-spacing: 1.5px; color: var(--gold); font-weight: 600; margin-bottom: 3px; }
.prod-name { font-family: var(--font-display); font-size: 15px; font-weight: 500; color: var(--white); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; margin-bottom: 3px; }
.prod-attr { font-size: 11px; color: var(--muted); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; margin-bottom: 12px; }
.prod-foot { display: flex; align-items: flex-end; justify-content: space-between; }
.prod-price { font-family: var(--font-display); font-size: 18px; font-weight: 600; color: var(--gold); line-height: 1; }
.prod-unit { font-size: 10px; color: var(--muted); }

.btn-add-cart {
  padding: 6px 14px;
  border: 1px solid var(--gold-bdr);
  border-radius: 50px;
  font-size: 10px;
  font-weight: 700;
  color: var(--gold);
  background: var(--gold-bg);
  transition: background .2s;
  letter-spacing: .3px;
}

.btn-add-cart:hover { background: rgba(201,168,76,.18); }

/* ===== PRODUCT DETAIL PAGE ===== */
.product-layout {
  display: grid;
  grid-template-columns: 1fr 480px;
  gap: 48px;
  padding: 48px 0 80px;
  align-items: start;
}

.product-gallery {
  position: sticky;
  top: calc(var(--header-h) + 20px);
}

.product-main-img {
  width: 100%;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/3;
  background: var(--surface);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 120px;
}

.product-main-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-info {}

.product-breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: var(--muted);
  margin-bottom: 20px;
}

.product-breadcrumb a { color: var(--gold); }
.product-breadcrumb span { color: var(--border2); }

.product-category {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--gold);
  font-weight: 700;
  margin-bottom: 8px;
}

.product-title {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 400;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 16px;
}

.avail-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 14px;
  border-radius: 50px;
  font-size: 12px;
  font-weight: 600;
  margin-bottom: 20px;
}

.avail-badge.ok { background: var(--green-bg); color: var(--green); border: 1px solid var(--green-bdr); }
.avail-badge.no { background: rgba(196,90,74,.1); color: var(--red); border: 1px solid rgba(196,90,74,.3); }

.avail-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: currentColor;
}

.product-price-row {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-bottom: 24px;
}

.product-price {
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 600;
  color: var(--gold);
}

.product-unit { font-size: 15px; color: var(--muted); }

.attrs-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 28px;
}

.attr-tag {
  padding: 7px 16px;
  border: 1px solid var(--gold-bdr);
  background: var(--gold-bg);
  border-radius: 50px;
  font-size: 12px;
  color: var(--gold-lt);
  font-weight: 500;
}

.info-block { margin-bottom: 24px; }

.info-label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  color: var(--subtle);
  text-transform: uppercase;
  margin-bottom: 8px;
}

.info-label svg {
  width: 14px;
  height: 14px;
  stroke: var(--gold);
  stroke-width: 1.8;
  fill: none;
}

.info-val {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.7;
  padding-left: 22px;
}

.qty-row {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
}

.qty-label { font-size: 13px; color: var(--muted); font-weight: 500; }

.qty-control {
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 6px 12px;
}

.qty-btn {
  width: 28px;
  height: 28px;
  border-radius: 6px;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: var(--subtle);
  transition: border-color .2s, color .2s;
}

.qty-btn:hover { border-color: var(--gold-bdr); color: var(--gold); }
.qty-num { font-size: 16px; font-weight: 600; min-width: 32px; text-align: center; }

.action-stack {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.btn-primary-full {
  width: 100%;
  padding: 16px;
  background: linear-gradient(135deg, var(--gold-dk), var(--gold));
  color: #000;
  font-size: 14px;
  font-weight: 700;
  border-radius: var(--radius-sm);
  letter-spacing: .5px;
  transition: opacity .2s, transform .15s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.btn-primary-full:hover { opacity: .9; transform: translateY(-1px); }

.btn-primary-full svg {
  width: 17px;
  height: 17px;
  stroke: #000;
  stroke-width: 2;
  fill: none;
}

.btn-wa-full {
  width: 100%;
  padding: 15px;
  border: 1px solid var(--green-bdr);
  color: var(--green);
  background: var(--green-bg);
  font-size: 14px;
  font-weight: 600;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: background .2s;
}

.btn-wa-full:hover { background: rgba(74,158,106,.18); }

.btn-wa-full svg {
  width: 17px;
  height: 17px;
  stroke: currentColor;
  stroke-width: 1.8;
  fill: none;
}

/* ===== CART PAGE ===== */
.cart-layout {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 32px;
  padding: 48px 0 80px;
  align-items: start;
}

.cart-items-list { display: flex; flex-direction: column; gap: 12px; }

.cart-item-card {
  display: flex;
  gap: 16px;
  padding: 20px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}

.cart-item-img {
  width: 80px;
  height: 80px;
  border-radius: var(--radius-sm);
  background: var(--surface);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 36px;
  flex-shrink: 0;
  overflow: hidden;
}

.cart-item-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cart-item-info { flex: 1; min-width: 0; }
.cart-item-breed { font-size: 10px; text-transform: uppercase; letter-spacing: 1px; color: var(--gold); font-weight: 600; }
.cart-item-name { font-family: var(--font-display); font-size: 17px; font-weight: 500; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.cart-item-foot { display: flex; align-items: center; justify-content: space-between; margin-top: 10px; }
.cart-item-qty { display: flex; align-items: center; gap: 12px; }
.cart-item-qty span { font-size: 14px; font-weight: 600; min-width: 24px; text-align: center; }
.cart-item-price { font-family: var(--font-display); font-size: 18px; font-weight: 600; color: var(--gold); }

.cart-del-btn svg {
  width: 16px;
  height: 16px;
  stroke: var(--muted);
  stroke-width: 1.8;
  fill: none;
  transition: stroke .2s;
}

.cart-del-btn:hover svg { stroke: var(--red); }

.cart-summary-box {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px;
  position: sticky;
  top: calc(var(--header-h) + 20px);
}

.summary-title { font-family: var(--font-display); font-size: 22px; font-weight: 500; margin-bottom: 20px; }

.summary-divider { height: 1px; background: var(--border); margin: 16px 0; }

.summary-row { display: flex; justify-content: space-between; font-size: 14px; margin-bottom: 10px; }
.summary-row span:first-child { color: var(--muted); }

.summary-total { display: flex; justify-content: space-between; font-size: 18px; font-weight: 600; padding-top: 16px; border-top: 1px solid var(--border); margin-bottom: 20px; }
.summary-total span:last-child { font-family: var(--font-display); font-size: 24px; color: var(--gold); }

.empty-cart {
  text-align: center;
  padding: 80px 24px;
  grid-column: span 2;
}

.empty-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--surface);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.empty-icon svg {
  width: 32px;
  height: 32px;
  stroke: var(--border2);
  stroke-width: 1.5;
  fill: none;
}

.empty-cart p {
  font-size: 16px;
  color: var(--muted);
  margin-bottom: 24px;
}

/* ===== CHECKOUT PAGE ===== */
.checkout-layout {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 32px;
  padding: 48px 0 80px;
  align-items: start;
}

.checkout-steps {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 32px;
}

.step-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--border2);
  transition: all .3s;
}

.step-dot.active {
  background: var(--gold);
  transform: scale(1.4);
}

.step-dot.done { background: var(--green); }

.step-connector { flex: 1; height: 1px; background: var(--border); max-width: 40px; }

.checkout-form-title { font-family: var(--font-display); font-size: 22px; font-weight: 500; margin-bottom: 24px; }

.field-group { margin-bottom: 16px; }

.field-label {
  display: block;
  font-size: 11px;
  color: var(--muted);
  margin-bottom: 6px;
  font-weight: 600;
  letter-spacing: .3px;
  text-transform: uppercase;
}

.field-input {
  width: 100%;
  padding: 13px 16px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 14px;
  color: var(--text);
  outline: none;
  transition: border-color .2s;
  appearance: none;
}

.field-input::placeholder { color: var(--muted); }
.field-input:focus { border-color: var(--gold-dk); }

.pay-option {
  width: 100%;
  padding: 16px 20px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  background: var(--card);
  display: flex;
  align-items: center;
  gap: 16px;
  text-align: left;
  transition: all .2s;
  margin-bottom: 12px;
  cursor: pointer;
}

.pay-option:hover { border-color: var(--border2); }
.pay-option.selected { border-color: var(--gold-dk); background: var(--gold-bg); }

.pay-icon-wrap {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.pay-icon-wrap svg {
  width: 20px;
  height: 20px;
  stroke: currentColor;
  stroke-width: 1.8;
  fill: none;
}

.pay-name { font-weight: 600; font-size: 14px; margin-bottom: 2px; }
.pay-desc { font-size: 11px; color: var(--muted); }

.btn-row { display: flex; gap: 12px; margin-top: 8px; }

.btn-outline-full {
  flex: 1;
  padding: 14px;
  border: 1px solid var(--gold-bdr);
  color: var(--gold);
  background: var(--gold-bg);
  font-size: 13px;
  font-weight: 600;
  border-radius: var(--radius-sm);
  text-align: center;
  transition: background .2s;
}

.btn-outline-full:hover { background: rgba(201,168,76,.14); }

.success-box {
  text-align: center;
  padding: 48px 24px;
}

.success-icon {
  width: 88px;
  height: 88px;
  border-radius: 50%;
  background: var(--gold-bg);
  border: 1px solid var(--gold-bdr);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
}

.success-icon svg {
  width: 40px;
  height: 40px;
  stroke: var(--gold);
  stroke-width: 1.5;
  fill: none;
}

.success-box h2 { font-family: var(--font-display); font-size: 32px; font-weight: 400; margin-bottom: 10px; }
.success-box p { font-size: 14px; color: var(--muted); line-height: 1.7; margin-bottom: 32px; }

/* ===== LOGISTICS PAGE ===== */
.logistics-banner {
  display: flex;
  gap: 24px;
  padding: 28px;
  background: var(--card);
  border: 1px solid var(--gold-bdr);
  border-radius: var(--radius-lg);
  margin-bottom: 32px;
  position: relative;
  overflow: hidden;
}

.logistics-banner::before {
  content: '';
  position: absolute;
  top: -40px;
  right: -40px;
  width: 160px;
  height: 160px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201,168,76,.07) 0%, transparent 70%);
}

.logistics-icon {
  width: 60px;
  height: 60px;
  border-radius: 16px;
  background: var(--gold-bg);
  border: 1px solid var(--gold-bdr);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.logistics-icon svg {
  width: 26px;
  height: 26px;
  stroke: var(--gold);
  stroke-width: 1.6;
  fill: none;
}

.logistics-info { flex: 1; }
.logistics-eyebrow { font-size: 10px; text-transform: uppercase; letter-spacing: 1.5px; color: var(--gold); font-weight: 600; margin-bottom: 4px; }
.logistics-title { font-family: var(--font-display); font-size: 20px; font-weight: 500; margin-bottom: 4px; }
.logistics-desc { font-size: 12px; color: var(--muted); }

.logistics-stats {
  display: flex;
  gap: 12px;
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid var(--border);
}

.lstat {
  flex: 1;
  background: var(--surface);
  border-radius: var(--radius-sm);
  padding: 12px;
  text-align: center;
}

.lstat-val {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 500;
  color: var(--gold);
  line-height: 1;
}

.lstat-lbl {
  font-size: 9px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: .5px;
  margin-top: 4px;
}

.tabs {
  display: flex;
  gap: 8px;
  margin-bottom: 28px;
  border-bottom: 1px solid var(--border);
  padding-bottom: 0;
}

.tab-btn {
  padding: 12px 20px;
  font-size: 13px;
  font-weight: 600;
  color: var(--muted);
  border-bottom: 2px solid transparent;
  margin-bottom: -1px;
  transition: color .2s, border-color .2s;
}

.tab-btn.active {
  color: var(--gold);
  border-color: var(--gold);
}

.tab-panel { display: none; }
.tab-panel.active { display: block; }

.form-box {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px;
  margin-bottom: 16px;
}

.form-box-title { font-family: var(--font-display); font-size: 18px; font-weight: 500; margin-bottom: 6px; }
.form-box-desc { font-size: 12px; color: var(--muted); margin-bottom: 20px; }

.frete-result { display: none; }
.frete-result.visible { display: block; }

.frete-option {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  margin-bottom: 10px;
  cursor: pointer;
  transition: border-color .2s;
}

.frete-option:hover { border-color: var(--gold-bdr); }
.frete-option.selected { border-color: var(--gold); background: var(--gold-bg); }

.frete-info .frete-name { font-weight: 600; font-size: 14px; }
.frete-info .frete-prazo { font-size: 12px; color: var(--muted); margin-top: 2px; }
.frete-price { font-family: var(--font-display); font-size: 18px; color: var(--gold); font-weight: 600; }

.info-tip {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  padding: 14px 16px;
  background: var(--gold-bg);
  border: 1px solid var(--gold-bdr);
  border-radius: var(--radius-sm);
  margin-top: 16px;
}

.info-tip svg {
  width: 16px;
  height: 16px;
  stroke: var(--gold);
  stroke-width: 1.8;
  fill: none;
  flex-shrink: 0;
  margin-top: 1px;
}

.info-tip p { font-size: 12px; color: var(--muted); line-height: 1.6; }

/* ===== ABOUT / CONTACT ===== */
.text-content h2 { font-family: var(--font-display); font-size: clamp(28px, 4vw, 44px); font-weight: 400; color: var(--white); margin-bottom: 20px; }
.text-content p { font-size: 15px; color: var(--muted); line-height: 1.8; margin-bottom: 16px; }
.text-content h3 { font-family: var(--font-display); font-size: 22px; font-weight: 500; color: var(--white); margin: 32px 0 12px; }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  padding: 48px 0;
}

.contact-form-box {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
}

.contact-info-box { }

.contact-card {
  display: flex;
  gap: 16px;
  padding: 20px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin-bottom: 12px;
}

.contact-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: var(--gold-bg);
  border: 1px solid var(--gold-bdr);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-icon svg {
  width: 20px;
  height: 20px;
  stroke: var(--gold);
  stroke-width: 1.6;
  fill: none;
}

.contact-card-title { font-weight: 600; font-size: 14px; margin-bottom: 4px; }
.contact-card-val { font-size: 13px; color: var(--muted); }

/* ===== LEGAL PAGES ===== */
.legal-content {
  max-width: 760px;
  margin: 0 auto;
  padding: 48px 0 80px;
}

.legal-intro {
  padding: 20px;
  background: var(--gold-bg);
  border: 1px solid var(--gold-bdr);
  border-radius: var(--radius);
  margin-bottom: 28px;
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.legal-intro svg {
  width: 18px;
  height: 18px;
  stroke: var(--gold);
  fill: none;
  stroke-width: 1.8;
  flex-shrink: 0;
  margin-top: 2px;
}

.legal-intro-title { font-size: 13px; font-weight: 700; color: var(--gold); margin-bottom: 4px; }
.legal-intro-desc { font-size: 12px; color: var(--muted); line-height: 1.7; }

.legal-sections {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.legal-section {
  padding: 20px 24px;
  border-bottom: 1px solid var(--border);
}

.legal-section:last-child { border-bottom: none; }

.legal-section-title {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 500;
  margin-bottom: 10px;
  color: var(--white);
}

.legal-section-text {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.85;
}

.legal-list {
  list-style: none;
  margin-top: 10px;
}

.legal-list li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 8px;
}

.legal-list li::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
  margin-top: 6px;
}

.contact-box {
  margin-top: 16px;
  padding: 16px;
  background: var(--surface);
  border-radius: var(--radius-sm);
}

.contact-box p { font-size: 12px; color: var(--muted); margin-bottom: 4px; }

/* ===== FAVORITES PAGE ===== */
.favs-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  padding: 48px 0;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1100px) {
  .featured-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .partners-grid { grid-template-columns: repeat(3, 1fr); }
  .catalog-layout { grid-template-columns: 1fr; }
  .sidebar { position: static; }
  .catalog-grid { grid-template-columns: repeat(3, 1fr); }
  .product-layout { grid-template-columns: 1fr; }
  .product-gallery { position: static; }
  .cart-layout { grid-template-columns: 1fr; }
  .checkout-layout { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; gap: 40px; }
  .footer-links { grid-template-columns: repeat(3, 1fr); }
  .favs-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 768px) {
  .main-nav { display: none; }
  .hamburger { display: flex; }
  .btn-header { display: none; }
  .cats-grid { grid-template-columns: 1fr; }
  .featured-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .partners-grid { grid-template-columns: repeat(2, 1fr); }
  .catalog-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-stats { display: none; }
  .promo-banner { flex-direction: column; }
  .promo-number { display: none; }
  .cta-box { padding: 40px 24px; }
  .cta-actions { flex-direction: column; align-items: center; }
  .footer-links { grid-template-columns: repeat(2, 1fr); }
  .contact-grid { grid-template-columns: 1fr; }
  .favs-grid { grid-template-columns: repeat(2, 1fr); }
  .logistics-stats { flex-wrap: wrap; }
}

@media (max-width: 480px) {
  .catalog-grid { grid-template-columns: 1fr; }
  .cats-grid { grid-template-columns: 1fr; }
  .partners-grid { grid-template-columns: 1fr; }
  .favs-grid { grid-template-columns: 1fr; }
  .footer-links { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; }
}

/* ===== MISSING CLASSES ===== */

/* Legal pages */
.legal-content { max-width: 800px; margin: 0 auto; padding: 60px 0; }
.legal-block { margin-bottom: 40px; padding-bottom: 40px; border-bottom: 1px solid var(--border); }
.legal-block:last-child { border-bottom: none; }
.legal-block h2 { font-family: var(--font-display); font-size: 22px; font-weight: 400; margin-bottom: 14px; color: var(--white); }
.legal-block p { font-size: 14px; color: var(--muted); line-height: 1.9; margin-bottom: 12px; }
.legal-block ul { padding-left: 20px; display: flex; flex-direction: column; gap: 8px; margin-bottom: 12px; }
.legal-block ul li { font-size: 14px; color: var(--muted); line-height: 1.7; }

/* Contact page */
.contact-layout { display: grid; grid-template-columns: 1fr 1.4fr; gap: 60px; padding: 60px 0; }
.contact-channel { display: flex; gap: 16px; align-items: flex-start; padding: 20px 0; border-bottom: 1px solid var(--border); }
.contact-channel:last-child { border-bottom: none; }
.contact-channel-icon { width: 44px; height: 44px; border-radius: 50%; background: var(--card); border: 1px solid var(--border); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.contact-channel-icon svg { width: 18px; height: 18px; stroke: var(--muted); fill: none; stroke-width: 1.8; }
.contact-label { font-size: 11px; color: var(--muted); text-transform: uppercase; letter-spacing: .8px; margin-bottom: 4px; }
.contact-val { font-size: 15px; font-weight: 600; color: var(--subtle); display: block; }

/* Logistics page */
.tab-nav { display: flex; gap: 4px; padding: 6px; background: var(--card); border: 1px solid var(--border); border-radius: 50px; margin-bottom: 32px; width: fit-content; }
.tab-content { }
.tab-panel-title { font-family: var(--font-display); font-size: 24px; font-weight: 400; margin-bottom: 16px; }
.tab-panel { background: var(--card); border: 1px solid var(--border); border-radius: var(--radius); padding: 40px; }
.logistics-steps { display: flex; flex-direction: column; gap: 0; }
.logi-step { display: flex; gap: 20px; align-items: flex-start; padding: 20px 0; border-bottom: 1px solid var(--border); }
.logi-step:last-child { border-bottom: none; }
.logi-num { width: 36px; height: 36px; border-radius: 50%; background: var(--gold); color: #000; font-size: 14px; font-weight: 700; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.logi-title { font-size: 15px; font-weight: 600; color: var(--white); margin-bottom: 6px; }
.logi-desc { font-size: 13px; color: var(--muted); line-height: 1.7; }

/* Info cards (sobre/logistica) */
.info-card-lg { background: var(--card); border: 1px solid var(--border); border-radius: var(--radius-sm); padding: 28px; transition: border-color .2s; }
.info-card-lg:hover { border-color: var(--gold-bdr); }
.info-card-icon { width: 44px; height: 44px; display: flex; align-items: center; justify-content: center; margin-bottom: 16px; }
.info-card-icon svg { width: 28px; height: 28px; stroke: currentColor; fill: none; stroke-width: 1.6; }
.info-card-lg h3 { font-family: var(--font-display); font-size: 18px; font-weight: 400; margin-bottom: 10px; color: var(--white); }
.info-card-lg p { font-size: 13px; color: var(--muted); line-height: 1.7; }

/* Checkout summary field-group */
.field-group { margin-bottom: 16px; }
.checkout-form-title { font-family: var(--font-display); font-size: 22px; font-weight: 400; margin-bottom: 24px; }
.btn-row { display: flex; gap: 12px; }
.btn-outline-full { display: flex; align-items: center; justify-content: center; gap: 8px; padding: 13px 20px; border: 1px solid var(--border); border-radius: var(--radius-sm); font-size: 14px; font-weight: 600; color: var(--muted); transition: all .2s; }
.btn-outline-full:hover { border-color: var(--border2); color: var(--subtle); }
.step-connector { flex: 1; height: 2px; background: var(--border); }

/* Cart empty state */
.empty-cart { text-align: center; padding: 100px 0; }
.empty-icon { width: 80px; height: 80px; border-radius: 50%; background: var(--card); border: 1px solid var(--border); display: flex; align-items: center; justify-content: center; margin: 0 auto 20px; }
.empty-icon svg { width: 34px; height: 34px; stroke: var(--muted); fill: none; stroke-width: 1.5; }
.empty-cart > p { font-family: var(--font-display); font-size: 24px; font-weight: 400; margin-bottom: 20px; }

/* Responsive additions */
@media (max-width: 768px) {
  .contact-layout { grid-template-columns: 1fr; }
  .tab-nav { width: 100%; border-radius: var(--radius-sm); }
  .tab-btn { flex: 1; text-align: center; }
  .legal-content { padding: 40px 0; }
}
