/* MIL GRAU RP — Design Tokens */
:root {
  --bg-0: #050505;
  --bg-1: #0a0a0a;
  --bg-2: #111111;
  --bg-3: #1a1a1a;
  --bg-card: #141414;
  --border: #1f1f1f;
  --border-strong: #2a2a2a;

  --primary: #FF7A00;
  --primary-hot: #FF8F1F;
  --primary-hover: #FFA033;
  --primary-deep: #E65A00;
  --gold: #FFC107;
  --green-pix: #00C896;
  --green-soft: #0a3a2e;

  --text: #FFFFFF;
  --text-muted: #9CA3AF;
  --text-dim: #6B7280;

  --glow: 0 0 0 1px rgba(255, 122, 0, 0.3), 0 8px 32px -8px rgba(255, 122, 0, 0.4);
  --glow-strong: 0 0 0 1px rgba(255, 122, 0, 0.5), 0 12px 48px -8px rgba(255, 122, 0, 0.6);
  --shadow-card: 0 4px 16px rgba(0, 0, 0, 0.4);
  --shadow-card-hover: 0 12px 32px -4px rgba(255, 122, 0, 0.25), 0 4px 16px rgba(0, 0, 0, 0.6);

  --r-sm: 8px;
  --r-md: 12px;
  --r-lg: 16px;
  --r-xl: 20px;
  --r-2xl: 28px;

  --grid-gap: 20px;

  font-synthesis: none;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html, body {
  background: var(--bg-0);
  color: var(--text);
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  font-feature-settings: 'cv11', 'ss01', 'ss03';
  min-height: 100vh;
  overflow-x: hidden;
}

body {
  background: var(--bg-0);
  position: relative;
}

/* Cinematic city skyline backdrop — fixed, full viewport */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image:
    radial-gradient(ellipse 80% 40% at 50% 100%, rgba(255, 122, 0, 0.18) 0%, transparent 70%),
    url("lojavipmilgrau.png");
  background-size: cover, cover;
  background-position: center bottom, center center;
  background-repeat: no-repeat, no-repeat;
  pointer-events: none;
  z-index: 0;
  opacity: 0.2;
}

/* darken vignette over backdrop so cards stand out */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  background:
    radial-gradient(ellipse 100% 60% at 50% 0%, rgba(0,0,0,0.4) 0%, transparent 60%),
    radial-gradient(ellipse 100% 60% at 50% 100%, rgba(0,0,0,0.6) 0%, transparent 60%);
  pointer-events: none;
  z-index: 0;
}

button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }
input, textarea, select { font-family: inherit; }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }

/* ===== UTILITIES ===== */
.container { max-width: 1440px; margin: 0 auto; padding: 0 32px; position: relative; z-index: 1; }
.row { display: flex; align-items: center; }
.col { display: flex; flex-direction: column; }

/* ===== TOP BANNER ===== */
.top-banner {
  background: linear-gradient(90deg, var(--primary-deep) 0%, var(--primary) 50%, var(--primary-deep) 100%);
  color: white;
  font-size: 13px;
  font-weight: 500;
  text-align: center;
  padding: 9px 16px;
  letter-spacing: 0.01em;
  position: relative;
  overflow: hidden;
}
.top-banner::after {
  content: '';
  position: absolute; top: 0; left: -100%;
  width: 100%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.15), transparent);
  animation: shimmer 4s infinite;
}
.top-banner b { font-weight: 700; background: rgba(0,0,0,0.25); padding: 2px 8px; border-radius: 4px; margin: 0 4px; }
@keyframes shimmer { to { left: 200%; } }

/* ===== HEADER ===== */
.header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(5, 5, 5, 0.7);
  backdrop-filter: blur(16px) saturate(140%);
  -webkit-backdrop-filter: blur(16px) saturate(140%);
  border-bottom: 1px solid var(--border);
}
.header-main {
  display: flex; align-items: center; gap: 32px;
  padding: 16px 0;
  justify-content: space-between;
}
.logo {
  font-family: 'Inter', sans-serif;
  font-weight: 900;
  font-size: 22px;
  letter-spacing: -0.02em;
  display: flex; align-items: baseline; gap: 4px;
  position: relative;
}
.logo .mil { color: var(--text); }
.logo .grau { color: var(--text); position: relative; }
.logo .rp {
  color: var(--primary);
  font-size: 13px;
  font-weight: 800;
  background: rgba(255, 122, 0, 0.1);
  padding: 3px 7px;
  border-radius: 4px;
  margin-left: 6px;
  letter-spacing: 0.04em;
  text-shadow: 0 0 12px rgba(255, 122, 0, 0.6);
}
.logo .deg { color: var(--primary); margin-left: 1px; }

.search {
  flex: 1; max-width: 720px;
  display: flex; align-items: center; gap: 10px;
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 11px 18px;
  transition: all 200ms ease-out;
}
.search:focus-within {
  border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(255, 122, 0, 0.12);
}
.search svg { color: var(--text-dim); flex-shrink: 0; }
.search input {
  flex: 1; background: none; border: none; outline: none;
  color: var(--text); font-size: 14px;
}
.search input::placeholder { color: var(--text-dim); }
.search-clear {
  display: flex; align-items: center; justify-content: center;
  width: 22px; height: 22px;
  border-radius: 6px;
  background: rgba(255,255,255,0.06);
  color: var(--text-dim);
  border: none;
  cursor: pointer;
  flex-shrink: 0;
  transition: all 150ms;
}
.search-clear:hover { background: var(--primary); color: #fff; }

.header-actions { display: flex; align-items: center; gap: 12px; }
.icon-btn {
  width: 42px; height: 42px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 10px;
  background: var(--bg-2);
  border: 1px solid var(--border);
  color: var(--text-muted);
  transition: all 200ms ease-out;
}
.icon-btn:hover { color: var(--text); background: var(--bg-3); border-color: var(--border-strong); }

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 11px 18px;
  border-radius: 10px;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.01em;
  transition: all 200ms ease-out;
  white-space: nowrap;
}
.btn-ghost { background: var(--bg-2); border: 1px solid var(--border); color: var(--text); }
.btn-ghost:hover { background: var(--bg-3); border-color: var(--border-strong); }
.btn-primary {
  background: linear-gradient(180deg, var(--primary) 0%, var(--primary-deep) 100%);
  color: white;
  box-shadow: 0 4px 16px -4px rgba(255, 122, 0, 0.5), inset 0 1px 0 rgba(255,255,255,0.15);
}
.btn-primary:hover { transform: translateY(-1px); box-shadow: 0 8px 24px -4px rgba(255, 122, 0, 0.7), inset 0 1px 0 rgba(255,255,255,0.2); }
.btn-primary:active { transform: translateY(0); }
.btn-outline { background: transparent; border: 1px solid var(--border-strong); color: var(--text); }
.btn-outline:hover { border-color: var(--primary); color: var(--primary); }
.btn-lg { padding: 14px 22px; font-size: 15px; border-radius: 12px; }
.btn-block { width: 100%; }

.cart-btn {
  position: relative;
  background: linear-gradient(180deg, var(--primary) 0%, var(--primary-deep) 100%);
  color: white;
  padding: 11px 16px 11px 14px;
  border-radius: 10px;
  display: flex; align-items: center; gap: 8px;
  font-weight: 600; font-size: 14px;
  box-shadow: 0 4px 16px -4px rgba(255, 122, 0, 0.5);
  transition: all 200ms ease-out;
}
.cart-btn:hover { transform: translateY(-1px); box-shadow: 0 8px 24px -4px rgba(255, 122, 0, 0.7); }
.cart-badge {
  background: white; color: var(--primary);
  font-size: 11px; font-weight: 800;
  width: 20px; height: 20px;
  border-radius: 999px;
  display: flex; align-items: center; justify-content: center;
}

/* ===== CATEGORY NAV ===== */
.cat-nav {
  display: flex; gap: 4px;
  padding: 14px 0 16px;
  overflow-x: auto;
  scrollbar-width: none;
  justify-content: center;
  flex-wrap: wrap;
  border-top: 1px solid rgba(255,255,255,0.04);
}
.cat-nav::-webkit-scrollbar { display: none; }
.cat-pill {
  padding: 9px 18px;
  border-radius: 8px;
  font-size: 12px;
  font-weight: 700;
  color: var(--text-muted);
  background: transparent;
  border: 1px solid transparent;
  white-space: nowrap;
  transition: all 180ms ease-out;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.cat-pill:hover { color: var(--text); background: rgba(255,255,255,0.04); border-color: var(--border); }
.cat-pill.active {
  background: linear-gradient(180deg, var(--primary) 0%, var(--primary-deep) 100%);
  color: white;
  box-shadow: 0 4px 16px -4px rgba(255, 122, 0, 0.6);
  border-color: rgba(255,255,255,0.1);
}
.cat-pill-home {
  background: rgba(255,255,255,0.03);
  border-color: var(--border);
}
.cat-pill-home.active {
  background: #fff;
  color: #0a0a0a;
  border-color: #fff;
  box-shadow: 0 4px 16px -4px rgba(255,255,255,0.3);
}

/* ===== HERO ===== */
.hero {
  position: relative;
  margin-top: 32px;
  border-radius: var(--r-2xl);
  overflow: hidden;
  min-height: 460px;
  display: flex; align-items: center;
  isolation: isolate;
}
.hero-bg {
  position: absolute; inset: 0; z-index: -1;
  background:
    linear-gradient(90deg, rgba(5,5,5,0.95) 0%, rgba(5,5,5,0.7) 40%, rgba(5,5,5,0.4) 100%),
    radial-gradient(800px 400px at 80% 50%, rgba(255, 122, 0,0.4), transparent 60%),
    linear-gradient(135deg, #1a0e00 0%, #0a0a0a 50%, #050505 100%);
}
.hero-bg::before {
  content: ''; position: absolute; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 600'%3E%3Cg fill='%23000' opacity='0.7'%3E%3Cpolygon points='0,600 0,420 80,420 80,380 140,380 140,440 200,440 200,360 280,360 280,400 340,400 340,320 420,320 420,360 480,360 480,280 560,280 560,340 620,340 620,260 700,260 700,300 760,300 760,240 840,240 840,300 900,300 900,260 980,260 980,320 1060,320 1060,380 1140,380 1140,420 1200,420 1200,600'/%3E%3C/g%3E%3Cg fill='%23E63946' opacity='0.3'%3E%3Crect x='110' y='400' width='4' height='4'/%3E%3Crect x='160' y='420' width='4' height='4'/%3E%3Crect x='240' y='380' width='4' height='4'/%3E%3Crect x='310' y='340' width='4' height='4'/%3E%3Crect x='450' y='300' width='4' height='4'/%3E%3Crect x='590' y='280' width='4' height='4'/%3E%3Crect x='730' y='260' width='4' height='4'/%3E%3Crect x='870' y='280' width='4' height='4'/%3E%3Crect x='1020' y='340' width='4' height='4'/%3E%3C/g%3E%3Cg fill='%23ffffff' opacity='0.1'%3E%3Crect x='90' y='430' width='2' height='2'/%3E%3Crect x='180' y='400' width='2' height='2'/%3E%3Crect x='260' y='370' width='2' height='2'/%3E%3Crect x='400' y='330' width='2' height='2'/%3E%3Crect x='540' y='300' width='2' height='2'/%3E%3Crect x='680' y='280' width='2' height='2'/%3E%3Crect x='820' y='260' width='2' height='2'/%3E%3Crect x='960' y='290' width='2' height='2'/%3E%3C/g%3E%3C/svg%3E");
  background-size: cover;
  background-position: center bottom;
  opacity: 0.8;
}
.hero-bg::after {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(circle at 70% 60%, rgba(255, 122, 0,0.25), transparent 50%);
  mix-blend-mode: screen;
}
.hero-inner { padding: 60px 56px; max-width: 720px; position: relative; }
.hero-tag {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 6px 12px;
  background: rgba(255, 122, 0, 0.15);
  border: 1px solid rgba(255, 122, 0, 0.4);
  border-radius: 999px;
  color: var(--primary);
  font-size: 12px; font-weight: 700;
  letter-spacing: 0.08em;
  margin-bottom: 20px;
}
.hero-tag::before { content: ''; width: 6px; height: 6px; background: var(--primary); border-radius: 999px; box-shadow: 0 0 8px var(--primary); animation: pulse 2s infinite; }
@keyframes pulse { 50% { opacity: 0.4; } }

.hero-title {
  font-size: clamp(40px, 5vw, 68px);
  font-weight: 900;
  letter-spacing: -0.03em;
  line-height: 0.95;
  margin-bottom: 20px;
}
.hero-title .accent { background: linear-gradient(180deg, var(--primary) 0%, var(--primary-deep) 100%); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; display: inline-block; }
.hero-sub {
  font-size: 17px;
  color: var(--text-muted);
  max-width: 480px;
  line-height: 1.6;
  margin-bottom: 32px;
}
.hero-cta { display: flex; gap: 12px; flex-wrap: wrap; }

/* ===== SECTIONS ===== */
.section { padding: 64px 0 32px; }
.section-head {
  display: flex; align-items: end; justify-content: space-between;
  margin-bottom: 32px; gap: 24px;
}
.section-head .label { font-size: 12px; font-weight: 700; color: var(--primary); letter-spacing: 0.15em; margin-bottom: 8px; }
.section-head h2 {
  font-size: 32px; font-weight: 800; letter-spacing: -0.02em; line-height: 1.1;
}
.section-head .sub { color: var(--text-muted); font-size: 15px; margin-top: 6px; max-width: 520px; }
.section-head a.see-all {
  color: var(--text-muted); font-size: 13px; font-weight: 600;
  display: inline-flex; align-items: center; gap: 6px;
  padding: 8px 14px; border-radius: 999px;
  border: 1px solid var(--border);
  transition: all 200ms;
}
.section-head a.see-all:hover { color: var(--text); border-color: var(--primary); background: rgba(255, 122, 0,0.1); }

/* ===== PASSE LIVRE CARDS ===== */
.passe-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.passe-card {
  position: relative;
  border-radius: var(--r-xl);
  padding: 28px;
  overflow: hidden;
  display: flex; flex-direction: column; gap: 20px;
  transition: all 300ms ease-out;
  isolation: isolate;
  min-height: 440px;
  cursor: pointer;
}
.passe-card::before {
  content: ''; position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(135deg, var(--from, #1a0e00) 0%, var(--to, #0a0a0a) 100%);
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: var(--r-xl);
}
.passe-card::after {
  content: ''; position: absolute; inset: 0; z-index: -1;
  background: radial-gradient(circle at 70% 0%, rgba(255, 122, 0,0.3), transparent 50%);
  opacity: 0.6;
  border-radius: var(--r-xl);
}
.passe-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-card-hover); }
.passe-card:hover::after { opacity: 1; }
.passe-tier {
  position: absolute; top: 24px; right: 24px;
  display: inline-flex; align-items: center; gap: 6px;
  padding: 5px 10px;
  border-radius: 999px;
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.08em;
  background: rgba(212, 175, 55, 0.15);
  border: 1px solid rgba(212, 175, 55, 0.4);
  color: var(--gold);
}
.passe-tier.tier-1 { background: rgba(156, 163, 175, 0.15); border-color: rgba(156, 163, 175, 0.4); color: var(--text-muted); }
.passe-tier.tier-3 { background: linear-gradient(180deg, rgba(212,175,55,0.3), rgba(212,175,55,0.1)); color: var(--gold); border-color: var(--gold); box-shadow: 0 0 16px rgba(212,175,55,0.3); }
.passe-icon {
  width: 64px; height: 64px;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-deep) 100%);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 8px 24px -4px rgba(255, 122, 0,0.5);
  margin-bottom: 4px;
}
.passe-card h3 { font-size: 22px; font-weight: 800; letter-spacing: -0.01em; }
.passe-card .desc { color: var(--text-muted); font-size: 14px; line-height: 1.5; flex: 1; }
.passe-features { display: flex; flex-direction: column; gap: 8px; }
.passe-feature { display: flex; align-items: center; gap: 8px; font-size: 13px; color: var(--text-muted); }
.passe-feature svg { color: var(--primary); flex-shrink: 0; }

.price-block { display: flex; flex-direction: column; gap: 4px; }
.price-old { color: var(--text-dim); font-size: 13px; text-decoration: line-through; }
.price-now { font-size: 32px; font-weight: 900; letter-spacing: -0.02em; line-height: 1; font-feature-settings: 'tnum'; }
.price-pix { display: flex; align-items: center; gap: 6px; color: var(--green-pix); font-size: 12px; font-weight: 600; }
.price-pix svg { width: 14px; height: 14px; }

/* ===== PRODUCT GRID ===== */
.product-grid {
  display: grid;
  grid-template-columns: repeat(var(--cols, 4), 1fr);
  gap: var(--grid-gap);
}
.product-card {
  position: relative;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  overflow: hidden;
  transition: all 300ms ease-out;
  display: flex; flex-direction: column;
  cursor: pointer;
  animation: fadeUp 500ms ease-out backwards;
}
@keyframes fadeUp { from { opacity: 0; transform: translateY(16px); } }
.product-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 122, 0,0.5);
  box-shadow: var(--shadow-card-hover);
}
.product-thumb {
  aspect-ratio: 4 / 3;
  position: relative;
  overflow: hidden;
  background: var(--bg-2);
  display: flex; align-items: center; justify-content: center;
}
.product-thumb-bg {
  position: absolute; inset: 0;
  background: var(--thumb-bg, linear-gradient(135deg, #1a1a1a, #0a0a0a));
  transition: transform 400ms ease-out;
}
.product-card:hover .product-thumb-bg { transform: scale(1.06); }
.product-thumb-icon {
  position: relative;
  width: 88px; height: 88px;
  border-radius: 18px;
  background: rgba(0,0,0,0.4);
  backdrop-filter: blur(8px);
  display: flex; align-items: center; justify-content: center;
  color: white;
  box-shadow: 0 8px 24px rgba(0,0,0,0.4), inset 0 1px 0 rgba(255,255,255,0.15);
}
.product-thumb-icon svg { width: 44px; height: 44px; }
.product-badges { position: absolute; top: 12px; left: 12px; display: flex; flex-direction: column; gap: 6px; z-index: 2; }
.product-badge {
  display: inline-flex; align-items: center; gap: 4px;
  padding: 4px 8px;
  border-radius: 6px;
  font-size: 10px; font-weight: 700;
  letter-spacing: 0.05em;
  backdrop-filter: blur(8px);
}
.badge-stock { background: rgba(0,200,150,0.2); color: var(--green-pix); border: 1px solid rgba(0,200,150,0.3); }
.badge-discount { background: var(--primary); color: white; box-shadow: 0 2px 8px rgba(255, 122, 0,0.4); }
.badge-new { background: rgba(212,175,55,0.2); color: var(--gold); border: 1px solid rgba(212,175,55,0.3); }
.badge-hot { background: rgba(0,0,0,0.5); color: white; border: 1px solid rgba(255,255,255,0.1); }

.bestseller {
  position: absolute; top: 14px; right: -34px;
  background: linear-gradient(90deg, var(--gold) 0%, #b8941e 100%);
  color: #1a1a1a;
  font-size: 10px; font-weight: 800;
  padding: 4px 40px;
  transform: rotate(35deg);
  letter-spacing: 0.1em;
  box-shadow: 0 4px 12px rgba(0,0,0,0.4);
  z-index: 3;
}

.product-info { padding: 16px; display: flex; flex-direction: column; gap: 10px; flex: 1; }
.product-cat { font-size: 10px; font-weight: 700; color: var(--primary); letter-spacing: 0.12em; }
.product-name { font-size: 15px; font-weight: 700; line-height: 1.3; letter-spacing: -0.01em; }
.product-price { display: flex; align-items: baseline; gap: 8px; margin-top: auto; }
.product-price .price-now { font-size: 22px; }
.product-price .price-old { font-size: 12px; }
.product-pix { font-size: 11px; }
.product-actions { display: flex; gap: 8px; margin-top: 8px; }
.product-actions .btn { flex: 1; padding: 9px 12px; font-size: 13px; }
.icon-cart-btn {
  width: 38px; height: 38px;
  border-radius: 8px;
  background: var(--bg-2); border: 1px solid var(--border);
  color: var(--text-muted);
  display: flex; align-items: center; justify-content: center;
  flex: 0 0 auto !important;
  transition: all 200ms;
}
.icon-cart-btn:hover { background: var(--primary); border-color: var(--primary); color: white; }

.product-thumb,.product-thumb-bg{aspect-ratio:1/1!important;width:100%;height:auto!important;position:relative;overflow:hidden}
.product-thumb-img{position:absolute;inset:0;width:100%;height:100%;object-fit:cover;display:block}



/* ===== STATS ===== */
.stats {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px;
  padding: 32px;
  background: linear-gradient(180deg, rgba(255, 122, 0,0.05) 0%, transparent 100%);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  position: relative; overflow: hidden;
}
.stats::before {
  content: ''; position: absolute; inset: 0; z-index: 0;
  background: radial-gradient(600px 200px at 50% 0%, rgba(255, 122, 0,0.2), transparent 70%);
  pointer-events: none;
}
.stat { text-align: center; position: relative; z-index: 1; padding: 16px; }
.stat-num {
  font-size: 44px; font-weight: 900;
  background: linear-gradient(180deg, #fff 0%, #999 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
  letter-spacing: -0.03em; line-height: 1;
  font-feature-settings: 'tnum';
}
.stat-num.accent { background: linear-gradient(180deg, var(--primary) 0%, var(--primary-deep) 100%); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.stat-label { font-size: 12px; font-weight: 600; color: var(--text-muted); margin-top: 8px; letter-spacing: 0.08em; text-transform: uppercase; }

main { position: relative; z-index: 1; }

/* ===== FOOTER ===== */
.footer {
  margin-top: 80px;
  border-top: 1px solid var(--border);
  background: linear-gradient(180deg, rgba(5,5,5,0.85) 0%, rgba(0,0,0,0.95) 100%);
  position: relative; z-index: 1;
  background: linear-gradient(180deg, transparent, rgba(255, 122, 0,0.03));
  padding: 56px 0 24px;
}
.footer-grid {
  display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 48px;
  margin-bottom: 48px;
}
.footer h4 { font-size: 13px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 16px; color: var(--text); }
.footer ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer ul a { color: var(--text-muted); font-size: 14px; transition: color 200ms; }
.footer ul a:hover { color: var(--primary); }
.footer .desc { color: var(--text-muted); font-size: 14px; line-height: 1.6; margin: 16px 0; max-width: 360px; }
.socials { display: flex; gap: 10px; margin-top: 16px; }
.social {
  width: 40px; height: 40px;
  border-radius: 999px;
  background: var(--bg-2); border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  color: var(--text-muted);
  transition: all 200ms;
}
.social:hover { background: var(--primary); border-color: var(--primary); color: white; transform: translateY(-2px); }

.footer-bottom {
  border-top: 1px solid var(--border); padding-top: 24px;
  display: flex; justify-content: space-between; align-items: center;
  color: var(--text-dim); font-size: 12px;
  flex-wrap: wrap; gap: 12px;
}

/* ===== CHAT WIDGET (Crisp-style) ===== */
.chat-fab-bubble {
  position: fixed;
  bottom: 24px; right: 24px;
  width: 60px; height: 60px;
  border-radius: 999px;
  background: linear-gradient(180deg, var(--primary) 0%, var(--primary-deep) 100%);
  color: white;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 8px 32px -4px rgba(255, 122, 0,0.6), 0 0 0 0 rgba(255, 122, 0,0.4);
  z-index: 90;
  transition: transform 200ms;
  animation: chatPulse 2.4s infinite;
  cursor: pointer;
}
@keyframes chatPulse {
  0%, 100% { box-shadow: 0 8px 32px -4px rgba(255, 122, 0,0.6), 0 0 0 0 rgba(255, 122, 0,0.5); }
  50% { box-shadow: 0 8px 32px -4px rgba(255, 122, 0,0.6), 0 0 0 16px rgba(255, 122, 0,0); }
}
.chat-fab-bubble:hover { transform: scale(1.06); }
.chat-unread {
  position: absolute; top: -4px; right: -4px;
  min-width: 20px; height: 20px; border-radius: 999px;
  background: #fff; color: var(--primary);
  font-size: 11px; font-weight: 800;
  display: flex; align-items: center; justify-content: center;
  padding: 0 6px;
  border: 2px solid var(--primary);
}

.chat-widget {
  position: fixed;
  bottom: 20px; right: 20px;
  width: 380px; max-height: calc(100vh - 40px);
  height: 620px;
  background: #0e0e0e;
  border-radius: 18px;
  box-shadow: 0 20px 60px -10px rgba(0,0,0,0.7), 0 0 0 1px rgba(255,255,255,0.05);
  z-index: 100;
  display: flex; flex-direction: column;
  overflow: hidden;
  animation: chatRise 240ms cubic-bezier(.2,.8,.2,1);
}
@keyframes chatRise {
  from { opacity: 0; transform: translateY(20px) scale(0.96); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

.chat-header {
  position: relative;
  background: linear-gradient(135deg, var(--primary-deep) 0%, var(--primary) 60%, #D45200 100%);
  color: #fff;
  padding: 18px 20px 22px;
  flex-shrink: 0;
}
.chat-header::before {
  content: ''; position: absolute; inset: 0;
  background-image:
    radial-gradient(circle at 20% 30%, rgba(255,255,255,0.08) 0%, transparent 40%),
    radial-gradient(circle at 80% 70%, rgba(0,0,0,0.2) 0%, transparent 50%);
  pointer-events: none;
}
.chat-collapse {
  position: absolute; top: 12px; right: 12px;
  width: 28px; height: 28px; border-radius: 8px;
  background: rgba(0,0,0,0.2); color: #fff;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; transition: background 150ms;
  z-index: 2;
}
.chat-collapse:hover { background: rgba(0,0,0,0.4); }
.chat-tabbar {
  position: relative; z-index: 1;
  display: flex; gap: 8px; margin-bottom: 16px;
}
.chat-tab {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 6px 12px; border-radius: 999px;
  font-size: 12px; font-weight: 700;
  background: rgba(0,0,0,0.25);
  color: rgba(255,255,255,0.7);
}
.chat-tab.active { background: rgba(255,255,255,0.2); color: #fff; }
.chat-avatars {
  display: flex; gap: -8px; margin-bottom: 12px;
  position: relative; z-index: 1;
}
.chat-avatar-circle {
  width: 36px; height: 36px; border-radius: 999px;
  border: 2px solid var(--primary);
  background: rgba(255,255,255,0.15);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.9);
  margin-right: -8px;
}
.chat-avatar-circle:nth-child(1) { z-index: 3; }
.chat-avatar-circle:nth-child(2) { z-index: 2; }
.chat-avatar-circle:nth-child(3) { z-index: 1; }
.chat-headline {
  position: relative; z-index: 1;
  font-size: 18px; font-weight: 800; letter-spacing: -0.01em;
  margin-bottom: 4px;
}
.chat-status {
  position: relative; z-index: 1;
  font-size: 12px; color: rgba(255,255,255,0.8);
  display: flex; align-items: center; gap: 6px;
}
.chat-online-dot {
  width: 8px; height: 8px; border-radius: 999px;
  background: #4ade80;
  box-shadow: 0 0 0 0 rgba(74,222,128,0.6);
  animation: dotPulse 2s infinite;
}
@keyframes dotPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(74,222,128,0.6); }
  50% { box-shadow: 0 0 0 6px rgba(74,222,128,0); }
}

.chat-body {
  flex: 1;
  overflow-y: auto;
  padding: 16px 16px 8px;
  background: #0e0e0e;
  display: flex; flex-direction: column; gap: 10px;
}
.chat-body::-webkit-scrollbar { width: 6px; }
.chat-body::-webkit-scrollbar-thumb { background: #222; border-radius: 999px; }

.chat-day-divider {
  display: flex; align-items: center; gap: 12px;
  margin: 8px 0 4px;
}
.chat-day-divider::before, .chat-day-divider::after {
  content: ''; flex: 1; height: 1px;
  background: rgba(255,255,255,0.06);
}
.chat-day-divider span {
  font-size: 10px; color: var(--text-muted);
  text-transform: capitalize; letter-spacing: 0.05em;
}

.chat-bot-row {
  display: flex; gap: 8px; align-items: flex-end;
  max-width: 85%;
}
.chat-bot-avatar {
  width: 28px; height: 28px; border-radius: 999px;
  background: var(--primary);
  display: flex; align-items: center; justify-content: center;
  color: #fff;
  flex-shrink: 0;
}
.chat-user-row {
  display: flex; justify-content: flex-end;
  max-width: 85%; margin-left: auto;
}
.chat-bubble {
  padding: 10px 14px;
  border-radius: 16px;
  font-size: 13.5px; line-height: 1.5;
  word-wrap: break-word;
}
.chat-bubble.bot {
  background: #1a1a1a;
  color: var(--text);
  border-bottom-left-radius: 4px;
}
.chat-bubble.bot b { color: #fff; }
.chat-bubble.user {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-deep) 100%);
  color: #fff;
  border-bottom-right-radius: 4px;
  box-shadow: 0 2px 8px -2px rgba(255, 122, 0,0.4);
}

.chat-typing {
  display: flex; gap: 4px; padding: 14px 16px;
}
.chat-typing span {
  width: 6px; height: 6px; border-radius: 999px;
  background: var(--text-muted);
  animation: typingDot 1.2s infinite;
}
.chat-typing span:nth-child(2) { animation-delay: 0.2s; }
.chat-typing span:nth-child(3) { animation-delay: 0.4s; }
@keyframes typingDot {
  0%, 60%, 100% { opacity: 0.3; transform: translateY(0); }
  30% { opacity: 1; transform: translateY(-3px); }
}

.chat-quickreplies {
  display: flex; gap: 6px; flex-wrap: wrap;
  margin-top: 8px;
}
.chat-chip {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 8px 14px; border-radius: 999px;
  background: transparent;
  border: 1.5px solid var(--primary);
  color: var(--primary);
  font-size: 12px; font-weight: 700;
  cursor: pointer; transition: all 150ms;
}
.chat-chip:hover {
  background: var(--primary);
  color: #fff;
}

.chat-phone-form {
  display: flex; gap: 6px; margin-top: 8px;
}
.chat-phone-form input {
  flex: 1; padding: 10px 12px;
  background: #1a1a1a; border: 1px solid #2a2a2a;
  border-radius: 10px;
  color: var(--text); font-size: 13px;
  outline: none; transition: border 150ms;
}
.chat-phone-form input:focus { border-color: var(--primary); }
.chat-phone-form button {
  padding: 0 16px; border-radius: 10px;
  background: var(--primary); color: #fff;
  font-size: 12px; font-weight: 700;
  cursor: pointer; transition: background 150ms;
}
.chat-phone-form button:hover { background: var(--primary-deep); }

.chat-foot {
  display: flex; gap: 8px; align-items: flex-end;
  padding: 12px 14px 8px;
  background: #0e0e0e;
  border-top: 1px solid rgba(255,255,255,0.06);
  flex-shrink: 0;
}
.chat-foot textarea {
  flex: 1; resize: none;
  padding: 10px 12px;
  background: #1a1a1a; border: 1px solid #2a2a2a;
  border-radius: 12px;
  color: var(--text); font-size: 13.5px; line-height: 1.4;
  font-family: inherit;
  outline: none; transition: border 150ms;
  min-height: 38px; max-height: 100px;
}
.chat-foot textarea:focus { border-color: var(--primary); }
.chat-send {
  width: 38px; height: 38px; border-radius: 12px;
  background: var(--primary); color: #fff;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; transition: all 150ms;
  flex-shrink: 0;
}
.chat-send:hover:not(:disabled) { background: var(--primary-deep); transform: translateY(-1px); }
.chat-send:disabled { opacity: 0.4; cursor: not-allowed; }
.chat-brand {
  text-align: center;
  font-size: 11px; color: var(--text-muted);
  padding: 0 0 10px;
  background: #0e0e0e;
  flex-shrink: 0;
}

@media (max-width: 480px) {
  .chat-widget {
    width: calc(100vw - 24px);
    right: 12px; bottom: 12px;
    height: calc(100vh - 24px);
  }
}

/* ===== TOAST ===== */
.toast-stack {
  position: fixed;
  top: 24px; right: 24px;
  z-index: 200;
  display: flex; flex-direction: column; gap: 8px;
  pointer-events: none;
}
.toast {
  background: var(--bg-2);
  border: 1px solid var(--border-strong);
  border-left: 3px solid var(--green-pix);
  border-radius: var(--r-md);
  padding: 12px 16px;
  display: flex; align-items: center; gap: 12px;
  min-width: 280px;
  box-shadow: 0 12px 40px rgba(0,0,0,0.6);
  animation: toastIn 300ms ease-out;
  pointer-events: auto;
}
@keyframes toastIn { from { transform: translateX(120%); opacity: 0; } }
.toast.exit { animation: toastOut 200ms ease-in forwards; }
@keyframes toastOut { to { transform: translateX(120%); opacity: 0; } }
.toast-icon { width: 32px; height: 32px; border-radius: 8px; background: rgba(0,200,150,0.2); color: var(--green-pix); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.toast-content { flex: 1; }
.toast-title { font-size: 13px; font-weight: 700; }
.toast-msg { font-size: 12px; color: var(--text-muted); }

/* ===== CART DRAWER ===== */
.drawer-overlay {
  position: fixed; inset: 0; z-index: 150;
  background: rgba(0,0,0,0.6);
  backdrop-filter: blur(8px);
  animation: fadeIn 200ms;
}
@keyframes fadeIn { from { opacity: 0; } }
.drawer {
  position: fixed; top: 0; right: 0; bottom: 0;
  width: 440px; max-width: 100vw;
  background: var(--bg-1);
  border-left: 1px solid var(--border);
  z-index: 151;
  display: flex; flex-direction: column;
  animation: drawerIn 300ms cubic-bezier(0.2, 0.8, 0.2, 1);
}
@keyframes drawerIn { from { transform: translateX(100%); } }
.drawer-head {
  padding: 24px;
  border-bottom: 1px solid var(--border);
  display: flex; align-items: center; justify-content: space-between;
}
.drawer-head h3 { font-size: 18px; font-weight: 800; }
.drawer-body { flex: 1; overflow-y: auto; padding: 16px 24px; }
.drawer-foot { padding: 24px; border-top: 1px solid var(--border); background: var(--bg-2); }

.cart-item {
  display: grid;
  grid-template-columns: 56px 1fr auto;
  gap: 14px;
  padding: 16px 0;
  border-bottom: 1px solid var(--border);
  align-items: center;
}
.cart-item:last-child { border-bottom: none; }
.cart-item-thumb {
  width: 56px; height: 56px; border-radius: 12px;
  background: var(--bg-3);
  display: flex; align-items: center; justify-content: center;
  color: white;
  border: 1px solid rgba(255,255,255,0.06);
  position: relative;
  overflow: hidden;
}
.cart-item-thumb::after {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(circle at 30% 20%, rgba(255,255,255,0.08), transparent 60%);
  pointer-events: none;
}
.cart-item-thumb-img { width: 100%; height: 100%; object-fit: cover; display: block; }
.cart-item-info { display: flex; flex-direction: column; gap: 4px; min-width: 0; }
.cart-item-name {
  font-size: 14px; font-weight: 700; line-height: 1.25; color: var(--text);
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.cart-item-price { font-size: 14px; font-weight: 800; color: var(--primary); font-feature-settings: 'tnum'; letter-spacing: -0.01em; }

.cart-item-controls {
  display: flex; align-items: center; gap: 8px;
}
.qty {
  display: inline-flex; align-items: center;
  background: var(--bg-2); border: 1px solid var(--border);
  border-radius: 999px; overflow: hidden;
}
.qty button { width: 28px; height: 28px; color: var(--text-muted); transition: all 150ms; display:flex; align-items:center; justify-content:center; }
.qty button:hover { background: var(--bg-3); color: var(--primary); }
.qty-val { min-width: 24px; text-align: center; font-size: 13px; font-weight: 700; font-feature-settings: 'tnum'; }

.qty-inline { background: var(--bg-2); border-radius: 999px; }

.cart-remove {
  width: 30px; height: 30px;
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: 8px;
  background: rgba(220, 38, 38, 0.12);
  color: #ef4444;
  border: 1px solid rgba(220, 38, 38, 0.25);
  transition: all 160ms;
}
.cart-remove:hover {
  background: #dc2626; color: #fff;
  border-color: #dc2626;
  transform: translateY(-1px);
}

/* legacy stacked actions (kept for compat) */
.cart-item-actions { display: flex; flex-direction: column; align-items: end; gap: 8px; }
.remove-btn { color: var(--text-dim); font-size: 11px; }
.remove-btn:hover { color: var(--primary); }

.cart-total { display: flex; justify-content: space-between; align-items: baseline; margin-bottom: 16px; }
.cart-total .label { font-size: 13px; color: var(--text-muted); }
.cart-total .val { font-size: 28px; font-weight: 900; letter-spacing: -0.02em; font-feature-settings: 'tnum'; }

.empty-cart { text-align: center; padding: 64px 24px; color: var(--text-muted); }
.empty-cart svg { margin: 0 auto 16px; opacity: 0.4; }
.empty-cart h4 { color: var(--text); font-size: 16px; font-weight: 700; margin-bottom: 6px; }

/* ===== MODAL ===== */
.modal-overlay {
  position: fixed; inset: 0; z-index: 160;
  background: rgba(0,0,0,0.7);
  backdrop-filter: blur(8px);
  display: flex; align-items: center; justify-content: center;
  padding: 24px;
  animation: fadeIn 200ms;
}
.modal {
  background: var(--bg-1);
  border: 1px solid var(--border-strong);
  border-radius: var(--r-xl);
  width: 100%; max-width: 480px;
  overflow: hidden;
  animation: modalIn 300ms cubic-bezier(0.2,0.8,0.2,1);
  box-shadow: 0 24px 80px rgba(0,0,0,0.8), 0 0 0 1px rgba(255, 122, 0,0.2);
}
@keyframes modalIn { from { transform: scale(0.95) translateY(12px); opacity: 0; } }
.modal-head { padding: 24px; border-bottom: 1px solid var(--border); display: flex; justify-content: space-between; align-items: center; }
.modal-head h3 { font-size: 18px; font-weight: 800; }
.modal-body { padding: 24px; }

/* ===== PAGE TRANSITIONS ===== */
.page { animation: pageIn 400ms ease-out; }
@keyframes pageIn { from { opacity: 0; transform: translateY(8px); } }

/* ===== BREADCRUMB ===== */
.breadcrumb {
  display: flex; align-items: center; gap: 8px;
  font-size: 13px; color: var(--text-dim);
  margin: 24px 0 16px;
}
.breadcrumb a { color: var(--text-muted); transition: color 200ms; }
.breadcrumb a:hover { color: var(--primary); }
.breadcrumb .sep { color: var(--text-dim); }
.breadcrumb .current { color: var(--text); font-weight: 600; }

/* ===== CATEGORY HEADER ===== */
.cat-header {
  padding: 32px 0 40px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 32px;
}
.cat-header h1 {
  font-size: clamp(36px, 4vw, 52px);
  font-weight: 900;
  letter-spacing: -0.03em;
  line-height: 1;
  margin-bottom: 12px;
}
.cat-header h1 .accent {
  background: linear-gradient(180deg, var(--primary) 0%, var(--primary-deep) 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.cat-header p { color: var(--text-muted); font-size: 16px; max-width: 600px; }

/* ===== FILTERS ===== */
.cat-layout { display: grid; grid-template-columns: 260px 1fr; gap: 32px; }
.filters {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--r-lg); padding: 24px;
  position: sticky; top: 180px; align-self: start;
}
.filter-group { margin-bottom: 24px; }
.filter-group:last-child { margin-bottom: 0; }
.filter-group h5 { font-size: 13px; font-weight: 700; letter-spacing: 0.05em; margin-bottom: 12px; color: var(--text); }
.filter-opt {
  display: flex; align-items: center; gap: 10px;
  padding: 8px 0; font-size: 13px; color: var(--text-muted);
  cursor: pointer; transition: color 200ms;
}
.filter-opt:hover { color: var(--text); }
.filter-opt input { accent-color: var(--primary); }
.filter-opt .count { margin-left: auto; font-size: 11px; color: var(--text-dim); }
.range-inputs { display: flex; gap: 8px; align-items: center; }
.range-inputs input {
  width: 100%; padding: 8px 10px;
  background: var(--bg-2); border: 1px solid var(--border);
  border-radius: 8px; color: var(--text); font-size: 13px;
}

/* ===== PRODUCT PAGE ===== */
.product-layout { display: grid; grid-template-columns: 1.1fr 1fr; gap: 48px; margin-bottom: 48px; }
.product-gallery {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--r-xl); aspect-ratio: 1 / 1;
  position: relative; overflow: hidden;
}
.product-gallery .product-thumb-bg { transform: scale(1); }
.product-gallery:hover .product-thumb-bg { transform: scale(1.1); }
.product-gallery .product-thumb-icon { width: 140px; height: 140px; border-radius: 28px; }
.product-gallery .product-thumb-icon svg { width: 70px; height: 70px; }
.product-gallery-thumbs { display: flex; gap: 8px; margin-top: 12px; }
.gallery-thumb { width: 72px; height: 72px; border-radius: 10px; background: var(--bg-2); border: 1px solid var(--border); display: flex; align-items: center; justify-content: center; cursor: pointer; transition: border-color 200ms; overflow: hidden; position: relative; }
.gallery-thumb:hover { border-color: var(--primary); }
.gallery-thumb.active { border-color: var(--primary); }
.gallery-thumb-img { width: 100%; height: 100%; object-fit: cover; display: block; }


.product-detail { display: flex; flex-direction: column; gap: 16px; }
.product-detail .breadcrumb { margin: 0 0 8px; }
.product-detail h1 { font-size: 32px; font-weight: 900; letter-spacing: -0.02em; line-height: 1.1; }
.product-meta-row { display: flex; flex-wrap: wrap; gap: 8px; align-items: center; }
.meta-pill {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 5px 10px; border-radius: 999px;
  font-size: 11px; font-weight: 700; letter-spacing: 0.05em;
}
.meta-pill.stock { background: rgba(0,200,150,0.15); color: var(--green-pix); border: 1px solid rgba(0,200,150,0.3); }
.meta-pill.discount { background: var(--primary); color: white; }

.price-big { display: flex; flex-direction: column; gap: 4px; padding: 16px 0; }
.price-big .price-old { font-size: 16px; }
.price-big .price-now { font-size: 44px; font-weight: 900; letter-spacing: -0.03em; }
.price-big .price-pix { font-size: 14px; }
.price-big .price-pix b { color: var(--green-pix); font-weight: 800; }

.trust-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.trust-card {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--r-md); padding: 14px;
  display: flex; flex-direction: column; gap: 8px;
}
.trust-card svg { color: var(--primary); }
.trust-card .ttl { font-size: 12px; font-weight: 700; }
.trust-card .sub { font-size: 11px; color: var(--text-muted); line-height: 1.4; }

.payment-logos { display: flex; gap: 12px; align-items: center; padding: 12px 0; }
.pay-logo { padding: 8px 12px; background: var(--bg-2); border: 1px solid var(--border); border-radius: 8px; font-size: 11px; font-weight: 700; color: var(--text-muted); }
.pay-logo.pix { color: var(--green-pix); border-color: rgba(0,200,150,0.3); }

.product-actions-big { display: flex; gap: 12px; margin-top: 8px; }

.product-desc {
  margin-top: 24px;
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--r-xl); padding: 32px;
}
.product-desc h3 { font-size: 20px; font-weight: 800; margin-bottom: 16px; }
.product-desc p { color: var(--text-muted); font-size: 15px; line-height: 1.7; margin-bottom: 12px; }
.product-desc ul { list-style: none; padding: 0; }
.product-desc li { color: var(--text-muted); font-size: 15px; line-height: 1.7; padding: 6px 0; padding-left: 28px; position: relative; }
.product-desc li::before {
  content: ''; position: absolute; left: 0; top: 13px;
  width: 18px; height: 18px;
  background: rgba(255, 122, 0,0.15); border-radius: 999px;
}
.product-desc li::after {
  content: ''; position: absolute; left: 6px; top: 18px;
  width: 6px; height: 6px;
  background: var(--primary); border-radius: 999px;
}

.product-thumb-img{position:absolute;inset:0;width:100%;height:100%;object-fit:cover;display:block}

/* ===== CHECKOUT ===== */
.checkout-layout { display: grid; grid-template-columns: 1.4fr 1fr; gap: 32px; align-items: start; }
.checkout-section {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--r-xl); padding: 28px;
  margin-bottom: 16px;
}
.checkout-section h3 {
  font-size: 16px; font-weight: 800; margin-bottom: 16px;
  display: flex; align-items: center; gap: 10px;
}
.checkout-section h3 .num {
  width: 26px; height: 26px;
  background: var(--primary); color: white;
  border-radius: 999px;
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 12px; font-weight: 800;
}

.payment-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; }
.payment-opt {
  background: var(--bg-2); border: 1px solid var(--border);
  border-radius: var(--r-md); padding: 16px;
  display: flex; flex-direction: column; gap: 8px; align-items: start;
  cursor: pointer; transition: all 200ms;
  position: relative;
}
.payment-opt.active {
  border-color: var(--primary); background: rgba(255, 122, 0,0.06);
  box-shadow: 0 0 0 1px var(--primary), 0 4px 16px -4px rgba(255, 122, 0,0.3);
}
.payment-opt .ttl { font-size: 13px; font-weight: 700; }
.payment-opt .sub { font-size: 11px; color: var(--text-muted); }
.payment-opt .check {
  position: absolute; top: 12px; right: 12px;
  width: 18px; height: 18px; border-radius: 999px;
  border: 2px solid var(--border-strong);
  display: flex; align-items: center; justify-content: center;
}
.payment-opt.active .check { border-color: var(--primary); background: var(--primary); }
.payment-opt.active .check::after { content: ''; width: 6px; height: 6px; background: white; border-radius: 999px; }

.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.form-grid.full { grid-template-columns: 1fr; }
.field { display: flex; flex-direction: column; gap: 6px; }
.field label { font-size: 12px; font-weight: 600; color: var(--text-muted); }
.field input, .field select {
  background: var(--bg-2); border: 1px solid var(--border);
  border-radius: 10px; padding: 12px 14px;
  color: var(--text); font-size: 14px;
  transition: border-color 200ms;
}
.field input:focus, .field select:focus { outline: none; border-color: var(--primary); }

.discord-btn {
  display: flex; align-items: center; gap: 10px;
  background: #5865F2; color: white;
  padding: 12px 16px; border-radius: 10px;
  font-weight: 700; font-size: 13px;
  width: 100%;
  transition: opacity 200ms;
}
.discord-btn:hover { opacity: 0.9; }

.summary { position: sticky; top: 180px; }
.summary-row { display: flex; justify-content: space-between; padding: 10px 0; font-size: 14px; }
.summary-row.muted { color: var(--text-muted); }
.summary-row.discount { color: var(--green-pix); }
.summary-row.total { border-top: 1px solid var(--border); padding-top: 16px; margin-top: 8px; font-size: 18px; font-weight: 800; }
.summary-row.total .val { font-size: 24px; color: var(--primary); }

.coupon { display: flex; gap: 8px; margin: 12px 0 16px; }
.coupon input {
  flex: 1; background: var(--bg-2); border: 1px solid var(--border);
  border-radius: 10px; padding: 10px 12px; color: var(--text); font-size: 13px;
}
.coupon button {
  padding: 10px 14px; background: var(--bg-3); border: 1px solid var(--border-strong);
  border-radius: 10px; font-size: 12px; font-weight: 700; color: var(--text);
}
.coupon button:hover { border-color: var(--primary); color: var(--primary); }

.upsell {
  background: linear-gradient(135deg, rgba(255, 122, 0,0.1) 0%, transparent 100%);
  border: 1px solid rgba(255, 122, 0,0.3);
  border-radius: var(--r-md);
  padding: 14px;
  display: flex; gap: 12px; align-items: center;
  margin-top: 16px;
}
.upsell-icon { width: 40px; height: 40px; border-radius: 10px; background: var(--primary); color: white; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.upsell-info { flex: 1; }
.upsell-info .ttl { font-size: 13px; font-weight: 700; }
.upsell-info .sub { font-size: 11px; color: var(--text-muted); }
.upsell button { padding: 6px 12px; background: var(--primary); color: white; border-radius: 8px; font-size: 11px; font-weight: 700; }

.terms { display: flex; gap: 10px; align-items: start; padding: 16px 0; font-size: 13px; color: var(--text-muted); }
.terms input { accent-color: var(--primary); margin-top: 3px; }

/* ===== PIX PAYMENT ===== */
.pix-layout { max-width: 540px; margin: 32px auto; }
.pix-card {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--r-xl); padding: 32px;
  text-align: center;
}
.pix-card h2 { font-size: 22px; font-weight: 800; margin-bottom: 8px; }
.pix-card .sub { color: var(--text-muted); font-size: 14px; margin-bottom: 24px; }
.pix-amount { font-size: 36px; font-weight: 900; color: var(--green-pix); margin-bottom: 24px; font-feature-settings: 'tnum'; }
.qr-wrap {
  background: white; padding: 16px; border-radius: var(--r-md);
  display: inline-block; margin: 0 auto 24px;
}
.pix-copy {
  display: flex; gap: 8px; align-items: center;
  background: var(--bg-2); border: 1px solid var(--border);
  border-radius: 10px; padding: 6px 6px 6px 14px;
  margin-bottom: 16px;
}
.pix-copy input { flex: 1; background: none; border: none; outline: none; color: var(--text); font-size: 12px; font-family: monospace; }
.pix-copy button { padding: 8px 12px; background: var(--primary); color: white; border-radius: 8px; font-size: 12px; font-weight: 700; }

.pix-steps { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--r-xl); padding: 24px; margin-top: 16px; text-align: left; }
.pix-steps h3 { font-size: 16px; font-weight: 800; margin-bottom: 16px; }
.pix-step { display: flex; gap: 14px; padding: 10px 0; align-items: start; }
.pix-step .num {
  width: 28px; height: 28px;
  background: rgba(255, 122, 0,0.15); color: var(--primary);
  border-radius: 999px;
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: 13px;
  flex-shrink: 0;
}
.pix-step .txt { font-size: 13px; color: var(--text-muted); line-height: 1.5; padding-top: 4px; }
.pix-step .txt b { color: var(--text); font-weight: 700; }

/* ===== USER PROFILE DROPDOWN ===== */
.user-dd {
  position: absolute; top: calc(100% + 8px); right: 0;
  background: var(--bg-1); border: 1px solid var(--border-strong);
  border-radius: var(--r-md); width: 240px;
  box-shadow: 0 16px 48px rgba(0,0,0,0.6);
  overflow: hidden; z-index: 110;
  animation: modalIn 200ms ease-out;
}
.user-dd-head { padding: 16px; border-bottom: 1px solid var(--border); display: flex; gap: 12px; align-items: center; }
.user-avatar {
  width: 40px; height: 40px; border-radius: 999px;
  background: linear-gradient(135deg, var(--primary), var(--primary-deep));
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: 14px; color: white;
}
.user-dd-head .name { font-size: 13px; font-weight: 700; }
.user-dd-head .id { font-size: 11px; color: var(--text-muted); }
.user-dd ul { list-style: none; padding: 8px 0; }
.user-dd li button { width: 100%; text-align: left; padding: 10px 16px; font-size: 13px; color: var(--text-muted); display: flex; align-items: center; gap: 10px; transition: all 150ms; }
.user-dd li button:hover { background: var(--bg-2); color: var(--text); }

/* ===== PROFILE PAGE ===== */
.profile-layout { display: grid; grid-template-columns: 280px 1fr; gap: 32px; }
.profile-card {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--r-xl); padding: 24px;
  position: sticky; top: 180px; align-self: start;
}
.profile-card .user-avatar { width: 72px; height: 72px; font-size: 24px; margin-bottom: 16px; }
.profile-card h3 { font-size: 18px; font-weight: 800; }
.profile-card .id { font-size: 12px; color: var(--text-muted); margin-bottom: 16px; }
.profile-tabs { display: flex; flex-direction: column; gap: 4px; margin-top: 16px; }
.profile-tab {
  padding: 10px 12px; border-radius: 8px; font-size: 13px; font-weight: 600;
  color: var(--text-muted); text-align: left;
  display: flex; align-items: center; gap: 10px;
  transition: all 150ms;
}
.profile-tab:hover { background: var(--bg-2); color: var(--text); }
.profile-tab.active { background: rgba(255, 122, 0,0.1); color: var(--primary); }

.order-card {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--r-lg); padding: 20px;
  margin-bottom: 12px;
}
.order-head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 16px; padding-bottom: 16px; border-bottom: 1px solid var(--border); }
.order-id { font-size: 12px; color: var(--text-muted); }
.order-id b { color: var(--text); font-family: monospace; }
.order-status {
  padding: 4px 10px; border-radius: 999px;
  font-size: 11px; font-weight: 700;
  background: rgba(0,200,150,0.15); color: var(--green-pix);
  border: 1px solid rgba(0,200,150,0.3);
}
.order-status.pending { background: rgba(212,175,55,0.15); color: var(--gold); border-color: rgba(212,175,55,0.3); }
.order-items { display: flex; flex-direction: column; gap: 10px; margin-bottom: 16px; }
.order-item-row { display: flex; align-items: center; gap: 12px; }
.order-item-row .cart-item-thumb { width: 48px; height: 48px; }
.order-item-row .name { flex: 1; font-size: 13px; font-weight: 600; }
.order-item-row .qty-x { font-size: 12px; color: var(--text-muted); }
.order-item-row .price { font-size: 13px; font-weight: 700; font-feature-settings: 'tnum'; }
.order-foot { display: flex; justify-content: space-between; align-items: center; }
.order-total { font-size: 14px; }
.order-total b { font-size: 16px; color: var(--primary); font-weight: 800; }

/* ===== COUNTDOWN BANNER ===== */
.countdown-banner {
  background: linear-gradient(90deg, rgba(255, 122, 0,0.15), rgba(255, 122, 0,0.05));
  border: 1px solid rgba(255, 122, 0,0.3);
  border-radius: var(--r-lg);
  padding: 20px 24px;
  display: flex; align-items: center; gap: 24px;
  flex-wrap: wrap;
  margin: 32px 0;
}
.countdown-info { flex: 1; min-width: 200px; }
.countdown-info .ttl { font-size: 15px; font-weight: 800; margin-bottom: 4px; }
.countdown-info .sub { font-size: 12px; color: var(--text-muted); }
.countdown-clock { display: flex; gap: 8px; }
.cd-cell {
  background: var(--bg-1); border: 1px solid var(--border);
  border-radius: 10px; padding: 8px 12px;
  text-align: center; min-width: 56px;
}
.cd-cell .num { font-size: 20px; font-weight: 900; font-feature-settings: 'tnum'; line-height: 1; }
.cd-cell .lbl { font-size: 10px; color: var(--text-muted); margin-top: 2px; letter-spacing: 0.05em; }

/* ===== BC-STYLE HOMEPAGE ===== */
.hero-bc {
  margin-top: 24px;
  border-radius: var(--r-2xl);
  overflow: hidden;
  position: relative;
  min-height: 380px;
  display: flex; align-items: center;
  isolation: isolate;
}
.hero-bg-bc {
  position: absolute; inset: 0; z-index: -1;
  background:
    radial-gradient(circle at 75% 50%, rgba(255, 122, 0,0.5), transparent 50%),
    linear-gradient(135deg, #1a0e00 0%, #0a0a0a 60%, #050505 100%);
}
.hero-bg-bc::before {
  content: ''; position: absolute; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 400'%3E%3Cg opacity='0.15'%3E%3Crect x='40' y='180' width='30' height='220' fill='%23222'/%3E%3Crect x='80' y='220' width='40' height='180' fill='%23333'/%3E%3Crect x='130' y='150' width='35' height='250' fill='%23222'/%3E%3Crect x='180' y='200' width='28' height='200' fill='%23333'/%3E%3Crect x='220' y='160' width='40' height='240' fill='%23222'/%3E%3Crect x='280' y='190' width='30' height='210' fill='%23333'/%3E%3Crect x='1000' y='180' width='30' height='220' fill='%23222'/%3E%3Crect x='1040' y='220' width='40' height='180' fill='%23333'/%3E%3Crect x='1090' y='150' width='35' height='250' fill='%23222'/%3E%3Crect x='1140' y='200' width='28' height='200' fill='%23333'/%3E%3C/g%3E%3C/svg%3E");
  background-size: cover; background-position: center;
  opacity: 0.7;
}
.hero-content {
  display: grid; grid-template-columns: 1fr 1.1fr; gap: 32px;
  width: 100%; padding: 56px;
  align-items: center;
}
.hero-eyebrow { font-size: 12px; font-weight: 700; letter-spacing: 0.15em; color: #fff; opacity: 0.9; margin-bottom: 12px; }
.hero-bigtitle {
  display: flex; align-items: flex-start; gap: 16px;
  font-weight: 900; line-height: 0.85;
  margin-bottom: 24px;
}
.hero-bigtitle .num {
  font-size: clamp(80px, 10vw, 140px);
  background: linear-gradient(180deg, #fff 0%, #888 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
  letter-spacing: -0.05em;
  text-shadow: 0 8px 32px rgba(0,0,0,0.6);
}
.hero-bigtitle .words {
  font-size: clamp(36px, 4.5vw, 60px);
  color: #fff;
  letter-spacing: -0.02em;
  margin-top: 12px;
  text-transform: uppercase;
  font-style: italic;
  text-shadow: 0 4px 16px rgba(0,0,0,0.6);
}
.hero-banner-pill {
  display: inline-block;
  background: linear-gradient(180deg, var(--primary) 0%, var(--primary-deep) 100%);
  color: white;
  padding: 10px 20px;
  border-radius: 6px;
  font-size: 12px; font-weight: 800;
  letter-spacing: 0.08em;
  box-shadow: 0 4px 16px -4px rgba(255, 122, 0,0.6);
  transform: skewX(-8deg);
}
.hero-banner-pill > * { display: inline-block; transform: skewX(8deg); }
.hero-art { position: relative; height: 100%; min-height: 280px; }
.hero-art-glow {
  position: absolute; inset: -10%;
  background: radial-gradient(ellipse at center, rgba(255, 122, 0,0.4), transparent 60%);
  filter: blur(20px);
}
.hero-art-car {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
}
.hero-art-badge {
  position: absolute; top: 0; right: 0;
  background: rgba(255, 122, 0,0.15);
  border: 1px solid var(--primary);
  border-radius: 12px;
  padding: 12px 16px;
  font-weight: 900;
  text-align: center;
  line-height: 1;
}
.hero-art-badge .mil { font-size: 22px; color: #fff; }
.hero-art-badge .anos { font-size: 10px; color: var(--primary); letter-spacing: 0.15em; }

.trust-strip {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px;
  margin-top: 24px;
}
.trust-strip-item {
  display: flex; gap: 12px; align-items: center;
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--r-lg); padding: 16px 20px;
  transition: all 200ms;
}
.trust-strip-item:hover { border-color: rgba(255, 122, 0,0.4); transform: translateY(-2px); }
.trust-icon {
  width: 40px; height: 40px; border-radius: 10px;
  background: rgba(255, 122, 0,0.12);
  border: 1px solid rgba(255, 122, 0,0.3);
  color: var(--primary);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.trust-strip-item .ttl { font-size: 13px; font-weight: 700; }
.trust-strip-item .sub { font-size: 11px; color: var(--text-muted); }

.bc-section { padding: 56px 0 32px; }
.bc-title { font-size: 24px; font-weight: 900; text-align: center; letter-spacing: -0.01em; margin-bottom: 32px; }
.bc-title-big { font-size: clamp(28px, 3vw, 40px); font-weight: 900; text-align: center; letter-spacing: -0.02em; }
.bc-sub { color: var(--text-muted); text-align: center; margin: 12px auto 32px; max-width: 600px; font-size: 15px; line-height: 1.6; }

.featured-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 16px; }
.featured-card {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--r-lg); overflow: hidden;
  cursor: pointer; transition: all 300ms;
  animation: fadeUp 500ms ease-out backwards;
  display: flex; flex-direction: column;
}
.featured-card:hover { transform: translateY(-4px); border-color: rgba(255, 122, 0,0.5); box-shadow: var(--shadow-card-hover); }
/* === Featured card v2: image-first (1:1, 512x512 ready) === */
.fc-image {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  border-bottom: 1px solid var(--border);
}
.fc-image-grid {
  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: 32px 32px;
  -webkit-mask-image: radial-gradient(ellipse at 50% 50%, #000 30%, transparent 75%);
  mask-image: radial-gradient(ellipse at 50% 50%, #000 30%, transparent 75%);
  pointer-events: none;
}
.fc-image-glow {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 50% 90%, var(--p-accent, var(--primary)) 0%, transparent 50%);
  opacity: 0.18;
  pointer-events: none;
}
.fc-image-icon {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  filter: drop-shadow(0 12px 32px rgba(0,0,0,0.6));
  transition: transform 400ms cubic-bezier(.2,.8,.2,1);
}
.featured-card:hover .fc-image-icon { transform: scale(1.06) translateY(-4px); }

.fc-badge {
  position: absolute; top: 12px;
  font-size: 10px; font-weight: 800; letter-spacing: 0.06em;
  padding: 5px 9px; border-radius: 4px;
  text-transform: uppercase;
  z-index: 2;
  box-shadow: none;
}
.fc-badge-discount {
  right: 12px;
  background: var(--primary); color: #fff;
  box-shadow: 0 4px 12px -2px rgba(255,122,0,0.6);
}
.fc-badge-best {
  left: 12px;
  background: linear-gradient(90deg, var(--gold) 0%, #b8941e 100%);
  color: #1a1a1a;
}
.fc-badge-pop {
  left: 12px;
  background: rgba(255,255,255,0.95); color: #0a0a0a;
}

.fc-info { padding: 14px 14px 16px; display: flex; flex-direction: column; gap: 6px; }
.fc-pname { font-size: 15px; font-weight: 700; letter-spacing: -0.01em; }
.fc-price-row { display: flex; gap: 8px; align-items: center; min-height: 16px; font-size: 12px; }
.fc-pct { color: var(--primary); font-weight: 700; font-size: 11px; }
.fc-price-line { display: flex; align-items: center; gap: 8px; margin-top: 2px; }
.fc-price { font-size: 22px; font-weight: 900; letter-spacing: -0.02em; font-feature-settings: 'tnum'; }
.fc-pix-chip {
  display: inline-flex; align-items: center; justify-content: center;
  width: 22px; height: 22px; border-radius: 6px;
  background: rgba(0, 200, 150, 0.12);
  color: var(--green-pix);
}
.fc-pix-line { font-size: 11px; color: var(--text-muted); margin-bottom: 8px; }

.fc-pay-strip {
  display: flex; gap: 4px; flex-wrap: wrap;
  padding: 8px 0;
  margin-bottom: 10px;
  border-top: 1px dashed var(--border);
}
.fc-pay-chip {
  display: inline-flex; align-items: center; gap: 4px;
  padding: 3px 7px; border-radius: 4px;
  font-size: 9.5px; font-weight: 700; letter-spacing: 0.04em;
  text-transform: uppercase;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  color: var(--text-muted);
}
.fc-pay-chip.pay-pix { color: var(--green-pix); border-color: rgba(0,200,150,0.3); background: rgba(0,200,150,0.08); }
.fc-pay-chip.pay-card { color: var(--primary); border-color: rgba(255,122,0,0.3); background: rgba(255,122,0,0.06); }

/* legacy classes — keep no-op so nothing else breaks */
.fc-frame, .fc-header, .fc-name-banner, .fc-body, .fc-icon, .fc-logo, .fc-pix { all: revert; }
.fc-header { display: flex; align-items: center; justify-content: space-between; padding: 6px 8px; background: #0a0a0a; border-radius: 6px 6px 0 0; }
.fc-logo { font-weight: 900; font-size: 12px; letter-spacing: -0.02em; }
.fc-name-banner {
  background: var(--gold); color: #1a1a1a;
  font-weight: 900; font-size: 11px;
  padding: 3px 10px; border-radius: 4px;
  letter-spacing: 0.05em;
}
.fc-body {
  aspect-ratio: 1 / 0.9;
  position: relative; overflow: hidden;
  display: flex; align-items: center; justify-content: center;
  border-radius: 0 0 6px 6px;
}
.fc-icon {
  width: 100px; height: 100px; border-radius: 20px;
  background: rgba(0,0,0,0.4);
  display: flex; align-items: center; justify-content: center;
  backdrop-filter: blur(8px);
  box-shadow: 0 8px 32px rgba(0,0,0,0.5);
}
.fc-badge {
  position: absolute; top: 10px; right: 10px;
  background: var(--primary); color: white;
  padding: 4px 10px; border-radius: 6px;
  font-size: 11px; font-weight: 800;
  box-shadow: 0 2px 8px rgba(255, 122, 0,0.4);
}
.fc-info { padding: 14px; display: flex; flex-direction: column; gap: 6px; }
.fc-pname { font-size: 14px; font-weight: 700; }
.fc-price-row { display: flex; gap: 8px; align-items: center; min-height: 18px; font-size: 12px; }
.fc-pct { color: var(--primary); font-weight: 700; font-size: 11px; }
.fc-price { font-size: 20px; font-weight: 900; letter-spacing: -0.02em; font-feature-settings: 'tnum'; display: flex; align-items: center; gap: 6px; }
.fc-pix { color: var(--green-pix); display: inline-flex; }
.fc-pix-line { font-size: 11px; color: var(--text-muted); margin-bottom: 8px; }

.testimonial-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.testimonial {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--r-lg); padding: 24px;
  display: flex; flex-direction: column; gap: 16px;
}
.testimonial .stars { display: flex; gap: 2px; color: var(--primary); }
.testimonial .quote { color: var(--text-muted); font-size: 14px; line-height: 1.6; flex: 1; font-style: italic; }
.testimonial .author { display: flex; gap: 10px; align-items: center; }
.author-avatar { width: 40px; height: 40px; border-radius: 999px; display: flex; align-items: center; justify-content: center; font-weight: 800; font-size: 13px; color: white; }
.author-name { font-size: 13px; font-weight: 700; }
.author-when { font-size: 11px; color: var(--text-muted); }
.testimonial-nav { display: flex; gap: 12px; justify-content: center; margin-top: 24px; }
.icon-btn-round { width: 36px; height: 36px; border-radius: 999px; background: var(--bg-2); border: 1px solid var(--border); color: var(--text-muted); display: flex; align-items: center; justify-content: center; transition: all 200ms; }
.icon-btn-round:hover { color: var(--primary); border-color: var(--primary); }

.timeline-tag { display: inline-block; padding: 6px 14px; border-radius: 999px; background: rgba(255, 122, 0,0.1); border: 1px solid rgba(255, 122, 0,0.3); color: var(--primary); font-size: 11px; font-weight: 700; letter-spacing: 0.1em; }
.timeline-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 12px; margin-top: 32px; }
.timeline-card {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--r-lg); padding: 20px 16px;
  display: flex; flex-direction: column; gap: 8px;
  text-align: center;
  animation: fadeUp 500ms ease-out backwards;
  transition: all 200ms;
}
.timeline-card:hover { border-color: rgba(255, 122, 0,0.4); transform: translateY(-2px); }
.tl-year { font-size: 22px; font-weight: 900; color: var(--primary); letter-spacing: 0.05em; font-feature-settings: 'tnum'; }
.tl-ttl { font-size: 11px; font-weight: 700; letter-spacing: 0.08em; color: var(--text); }
.tl-body { font-size: 12px; color: var(--text-muted); line-height: 1.5; }
.timeline-foot { color: var(--text-muted); font-size: 14px; line-height: 1.8; margin-top: 32px; }
.timeline-foot b { color: var(--text); }

.payment-bar {
  display: flex; gap: 8px; justify-content: center; align-items: center;
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: 999px; padding: 16px 32px;
  max-width: 720px; margin: 0 auto;
  flex-wrap: wrap;
}
.pay-icon {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 8px 14px;
  font-size: 13px; font-weight: 700; color: var(--text-muted);
}

@media (max-width: 1024px) {
  .featured-grid { grid-template-columns: repeat(3, 1fr); }
  .timeline-grid { grid-template-columns: repeat(3, 1fr); }
  .testimonial-grid { grid-template-columns: 1fr; }
  .trust-strip { grid-template-columns: repeat(2, 1fr); }
  .hero-content { grid-template-columns: 1fr; padding: 32px; }
  .hero-art { min-height: 200px; }
}
@media (max-width: 720px) {
  .featured-grid { grid-template-columns: repeat(2, 1fr); }
  .timeline-grid { grid-template-columns: 1fr 1fr; }
  .trust-strip { grid-template-columns: 1fr; }
}

/* ===== BC-STYLE CATEGORY PAGE ===== */
.cat-page-bc {
  position: relative;
  min-height: 80vh;
  padding-bottom: 80px;
}
.cat-bc-bg {
  position: absolute; inset: 0; z-index: 0;
  background: radial-gradient(ellipse 80% 60% at 50% 0%, rgba(255, 122, 0,0.06) 0%, transparent 60%);
}
.cat-bc-bg::before { display: none; }
.cat-bc-header {
  display: flex; align-items: center; gap: 16px;
  padding: 32px 0 28px;
}
.cat-bc-back {
  width: 40px; height: 40px; border-radius: 999px;
  background: var(--bg-card); border: 1px solid var(--border);
  color: var(--text-muted);
  display: flex; align-items: center; justify-content: center;
  transition: all 200ms;
}
.cat-bc-back:hover { color: var(--primary); border-color: var(--primary); transform: translateX(-2px); }
.cat-bc-title {
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.cat-bc-grid { gap: 18px; }

/* ===== TERMS PAGE ===== */
.terms-page {
  position: relative;
  padding-bottom: 80px;
  min-height: 80vh;
}
.terms-bg {
  position: absolute; inset: 0; z-index: 0;
  background: radial-gradient(ellipse 70% 50% at 50% 0%, rgba(255, 122, 0,0.08) 0%, transparent 70%);
}
.terms-bg::before { display: none; }
.terms-head {
  padding: 64px 0 40px;
  text-align: left;
  max-width: 900px;
  margin: 0 auto;
}
.terms-eyebrow {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.2em;
  color: var(--primary);
  margin-bottom: 12px;
}
.terms-head h1 {
  font-size: clamp(40px, 5vw, 64px);
  font-weight: 900;
  letter-spacing: -0.02em;
  line-height: 1.05;
  background: linear-gradient(180deg, #fff 0%, #aaa 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.terms-body {
  max-width: 900px;
  margin: 0 auto;
  background: rgba(15, 15, 15, 0.7);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 48px 56px;
  backdrop-filter: blur(8px);
}
.terms-intro {
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 16px;
  font-size: 14px;
}
.terms-intro b { color: var(--text); }
.terms-section {
  margin: 32px 0 0;
  padding-top: 24px;
  border-top: 1px solid var(--border);
}
.terms-section:first-of-type { border-top: none; padding-top: 0; }
.terms-section h2 {
  font-size: 20px;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 16px;
  letter-spacing: -0.01em;
}
.terms-section p {
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 14px;
  font-size: 14px;
}
.terms-section p b { color: var(--text); font-weight: 700; }
.terms-foot {
  margin-top: 40px;
  padding: 20px;
  background: rgba(255, 122, 0,0.06);
  border: 1px solid rgba(255, 122, 0,0.2);
  border-radius: var(--r-md);
  color: var(--text);
  font-weight: 600;
  font-size: 14px;
  line-height: 1.7;
}

@media (max-width: 720px) {
  .terms-body { padding: 28px 20px; }
  .terms-head { padding: 40px 0 28px; }
}

/* ===== HERO — ABOUT (Sobre o MIL GRAU) ===== */
.hero-about {
  margin-top: 24px;
  border-radius: var(--r-2xl);
  overflow: hidden;
  position: relative;
  border: 1px solid rgba(255, 122, 0,0.18);
  background: linear-gradient(135deg, #0a0506 0%, #1a0508 50%, #2a0a0d 100%);
  box-shadow: 0 30px 80px -30px rgba(0,0,0,0.6);
}
.hero-about-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 100% 50%, rgba(255, 122, 0,0.25) 0%, transparent 60%),
    radial-gradient(ellipse 60% 80% at 0% 100%, rgba(193,18,31,0.15) 0%, transparent 60%);
  pointer-events: none;
}
.hero-about-bg::before {
  content: ''; position: absolute; inset: 0;
  background-image:
    repeating-linear-gradient(90deg, transparent 0 80px, rgba(255,255,255,0.02) 80px 81px);
}
.hero-about-content {
  position: relative; z-index: 1;
  display: grid; grid-template-columns: 1.3fr 1fr; gap: 48px;
  padding: 56px 56px 64px;
  align-items: center;
}
.hero-about-text { display: flex; flex-direction: column; gap: 22px; }
.hero-about-title {
  font-size: clamp(38px, 4.4vw, 60px);
  font-weight: 900; line-height: 1.05;
  letter-spacing: -0.025em;
  background: linear-gradient(180deg, #fff 0%, #ccc 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.hero-about-title .accent {
  background: linear-gradient(180deg, var(--primary) 0%, var(--primary-deep) 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.hero-about-body {
  color: var(--text-muted);
  font-size: 17px; line-height: 1.65;
  max-width: 560px;
  text-wrap: pretty;
}
.hero-about-body b { color: var(--text); }
.hero-about-icons {
  display: flex; gap: 16px; flex-wrap: wrap;
  margin-top: 4px;
}
.hai-item {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 10px 18px;
  background: rgba(0,0,0,0.4);
  border: 1px solid rgba(255, 122, 0,0.25);
  border-radius: 999px;
  color: var(--text);
  font-size: 13px; font-weight: 700;
  letter-spacing: 0.02em;
  transition: all 200ms;
}
.hai-item:hover {
  border-color: var(--primary);
  background: rgba(255, 122, 0,0.1);
  transform: translateY(-2px);
}
.hai-item svg { color: var(--primary); }
.hero-about-actions {
  display: flex; gap: 12px; flex-wrap: wrap;
  margin-top: 8px;
}
.hero-about-art {
  position: relative;
  height: 100%;
  min-height: 280px;
  display: flex; align-items: center; justify-content: center;
}

@media (max-width: 1024px) {
  .hero-about-content { grid-template-columns: 1fr; padding: 40px 28px; }
  .hero-about-art { min-height: 200px; }
}

/* ===== FAQ SECTION ===== */
.faq-section {
  position: relative;
}
.faq-list {
  max-width: 880px;
  margin: 0 auto;
  display: flex; flex-direction: column;
  gap: 12px;
}
.faq-item {
  background: rgba(15,15,15,0.7);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  overflow: hidden;
  transition: all 250ms;
  backdrop-filter: blur(8px);
}
.faq-item:hover { border-color: rgba(255, 122, 0,0.4); }
.faq-item.open {
  border-color: var(--primary);
  background: rgba(20,8,10,0.85);
  box-shadow: 0 10px 30px -10px rgba(255, 122, 0,0.3);
}
.faq-q {
  width: 100%;
  display: flex; align-items: center; gap: 16px;
  padding: 20px 24px;
  text-align: left;
  cursor: pointer;
  background: transparent;
}
.faq-icon {
  font-size: 22px;
  flex-shrink: 0;
  width: 40px; height: 40px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(255, 122, 0,0.12);
  border-radius: 10px;
}
.faq-question {
  flex: 1;
  font-size: 16px; font-weight: 700;
  color: var(--text);
  letter-spacing: -0.005em;
}
.faq-chev {
  flex-shrink: 0;
  width: 32px; height: 32px;
  display: flex; align-items: center; justify-content: center;
  background: var(--bg-2);
  border-radius: 999px;
  color: var(--primary);
}
.faq-a-wrap {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 300ms ease;
}
.faq-item.open .faq-a-wrap { grid-template-rows: 1fr; }
.faq-a {
  overflow: hidden;
  padding: 0 24px;
  color: var(--text-muted);
  font-size: 14.5px; line-height: 1.7;
  transition: padding 300ms ease;
}
.faq-item.open .faq-a {
  padding: 0 24px 22px 80px;
}
@media (max-width: 720px) {
  .faq-q { padding: 16px; }
  .faq-item.open .faq-a { padding: 0 16px 18px 16px; }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .container { padding: 0 20px; }
  .product-grid { grid-template-columns: repeat(3, 1fr); --cols: 3; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .product-layout { grid-template-columns: 1fr; gap: 24px; }
  .checkout-layout { grid-template-columns: 1fr; }
  .summary { position: static; }
  .cat-layout { grid-template-columns: 1fr; }
  .filters { position: static; }
  .profile-layout { grid-template-columns: 1fr; }
  .profile-card { position: static; }
  .stats { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 720px) {
  .header-main { flex-wrap: wrap; gap: 12px; }
  .search { order: 5; flex: 1 1 100%; max-width: none; }
  .product-grid { grid-template-columns: repeat(2, 1fr); --cols: 2; }
  .passe-grid { grid-template-columns: 1fr; }
  .hero-inner { padding: 40px 24px; }
  .stat-num { font-size: 32px; }
  .stats { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .payment-grid { grid-template-columns: 1fr; }
  .form-grid { grid-template-columns: 1fr; }
  .trust-grid { grid-template-columns: 1fr; }
  .drawer { width: 100%; }
  .product-actions-big { flex-direction: column; }
  .section-head { flex-direction: column; align-items: start; }
}


/* ===== NEW HERO BANNER (clean, image-ready, AI 21:9) ===== */
.hero-banner{margin:24px 0 0;position:relative;border-radius:var(--r-2xl);overflow:hidden;width:100%;box-shadow:0 30px 80px -30px rgba(0,0,0,0.7)}
.hero-banner-inner{position:relative;width:100%;aspect-ratio:16/9;background:#000;border-radius:var(--r-2xl);overflow:hidden}
.hero-banner-inner picture{display:block;width:100%;height:100%}
.hero-banner-img{width:100%;height:100%;object-fit:cover;display:block}
@media(max-width:768px){.hero-banner-inner{aspect-ratio:4/5}}


/* ===== PAYMENT METHODS (PIX + PayPal) ===== */
.payment-section { margin-top: 60px; }
.pay-methods {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  max-width: 980px;
  margin: 0 auto;
}
.pay-method {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: 24px;
  position: relative;
  overflow: hidden;
  transition: all 250ms cubic-bezier(.2,.8,.2,1);
}
.pay-method::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at top right, currentColor 0%, transparent 60%);
  opacity: 0.06;
  pointer-events: none;
}
.pay-method:hover { transform: translateY(-3px); border-color: rgba(255,255,255,0.15); box-shadow: 0 16px 48px -16px rgba(0,0,0,0.5); }
.pay-method-pix { color: var(--green-pix); }
.pay-method-paypal { color: #003087; }
.pay-method-head { display: flex; align-items: center; gap: 14px; margin-bottom: 14px; }
.pay-method-icon {
  width: 56px; height: 56px;
  border-radius: 12px;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.pay-method-pix .pay-method-icon { color: var(--green-pix); border-color: rgba(0,200,150,0.3); background: rgba(0,200,150,0.06); }
.paypal-icon {
  font-family: 'Inter', sans-serif;
  font-weight: 800;
  font-size: 14px;
  letter-spacing: -0.02em;
}
.pp-pay { color: #003087; }
.pp-pal { color: #009cde; }
.pay-method-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 28px;
  letter-spacing: 0.02em;
  color: var(--text);
  line-height: 1;
}
.pay-method-sub { color: var(--text-muted); font-size: 13px; margin-top: 2px; }
.pay-method-tag {
  margin-left: auto;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 11px;
  letter-spacing: 0.1em;
  padding: 4px 10px;
  background: rgba(0,200,150,0.15);
  color: var(--green-pix);
  border-radius: 999px;
  border: 1px solid rgba(0,200,150,0.3);
}
.pay-method-body {
  color: var(--text-muted);
  font-size: 14px;
  line-height: 1.55;
  margin-bottom: 16px;
}
.pay-brands {
  display: flex; flex-wrap: wrap; gap: 8px;
  padding-top: 16px;
  border-top: 1px solid var(--border);
}
.pay-brand {
  height: 36px;
  min-width: 60px;
  padding: 0 12px;
  background: #fff;
  border-radius: 6px;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Inter', sans-serif;
  font-weight: 800;
  font-size: 12px;
  letter-spacing: -0.01em;
  position: relative;
  transition: transform 200ms ease;
}
.pay-brand:hover { transform: translateY(-2px); }
.brand-visa { color: #1a1f71; font-style: italic; }
.brand-visa span { font-size: 13px; letter-spacing: 0; }
.brand-master { background: #fff; gap: 0; padding: 0 14px; }
.brand-master .mc-c1, .brand-master .mc-c2 {
  width: 22px; height: 22px; border-radius: 50%; display: inline-block;
}
.brand-master .mc-c1 { background: #FF7A00; margin-right: -8px; }
.brand-master .mc-c2 { background: #FFB800; mix-blend-mode: multiply; }
.brand-amex { background: #006fcf; color: #fff; }
.brand-discover { background: #FF7A00; color: #fff; }
.brand-discover span { font-size: 11px; }
.brand-elo { background: #000; color: #fff; }
.brand-elo span { font-size: 14px; font-weight: 800; }
.brand-hiper { background: #FF7A00; color: #fff; }
.brand-hiper span { font-size: 11px; }

@media (max-width: 768px) {
  .pay-methods { grid-template-columns: 1fr; }
  .pay-method-head { flex-wrap: wrap; }
}

/* ===== ANIMATIONS — global dopamine hits ===== */
@keyframes mg-fade-up {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes mg-fade-in {
  from { opacity: 0; }
  to { opacity: 1; }
}
@keyframes mg-pop {
  0% { opacity: 0; transform: scale(0.92); }
  60% { opacity: 1; transform: scale(1.04); }
  100% { opacity: 1; transform: scale(1); }
}
@keyframes mg-shimmer {
  0% { background-position: -200% center; }
  100% { background-position: 200% center; }
}
@keyframes mg-glow-pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(255, 122, 0,0.4); }
  50% { box-shadow: 0 0 32px 4px rgba(255, 122, 0,0.5); }
}

.section { animation: mg-fade-up 600ms cubic-bezier(.2,.8,.2,1) both; }
.section:nth-child(1) { animation-delay: 0ms; }
.section:nth-child(2) { animation-delay: 80ms; }
.section:nth-child(3) { animation-delay: 160ms; }
.section:nth-child(4) { animation-delay: 240ms; }
.section:nth-child(5) { animation-delay: 320ms; }
.section:nth-child(6) { animation-delay: 400ms; }

.featured-card { animation: mg-pop 600ms cubic-bezier(.2,.8,.2,1) both; }
.featured-card:hover { transform: translateY(-6px); transition: transform 220ms cubic-bezier(.2,.8,.2,1); }

.hero-banner { animation: mg-fade-up 700ms cubic-bezier(.2,.8,.2,1) both; }
.trust-strip { animation: mg-fade-up 700ms cubic-bezier(.2,.8,.2,1) 100ms both; }

/* primary buttons get a subtle shimmer on hover */
.btn-primary {
  background-image: linear-gradient(180deg, var(--primary) 0%, var(--primary-deep) 100%);
  position: relative;
  overflow: hidden;
}
.btn-primary::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(110deg, transparent 30%, rgba(255,255,255,0.25) 50%, transparent 70%);
  background-size: 200% 100%;
  background-position: -200% center;
  pointer-events: none;
  transition: background-position 600ms ease;
}
.btn-primary:hover::after { background-position: 200% center; }

/* trust strip items pop in cascade */
.trust-strip-item { animation: mg-fade-up 500ms cubic-bezier(.2,.8,.2,1) both; }
.trust-strip-item:nth-child(1) { animation-delay: 100ms; }
.trust-strip-item:nth-child(2) { animation-delay: 180ms; }
.trust-strip-item:nth-child(3) { animation-delay: 260ms; }
.trust-strip-item:nth-child(4) { animation-delay: 340ms; }

/* faq items expand smoothly */
.faq-item { animation: mg-fade-up 500ms cubic-bezier(.2,.8,.2,1) both; }
.faq-item:nth-child(odd) { animation-delay: 60ms; }
.faq-item:nth-child(even) { animation-delay: 120ms; }


/* ===== PROFESSIONAL PAYMENT SECTION ===== */
.payment-pro-section { margin-top: 56px; }
.payment-pro {
  background: linear-gradient(135deg, #0d0d0d 0%, #131313 100%);
  border: 1px solid var(--border);
  border-radius: var(--r-2xl);
  padding: 40px 48px;
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 48px;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.payment-pro::before {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 280px; height: 280px;
  background: radial-gradient(circle, rgba(255, 122, 0,0.12) 0%, transparent 70%);
  pointer-events: none;
}
.payment-pro-left { position: relative; z-index: 1; }
.payment-pro-eyebrow {
  display: inline-block;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.18em;
  color: var(--green-pix);
  background: rgba(0,200,150,0.1);
  border: 1px solid rgba(0,200,150,0.25);
  padding: 5px 12px;
  border-radius: 999px;
  margin-bottom: 16px;
}
.payment-pro-title {
  font-family: 'Bebas Neue', 'Oswald', sans-serif;
  font-size: clamp(36px, 4vw, 52px);
  font-weight: 900;
  letter-spacing: 0.01em;
  line-height: 1;
  color: var(--text);
  margin: 0 0 14px;
}
.payment-pro-desc {
  color: var(--text-muted);
  font-size: 15px;
  line-height: 1.6;
  margin: 0 0 22px;
  max-width: 440px;
}
.payment-pro-desc b { color: var(--text); }
.payment-pro-trust {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.payment-pro-trust span {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 12px;
  font-weight: 600;
  color: var(--text-muted);
  letter-spacing: 0.02em;
}
.payment-pro-trust svg { color: var(--primary); }
.payment-pro-right {
  display: flex; flex-direction: column; gap: 14px;
  position: relative; z-index: 1;
}
.ppr-row {
  background: rgba(255,255,255,0.025);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 18px 20px;
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
  transition: all 200ms ease;
}
.ppr-row:hover {
  border-color: rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.04);
}
.ppr-label {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.15em;
  color: var(--text-muted);
  width: 60px;
  flex-shrink: 0;
}
.ppr-brand { flex-shrink: 0; }
.brand-logo {
  height: 38px;
  padding: 0 14px;
  background: #fff;
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: 'Inter', sans-serif;
  font-weight: 800;
  font-size: 14px;
  letter-spacing: -0.01em;
}
.brand-pix { color: #32BCAD; }
.brand-pix svg { color: #32BCAD; }
.brand-pix span { font-size: 16px; font-weight: 700; }
.brand-paypal {
  font-style: italic;
}
.bp-pay { color: #003087; }
.bp-pal { color: #009cde; }
.ppr-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-left: auto;
}
.cc {
  height: 28px;
  min-width: 44px;
  padding: 0 8px;
  background: #fff;
  border-radius: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Inter', sans-serif;
  font-weight: 800;
  font-size: 10px;
  letter-spacing: -0.01em;
  transition: transform 180ms ease;
}
.cc:hover { transform: translateY(-1px); }
.cc-visa { color: #1a1f71; font-style: italic; font-size: 11px; }
.cc-master { padding: 0 12px; gap: 0; }
.cc-master span:first-child { width: 16px; height: 16px; border-radius: 50%; background: #FF7A00; margin-right: -6px; }
.cc-master span:last-child { width: 16px; height: 16px; border-radius: 50%; background: #FFB800; mix-blend-mode: multiply; }
.cc-amex { background: #006fcf; color: #fff; }
.cc-disc { background: #FF7A00; color: #fff; font-size: 9px; }
.cc-elo { background: #000; color: #fff; font-size: 12px; }
.cc-hiper { background: #FF7A00; color: #fff; font-size: 9px; }

@media (max-width: 900px) {
  .payment-pro { grid-template-columns: 1fr; padding: 32px 24px; gap: 32px; }
  .ppr-row { flex-direction: column; align-items: flex-start; gap: 12px; }
  .ppr-cards { margin-left: 0; }
}

/* ===== CLEAN PAYMENT SECTION (single rail) ===== */
.pay-clean-section { margin-top: 64px; }
.pay-clean {
  position: relative;
  text-align: center;
  padding: 40px 32px 36px;
  background: linear-gradient(180deg, rgba(255,122,0,0.04) 0%, transparent 100%), #0c0c0c;
  border: 1px solid var(--border);
  border-radius: var(--r-2xl);
  overflow: hidden;
}
.pay-clean::before {
  content: '';
  position: absolute; inset: -1px;
  background: radial-gradient(ellipse at 50% 0%, rgba(255,122,0,0.18), transparent 60%);
  pointer-events: none;
}
.pay-clean-head { position: relative; z-index: 1; margin-bottom: 28px; }
.pay-clean-eyebrow {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 5px 12px;
  background: rgba(0,200,150,0.08);
  border: 1px solid rgba(0,200,150,0.25);
  border-radius: 999px;
  color: var(--green-pix);
  font-size: 10.5px; font-weight: 800; letter-spacing: 0.12em;
  margin-bottom: 14px;
}
.pay-clean-title {
  font-family: 'Bebas Neue', 'Oswald', sans-serif;
  font-size: clamp(32px, 3.6vw, 44px);
  letter-spacing: 0.02em;
  margin: 0 0 6px;
  color: var(--text);
}
.pay-clean-sub {
  color: var(--text-muted);
  font-size: 14px; margin: 0;
}

.pay-clean-rail {
  position: relative; z-index: 1;
  display: flex; align-items: center; justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  padding: 18px 20px;
  background: rgba(0,0,0,0.4);
  border: 1px solid var(--border);
  border-radius: 14px;
  margin: 0 auto 20px;
  max-width: 880px;
  backdrop-filter: blur(8px);
}
.pay-clean-brand {
  display: inline-flex; align-items: center; justify-content: center; gap: 6px;
  height: 36px;
  padding: 0 14px;
  border-radius: 8px;
  font-weight: 800;
  font-size: 13px;
  letter-spacing: 0.02em;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  color: var(--text);
  transition: all 200ms;
}
.pay-clean-brand:hover {
  border-color: var(--primary);
  background: rgba(255,122,0,0.08);
  transform: translateY(-1px);
}
.pay-clean-pix {
  color: var(--green-pix);
  border-color: rgba(0,200,150,0.3);
  background: rgba(0,200,150,0.06);
}
.pay-clean-paypal { color: #fff; gap: 0; }
.pcb-pay { color: #009cde; font-style: italic; }
.pcb-pal { color: #003087; font-style: italic; }
.pay-clean-paypal { background: #fff; border-color: #fff; }

.pay-clean-card { font-style: italic; color: #1a1f71; background: #fff; border-color: #fff; }
.pay-clean-mc { gap: 0; padding: 0 12px; background: #fff; border-color: #fff; }
.pcm-c1, .pcm-c2 { width: 18px; height: 18px; border-radius: 50%; display: inline-block; }
.pcm-c1 { background: #FF7A00; margin-right: -8px; }
.pcm-c2 { background: #FFB800; mix-blend-mode: multiply; }
.pay-clean-amex { color: #fff; background: #006fcf; border-color: #006fcf; font-size: 11px; letter-spacing: 0.05em; }
.pay-clean-elo { color: #fff; background: #000; border-color: #2a2a2a; font-style: italic; }
.pay-clean-hiper { color: #fff; background: #FF7A00; border-color: #FF7A00; font-size: 11px; }

.pay-clean-sep {
  width: 1px; height: 22px;
  background: var(--border);
  margin: 0 4px;
}

.pay-clean-foot {
  position: relative; z-index: 1;
  display: flex; justify-content: center; flex-wrap: wrap;
  gap: 8px;
  font-size: 12px;
  color: var(--text-muted);
}
.pay-clean-foot span {
  display: inline-flex; align-items: center; gap: 5px;
}
.pay-clean-foot svg { color: var(--primary); }
.pay-clean-dot { color: var(--border-strong); }

@media(max-width:768px){
  .pay-clean-section{margin-top:40px}
  .pay-clean{padding:24px 18px;border-radius:16px}
  .pay-clean-head{margin-bottom:20px}
  .pay-clean-title{font-size:26px}
  .pay-clean-sub{font-size:13px}
  .pay-clean-rail{display:grid;grid-template-columns:repeat(3,1fr);gap:8px;padding:12px;margin-bottom:14px}
  .pay-clean-sep{display:none}
  .pay-clean-brand{height:auto;min-height:40px;padding:8px 6px;font-size:12px;width:100%}
  .pay-clean-foot{flex-wrap:wrap;justify-content:center;gap:6px;font-size:11px}
  .pay-clean-dot{display:none}
}


header .logo.logo-img img,
.footer .logo.logo-img img {
  height: 106px !important;
  width: auto !important;
  max-width: 280px !important;
  max-height: 156px !important;
  object-fit: contain !important;
  display: block !important;
  filter: drop-shadow(0 2px 8px rgba(0,0,0,0.4));
  transition: transform 200ms;
}

.footer .logo.logo-img img {
  height: 64px !important;
  max-height: 64px !important;
  max-width: 200px !important;
}

@media (max-width: 1024px) {
  header .logo.logo-img img { 
    height: 48px !important; 
    max-height: 48px !important;
    max-width: 150px !important; 
  }
}

@media (max-width: 768px) {
  header .logo.logo-img img { 
    height: 40px !important; 
    max-height: 40px !important;
    max-width: 120px !important; 
  }
  .footer .logo.logo-img img {
    height: 52px !important;
    max-height: 52px !important;
    max-width: 160px !important;
  }
}

@media (max-width: 480px) {
  header .logo.logo-img img { 
    height: 36px !important; 
    max-height: 36px !important;
    max-width: 100px !important; 
  }
}

.product-desc-html,
.product-desc-html * {
  max-width: 100% !important;
  word-wrap: break-word !important;
  overflow-wrap: anywhere !important;
  word-break: break-word !important;
  white-space: normal !important;
}

.product-desc-html img {
  height: auto !important;
  border-radius: 8px;
}

.product-desc-html pre,
.product-desc-html code {
  white-space: pre-wrap !important;
  word-break: break-all !important;
}

.product-desc {
  overflow: hidden !important;
  word-wrap: break-word !important;
  overflow-wrap: anywhere !important;
}

.product-desc * {
  max-width: 100% !important;
}