:root {
  --black: #060504;
  --panel: #11100d;
  --panel-2: #19160f;
  --gold: #d6a842;
  --gold-2: #ffd978;
  --text: #fff9e8;
  --muted: #b8aa86;
  --line: rgba(255, 217, 120, 0.18);
  --danger: #ff6b6b;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background:
    radial-gradient(circle at top left, rgba(214,168,66,.18), transparent 36rem),
    radial-gradient(circle at 80% 20%, rgba(255,217,120,.09), transparent 28rem),
    var(--black);
  color: var(--text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

a { color: inherit; text-decoration: none; }

.topbar {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px clamp(18px, 4vw, 60px);
  border-bottom: 1px solid var(--line);
  background: rgba(6,5,4,.82);
  backdrop-filter: blur(16px);
}

.brand { display: flex; align-items: center; gap: 12px; font-weight: 900; letter-spacing: .3px; }
.brand span { display: none; }
.brand-logo {
  width: 118px;
  height: auto;
  display: block;
  object-fit: contain;
  filter: drop-shadow(0 10px 24px rgba(214,168,66,.16));
}
.brand-mark {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--gold), var(--gold-2));
  color: #161006;
  box-shadow: 0 10px 30px rgba(214,168,66,.25);
}
.topbar nav { display: flex; gap: 18px; color: var(--muted); }

.hero { display: none; }
.hero-copy h1 {
  margin: 8px 0 14px;
  font-size: clamp(44px, 8vw, 94px);
  line-height: .92;
  letter-spacing: -4px;
}
.lead {
  max-width: 680px;
  color: #e7d7a8;
  font-size: clamp(18px, 2.3vw, 24px);
  line-height: 1.55;
}
.eyebrow {
  color: var(--gold-2);
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 12px;
  font-weight: 900;
}

.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 28px; }
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 12px 18px;
  font-weight: 900;
  cursor: pointer;
  transition: .18s transform, .18s box-shadow, .18s opacity;
}
.btn:hover { transform: translateY(-1px); }
.btn.gold {
  color: #160f05;
  background: linear-gradient(135deg, var(--gold), var(--gold-2));
  box-shadow: 0 18px 36px rgba(214,168,66,.18);
}
.btn.dark { color: var(--gold-2); background: rgba(255,255,255,.04); }
.btn.whatsapp {
  color: #03160a;
  border-color: rgba(37, 211, 102, .35);
  background: linear-gradient(135deg, #25d366, #9cffba);
  box-shadow: 0 18px 36px rgba(37, 211, 102, .18);
}
.btn.big { padding: 16px 24px; font-size: 16px; }
.btn.full { width: 100%; border: 0; }

.hero-card, .checkout-product, .checkout-box, .admin-card, .success-box, .admin-login, .product-detail {
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(255,255,255,.055), rgba(255,255,255,.025));
  border-radius: 30px;
  box-shadow: 0 30px 80px rgba(0,0,0,.32);
}
.hero-card { padding: 30px; text-align: center; color: var(--muted); }
.hero-card img { width: min(100%, 360px); filter: drop-shadow(0 24px 48px rgba(214,168,66,.22)); }

.section { padding: 18px clamp(18px, 4vw, 60px) 80px; }
.catalog-section { padding-top: 18px; }
.section-head { display: flex; justify-content: space-between; align-items: end; gap: 20px; margin-bottom: 22px; }
.section-head h1, .section-head h2 { margin: 0; font-size: clamp(32px, 5vw, 56px); letter-spacing: -2px; }
.catalog-note { margin: 0; max-width: 360px; color: var(--muted); line-height: 1.45; }

.grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}
.product-card {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(255,255,255,.055), rgba(255,255,255,.02));
  border-radius: 30px;
  padding: 14px;
  overflow: hidden;
  transition: .2s transform, .2s border-color, .2s box-shadow;
}
.product-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255,217,120,.42);
  box-shadow: 0 24px 60px rgba(0,0,0,.32);
}
.product-media {
  display: block;
  overflow: hidden;
  border-radius: 22px;
  background:
    radial-gradient(circle at 40% 20%, rgba(214,168,66,.13), transparent 50%),
    #0e0b07;
}
.product-card img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  display: block;
  transition: .22s transform;
}
.product-card:hover img { transform: scale(1.035); }
.product-card-body {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 2px 4px 4px;
}
.product-card h3 {
  margin: 16px 0 16px;
  font-size: clamp(18px, 1.9vw, 23px);
  line-height: 1.18;
  letter-spacing: -.5px;
}
.product-card h3:hover { color: var(--gold-2); }
.product-card p { display: none; }
.product-bottom { display: flex; align-items: center; justify-content: space-between; gap: 12px; margin-top: auto; }
.product-bottom strong, .price { color: var(--gold-2); font-size: 24px; }

.checkout-wrap {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 24px;
  padding: clamp(28px, 5vw, 70px) clamp(18px, 4vw, 60px);
}
.checkout-product, .checkout-box, .success-box, .admin-login { padding: clamp(22px, 4vw, 38px); }
.checkout-product img { width: 100%; max-height: 360px; object-fit: contain; }
.checkout-product h1 { font-size: clamp(34px, 5vw, 62px); line-height: 1; margin-bottom: 12px; }
.checkout-product p, .muted { color: var(--muted); }

.product-detail-page {
  padding: clamp(24px, 5vw, 64px) clamp(18px, 4vw, 60px) 80px;
}
.product-detail {
  display: grid;
  grid-template-columns: minmax(280px, .9fr) minmax(0, 1.1fr);
  gap: clamp(22px, 4vw, 48px);
  align-items: center;
  padding: clamp(18px, 4vw, 42px);
}
.detail-image-wrap {
  border-radius: 28px;
  background:
    radial-gradient(circle at 40% 20%, rgba(255,217,120,.12), transparent 55%),
    #0d0a06;
  border: 1px solid var(--line);
  overflow: hidden;
}
.detail-image-wrap img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  display: block;
}
.detail-copy h1 {
  margin: 10px 0 18px;
  font-size: clamp(34px, 5vw, 68px);
  line-height: .98;
  letter-spacing: -2.2px;
}
.rating-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  color: var(--gold-2);
  font-weight: 900;
  margin: -4px 0 16px;
}
.rating-row span {
  color: var(--muted);
  font-size: 14px;
  font-weight: 750;
}
.buyer-badge {
  width: fit-content;
  max-width: 100%;
  margin: -4px 0 16px;
  padding: 10px 14px;
  border: 1px solid rgba(255,217,120,.34);
  border-radius: 999px;
  background:
    linear-gradient(135deg, rgba(255,217,120,.18), rgba(255,255,255,.04)),
    #0d0a06;
  color: var(--gold-2);
  box-shadow: 0 12px 32px rgba(214,168,66,.14);
  font-size: clamp(14px, 1.8vw, 18px);
  font-weight: 950;
}
.detail-price {
  display: inline-flex;
  color: #120d04;
  background: linear-gradient(135deg, var(--gold), var(--gold-2));
  border-radius: 999px;
  padding: 10px 16px;
  font-weight: 950;
  font-size: clamp(22px, 3vw, 34px);
  margin-bottom: 22px;
}
.shipping-line {
  width: min(420px, 100%);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin: -10px 0 12px;
  padding: 12px 15px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(255,255,255,.035);
  color: var(--muted);
  font-weight: 850;
}
.shipping-line strong {
  color: var(--gold-2);
}
.shipping-line.total {
  margin-top: -4px;
  background: rgba(255,217,120,.09);
  color: var(--text);
  border-color: rgba(255,217,120,.32);
}
.shipping-line.total strong {
  font-size: 22px;
}
.detail-description {
  color: #e8d9ae;
  font-size: clamp(16px, 2vw, 20px);
  line-height: 1.72;
  max-width: 740px;
}
.pack-selector {
  margin: 24px 0 4px;
  padding: clamp(16px, 2.8vw, 24px);
  border: 1px solid rgba(255,217,120,.22);
  border-radius: 24px;
  background: #020201;
}
.pack-selector h2 {
  margin: 0 0 18px;
  color: #fff43d;
  font-size: clamp(22px, 3.2vw, 36px);
  line-height: 1.15;
  letter-spacing: -1px;
}
.pack-selector h2 span {
  white-space: nowrap;
}
.pack-options {
  display: grid;
  grid-template-columns: minmax(220px, 1.7fr) repeat(4, minmax(120px, 1fr));
  gap: 14px;
}
.pack-option {
  position: relative;
  min-height: 74px;
  border: 3px solid #cfcfcf;
  border-radius: 8px;
  background: #fff;
  color: #060504;
  font: inherit;
  font-size: clamp(24px, 3vw, 42px);
  line-height: 1;
  cursor: default;
}
.pack-option.selected {
  border-color: #fff;
  box-shadow: 0 0 0 3px rgba(255,217,120,.26), 0 16px 36px rgba(0,0,0,.28);
}
.pack-option.disabled {
  color: #9c9c9c;
  background: #f8f8f8;
}
.pack-option.disabled::before,
.pack-option.disabled::after {
  content: "";
  position: absolute;
  left: 16%;
  right: 16%;
  top: 50%;
  height: 5px;
  border-radius: 999px;
  background: rgba(255, 54, 46, .68);
}
.pack-option.disabled::before { transform: rotate(45deg); }
.pack-option.disabled::after { transform: rotate(-45deg); }
.detail-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 26px; }
.benefit-list {
  display: grid;
  gap: 10px;
  margin: 20px 0 0;
  padding: 0;
  list-style: none;
}
.benefit-list li {
  position: relative;
  padding-left: 28px;
  color: #f5e8c5;
  line-height: 1.45;
}
.benefit-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  width: 19px;
  height: 19px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #120d04;
  background: linear-gradient(135deg, var(--gold), var(--gold-2));
  font-size: 12px;
  font-weight: 950;
}
.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}
.trust-row span {
  border: 1px solid var(--line);
  background: rgba(255,255,255,.04);
  color: #ead8a7;
  border-radius: 999px;
  padding: 9px 12px;
  font-size: 13px;
  font-weight: 800;
}
.brand-proof {
  display: grid;
  grid-template-columns: minmax(280px, .85fr) minmax(0, 1.15fr);
  gap: clamp(18px, 4vw, 42px);
  align-items: center;
  margin: 0 clamp(18px, 4vw, 60px) 34px;
  padding: clamp(20px, 4vw, 42px);
  border: 1px solid rgba(255,217,120,.24);
  border-radius: 32px;
  background:
    radial-gradient(circle at 12% 10%, rgba(255,217,120,.16), transparent 30%),
    linear-gradient(135deg, rgba(255,255,255,.07), rgba(255,255,255,.025));
  box-shadow: 0 30px 80px rgba(0,0,0,.34);
}
.brand-proof-copy h2 {
  margin: 8px 0 14px;
  font-size: clamp(28px, 4.2vw, 56px);
  line-height: 1;
  letter-spacing: -2px;
}
.brand-proof-copy p {
  margin: 0;
  color: #e8d9ae;
  line-height: 1.68;
  font-size: clamp(15px, 1.6vw, 18px);
}
.proof-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}
.proof-grid article {
  min-height: 132px;
  display: grid;
  align-content: center;
  gap: 7px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background:
    linear-gradient(180deg, rgba(255,217,120,.08), rgba(255,255,255,.025)),
    #0d0a06;
}
.proof-grid article:last-child {
  grid-column: 1 / -1;
  min-height: 108px;
}
.proof-grid span {
  font-size: 24px;
}
.proof-grid strong {
  color: var(--gold-2);
  font-size: clamp(28px, 4vw, 44px);
  line-height: .9;
  letter-spacing: -1px;
}
.proof-grid small {
  color: var(--muted);
  font-weight: 800;
  line-height: 1.35;
}
.video-proof {
  margin: 0 clamp(18px, 4vw, 60px) 34px;
  padding: clamp(18px, 4vw, 34px);
  border: 1px solid rgba(255,217,120,.22);
  border-radius: 32px;
  background:
    radial-gradient(circle at top right, rgba(255,217,120,.13), transparent 36%),
    linear-gradient(180deg, rgba(255,255,255,.05), rgba(255,255,255,.02));
  box-shadow: 0 26px 70px rgba(0,0,0,.28);
}
.video-proof .mini-head {
  max-width: 780px;
}
.video-proof .mini-head p:not(.eyebrow) {
  margin: 8px 0 0;
  color: var(--muted);
  line-height: 1.55;
}
.video-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-top: 18px;
}
.video-card {
  position: relative;
  display: grid;
  gap: 10px;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: #0d0a06;
  overflow: hidden;
  transition: .2s transform, .2s border-color, .2s box-shadow;
}
.video-card:hover {
  transform: translateY(-3px);
  border-color: rgba(255,217,120,.45);
  box-shadow: 0 20px 44px rgba(0,0,0,.32);
}
.video-card img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border-radius: 16px;
  display: block;
  filter: saturate(1.1) contrast(1.02);
}
.play-badge {
  position: absolute;
  left: 50%;
  top: 42%;
  transform: translate(-50%, -50%);
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  color: #120d04;
  background: linear-gradient(135deg, var(--gold), var(--gold-2));
  box-shadow: 0 14px 34px rgba(0,0,0,.35);
  font-weight: 950;
}
.video-card strong {
  min-height: 38px;
  color: #f6e9c2;
  line-height: 1.25;
  font-size: 14px;
}
.conversion-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin: 18px 0 34px;
}
.conversion-strip > div {
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 16px;
  background: rgba(255,255,255,.035);
}
.conversion-strip strong,
.conversion-strip span {
  display: block;
}
.conversion-strip strong {
  color: var(--gold-2);
  margin-bottom: 5px;
}
.conversion-strip span {
  color: var(--muted);
  line-height: 1.45;
  font-size: 14px;
}
.related-section {
  margin-top: 10px;
}
.mini-head {
  margin-bottom: 16px;
}
.mini-head h2 {
  margin: 4px 0 0;
  font-size: clamp(28px, 4vw, 44px);
  letter-spacing: -1.4px;
}
.related-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.sticky-buy {
  display: none;
}

.checkout-modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: none;
  place-items: center;
  padding: 18px;
}
.checkout-modal.open { display: grid; }
.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.72);
  backdrop-filter: blur(10px);
}
.modal-card {
  position: relative;
  width: min(620px, 100%);
  max-height: min(90vh, 860px);
  overflow-y: auto;
  z-index: 1;
  animation: modalIn .18s ease-out;
}
.modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 38px;
  height: 38px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: rgba(0,0,0,.35);
  color: var(--gold-2);
  font-size: 26px;
  line-height: 1;
  cursor: pointer;
}
.modal-summary { color: var(--muted); margin-top: -4px; }
.modal-open { overflow: hidden; }
@keyframes modalIn {
  from { opacity: 0; transform: translateY(12px) scale(.98); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

form { display: grid; gap: 14px; }
label { display: grid; gap: 7px; color: var(--gold-2); font-weight: 800; font-size: 13px; }
input, textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(0,0,0,.32);
  color: var(--text);
  padding: 14px 15px;
  outline: none;
  font: inherit;
}
textarea { resize: vertical; }
.row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.narrow { width: min(720px, calc(100% - 32px)); margin: 50px auto; }
.center { text-align: center; }
.success-box { text-align: center; }
.success-icon {
  width: 72px;
  height: 72px;
  display: grid;
  place-items: center;
  margin: 0 auto 14px;
  border-radius: 50%;
  color: #130f05;
  background: linear-gradient(135deg, var(--gold), var(--gold-2));
  font-size: 40px;
  font-weight: 900;
}
.order-id {
  display: inline-flex;
  margin: 10px 0 16px;
  padding: 14px 20px;
  border-radius: 18px;
  background: #0e0b07;
  color: var(--gold-2);
  border: 1px solid var(--line);
  font-size: 28px;
  font-weight: 950;
  letter-spacing: 1px;
}

.team-contact {
  max-width: 1000px;
  margin: 40px auto 30px;
  padding: clamp(26px, 4vw, 40px) clamp(18px, 4vw, 36px);
  border-radius: 22px;
  background: linear-gradient(135deg, rgba(37,211,102,.10), rgba(255,255,255,.02));
  border: 1px solid var(--line, #2a2418);
  text-align: center;
}
.team-contact-head h2 { font-size: clamp(22px, 3.5vw, 30px); margin: 6px 0 8px; }
.team-contact-head p { color: var(--muted, #9b8f73); margin: 0 auto 6px; max-width: 560px; }
.team-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 12px; margin-top: 22px;
}
.team-num {
  display: flex; align-items: center; justify-content: center; gap: 9px;
  padding: 14px 16px; border-radius: 14px;
  background: #ffffff; color: #0b3d1f;
  font-weight: 800; font-size: 16px; letter-spacing: .3px;
  text-decoration: none; border: 1px solid #d7e9dc;
  transition: transform .12s ease, box-shadow .12s ease;
}
.team-num:hover { transform: translateY(-2px); box-shadow: 0 10px 26px rgba(37,211,102,.28); }
.team-num .wa-ico { font-size: 18px; }

.edit-modal { display: none; position: fixed; inset: 0; z-index: 1000; }
.edit-modal.open { display: grid; place-items: center; }
.edit-backdrop { position: absolute; inset: 0; background: rgba(0,0,0,.6); }
.edit-card {
  position: relative; z-index: 1; width: min(480px, 92vw);
  max-height: 90vh; overflow: auto; padding: 24px;
  border-radius: 18px; background: #14100a; border: 1px solid var(--line, #2a2418);
  box-shadow: 0 20px 60px rgba(0,0,0,.5);
}
.edit-card h2 { margin: 0 0 16px; }
.edit-card label { display: flex; flex-direction: column; gap: 5px; margin-bottom: 12px; font-size: 13px; color: var(--muted, #9b8f73); }
.edit-card input, .edit-card select, .edit-card textarea {
  padding: 10px 12px; border-radius: 10px; color: inherit;
  border: 1px solid var(--line, #2a2418); background: rgba(255,255,255,.03);
}
.edit-row { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 10px; }
.edit-actions { display: flex; gap: 10px; justify-content: flex-end; margin-top: 8px; }

.rates-list { display: flex; flex-direction: column; gap: 10px; margin: 12px 0; }
.rate-card {
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
  padding: 12px 14px; border-radius: 12px;
  border: 1px solid var(--line, #2a2418); background: rgba(255,255,255,.02);
}
.rate-card.rate-ok { border-color: rgba(127,217,154,.5); background: rgba(127,217,154,.08); }
.rate-info strong { font-size: 15px; }
.rate-price { font-size: 18px; font-weight: 800; margin-top: 3px; }
.rate-tag { color: #7fd99a; font-size: 11px; font-weight: 700; }
.rate-card .book-btn { flex: 0 0 auto; padding: 9px 16px; font-size: 13px; }
.rate-high { color: #e0986a; }

.btn-mini {
  display: inline-block; padding: 6px 11px; border-radius: 8px; cursor: pointer;
  font-size: 12px; font-weight: 700; text-decoration: none;
  border: 1px solid var(--gold, #d4af37); background: rgba(212,175,55,.12); color: var(--gold-2, #e9c75a);
}
.btn-mini:hover { background: var(--gold, #d4af37); color: #130f05; }
.btn-mini:disabled { opacity: .6; cursor: default; }
.del-btn { border-color: #c0524a; background: rgba(192,82,74,.12); color: #e89a92; }
.del-btn:hover { background: #c0524a; color: #fff; }
.track-ok { font-size: 12px; color: #7fd99a; line-height: 1.4; }

.orders-head {
  display: flex; flex-wrap: wrap; gap: 14px;
  align-items: center; justify-content: space-between; margin-bottom: 14px;
}
.order-filters { display: flex; flex-wrap: wrap; gap: 10px; align-items: center; }
.filter-chips { display: flex; flex-wrap: wrap; gap: 8px; }
.chip {
  border: 1px solid var(--line, #2a2418);
  background: rgba(255,255,255,.03);
  color: inherit; padding: 7px 13px; border-radius: 999px;
  cursor: pointer; font-size: 13px; font-weight: 600;
}
.chip span {
  display: inline-block; margin-left: 5px; padding: 1px 7px;
  border-radius: 999px; background: rgba(255,255,255,.08); font-size: 11px;
}
.chip.active { background: linear-gradient(135deg, var(--gold), var(--gold-2)); color: #130f05; border-color: transparent; }
.chip.active span { background: rgba(0,0,0,.18); }
#orderSearch {
  padding: 9px 14px; border-radius: 10px; min-width: 230px;
  border: 1px solid var(--line, #2a2418); background: rgba(255,255,255,.03); color: inherit;
}
.order-form-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 12px; margin-bottom: 12px;
}
.order-form label { display: flex; flex-direction: column; gap: 5px; font-size: 13px; color: var(--muted, #9b8f73); }
.order-form input, .order-form select, .order-form textarea {
  padding: 9px 12px; border-radius: 10px;
  border: 1px solid var(--line, #2a2418); background: rgba(255,255,255,.03); color: inherit;
}

.seo-hero {
  text-align: center;
  padding: clamp(34px, 6vw, 70px) clamp(18px, 5vw, 40px) clamp(10px, 2vw, 24px);
  max-width: 920px;
  margin: 0 auto;
}
.live-counter {
  display: inline-flex; align-items: center; gap: 7px;
  margin: 14px 0; padding: 9px 15px; border-radius: 999px;
  background: rgba(212,175,55,.12); border: 1px solid rgba(212,175,55,.35);
  font-size: 14px; font-weight: 600;
}
.live-counter strong { color: var(--gold-2, #e9c75a); font-size: 16px; }
.live-counter.center { margin-left: auto; margin-right: auto; }
.trust-badges { display: flex; flex-wrap: wrap; gap: 8px; margin: 14px 0 16px; }
.trust-badges span {
  font-size: 12.5px; font-weight: 600; padding: 6px 11px; border-radius: 10px;
  background: rgba(255,255,255,.04); border: 1px solid var(--line, #2a2418);
}

.sp-toast {
  position: fixed; left: 18px; bottom: 18px; z-index: 900;
  display: flex; align-items: center; gap: 12px;
  width: min(330px, calc(100vw - 36px));
  padding: 13px 15px; border-radius: 14px;
  background: #fffdf7; color: #1a1407;
  border: 1px solid #e7dcc2; box-shadow: 0 14px 40px rgba(0,0,0,.3);
  transform: translateY(140%); opacity: 0;
  transition: transform .45s cubic-bezier(.2,.8,.2,1), opacity .45s;
  pointer-events: none;
}
.sp-toast.show { transform: translateY(0); opacity: 1; pointer-events: auto; }
.sp-ico {
  flex: 0 0 auto; width: 40px; height: 40px; border-radius: 50%;
  display: grid; place-items: center; font-size: 20px;
  background: linear-gradient(135deg, var(--gold, #d4af37), var(--gold-2, #e9c75a));
}
.sp-body { display: flex; flex-direction: column; line-height: 1.3; min-width: 0; }
.sp-body strong { font-size: 14px; }
.sp-body span { font-size: 13px; color: #4a4231; }
.sp-body small { font-size: 11px; color: #2e8b50; margin-top: 2px; font-weight: 600; }
.sp-close {
  position: absolute; top: 6px; right: 9px; border: 0; background: none;
  font-size: 17px; color: #b3a988; cursor: pointer; line-height: 1;
}
@media (max-width: 520px) { .sp-toast { left: 10px; bottom: 10px; } }

.seo-eyebrow { color: var(--gold, #d4af37); letter-spacing: 2px; text-transform: uppercase; font-weight: 700; margin-bottom: 10px; }
.seo-hero h1 {
  font-size: clamp(28px, 5vw, 46px);
  line-height: 1.12;
  margin: 0 0 14px;
}
.seo-hero-sub {
  color: var(--muted, #9b8f73);
  font-size: clamp(15px, 2.2vw, 18px);
  max-width: 720px;
  margin: 0 auto;
}
.section-title {
  text-align: center;
  font-size: clamp(20px, 3vw, 28px);
  margin: 0 0 22px;
}
.faq-section {
  max-width: 820px;
  margin: 10px auto 70px;
  padding: 0 clamp(18px, 5vw, 40px);
}
.faq-section > h2 { text-align: center; font-size: clamp(22px, 3.5vw, 32px); margin-bottom: 18px; }
.faq-item {
  border: 1px solid var(--line, #2a2418);
  border-radius: 14px;
  padding: 14px 18px;
  margin-bottom: 12px;
  background: rgba(255,255,255,.02);
}
.faq-item summary {
  cursor: pointer;
  font-weight: 700;
  font-size: 16px;
  list-style: none;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: " +"; color: var(--gold, #d4af37); float: right; }
.faq-item[open] summary::after { content: " −"; }
.faq-item p { margin: 12px 0 2px; color: var(--muted, #9b8f73); line-height: 1.55; }

.receipt-card {
  text-align: left;
  width: min(420px, 100%);
  margin: 18px auto 20px;
  padding: 22px;
  border-radius: 20px;
  background: #fffdf7;
  color: #1a1407;
  border: 1px solid #e7dcc2;
  box-shadow: 0 12px 40px rgba(0,0,0,.25);
}
.receipt-head { display: flex; justify-content: space-between; align-items: center; }
.receipt-brand { font-size: 24px; font-weight: 950; letter-spacing: 1px; color: #8a6d1f; }
.receipt-badge {
  font-size: 12px; font-weight: 800; padding: 5px 12px; border-radius: 999px;
  letter-spacing: .5px;
}
.receipt-badge.paid { background: #d8f5dd; color: #166a2c; }
.receipt-badge.pending { background: #fdeccd; color: #8a5a12; }
.receipt-orderid {
  display: flex; flex-direction: column; gap: 2px; margin: 16px 0;
  padding: 12px 14px; border-radius: 14px; background: #f4eddb;
}
.receipt-orderid strong { font-size: 22px; font-weight: 950; letter-spacing: 1px; color: #1a1407; }
.receipt-orderid .muted { font-size: 12px; }
.receipt-rows { display: flex; flex-direction: column; gap: 9px; }
.receipt-row { display: flex; justify-content: space-between; gap: 16px; font-size: 14px; }
.receipt-row span { color: #877a5c; }
.receipt-row b { text-align: right; font-weight: 700; word-break: break-word; }
.receipt-row.addr b { max-width: 62%; }
.receipt-divider { height: 1px; background: #e7dcc2; margin: 14px 0; }
.receipt-foot { margin-top: 16px; text-align: center; font-size: 12px; color: #a0916e; }

.admin { padding: 34px clamp(18px, 4vw, 60px) 80px; }
.admin-login { width: min(560px, 100%); margin: 60px auto; }
.hidden { display: none !important; }
.admin-grid { display: grid; grid-template-columns: 420px 1fr; gap: 18px; align-items: start; }
.admin-card { padding: 22px; }
.admin-card.wide { margin-top: 18px; }
.admin-card h2 { margin-top: 0; }
.table-wrap { overflow-x: auto; }
table { width: 100%; border-collapse: collapse; min-width: 760px; }
th, td { text-align: left; padding: 12px; border-bottom: 1px solid var(--line); vertical-align: top; }
th { color: var(--gold-2); font-size: 13px; }
td { color: #f4ead0; }

.footer { padding: 28px; text-align: center; color: var(--muted); border-top: 1px solid var(--line); }

@media (max-width: 860px) {
  .hero, .checkout-wrap, .admin-grid, .product-detail { grid-template-columns: 1fr; }
  .grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; }
  .related-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .conversion-strip { grid-template-columns: 1fr; }
  .brand-proof {
    grid-template-columns: 1fr;
    margin: 0 12px 24px;
    padding: 18px;
    border-radius: 24px;
  }
  .brand-proof-copy h2 {
    font-size: clamp(25px, 8vw, 36px);
    letter-spacing: -1.2px;
  }
  .proof-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }
  .proof-grid article {
    min-height: 116px;
    padding: 13px;
    border-radius: 18px;
  }
  .proof-grid article:last-child { min-height: 96px; }
  .proof-grid strong { font-size: clamp(23px, 7vw, 32px); }
  .proof-grid small { font-size: 12px; }
  .video-proof {
    margin: 0 12px 24px;
    padding: 14px;
    border-radius: 24px;
  }
  .video-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }
  .video-card {
    padding: 8px;
    border-radius: 18px;
  }
  .video-card img {
    border-radius: 13px;
    aspect-ratio: 1 / .86;
  }
  .play-badge {
    width: 40px;
    height: 40px;
    top: 39%;
  }
  .video-card strong {
    min-height: 48px;
    font-size: 12.5px;
  }
  .row { grid-template-columns: 1fr; }
  .hero-copy h1 { letter-spacing: -2px; }
  .topbar nav { display: none; }
  .section { padding-inline: 12px; padding-top: 12px; }
  .catalog-section { padding-top: 12px; }
  .product-card { border-radius: 20px; padding: 8px; }
  .product-media { border-radius: 15px; }
  .product-card-body { padding: 0 2px 2px; }
  .product-card h3 {
    margin: 10px 0 10px;
    font-size: clamp(13px, 3.8vw, 16px);
    line-height: 1.18;
    letter-spacing: -.2px;
  }
  .product-bottom { align-items: stretch; flex-direction: column; gap: 8px; }
  .product-bottom strong { font-size: 17px; }
  .product-bottom .btn { width: 100%; padding: 10px 8px; font-size: 13px; }
  .product-detail-page {
    padding: 12px 12px 96px;
  }
  .product-detail {
    border-radius: 22px;
    padding: 12px;
    gap: 18px;
  }
  .detail-image-wrap { border-radius: 18px; }
  .detail-copy h1 {
    font-size: clamp(28px, 9vw, 42px);
    letter-spacing: -1.3px;
  }
  .detail-price { font-size: 22px; }
  .shipping-line {
    width: 100%;
    margin: -6px 0 10px;
    padding: 10px 12px;
  }
  .shipping-line.total strong { font-size: 20px; }
  .detail-description { font-size: 15px; line-height: 1.6; }
  .pack-selector {
    margin-top: 18px;
    padding: 13px;
    border-radius: 18px;
  }
  .pack-selector h2 {
    font-size: clamp(20px, 6vw, 28px);
    margin-bottom: 12px;
  }
  .pack-options {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 9px;
  }
  .pack-option {
    min-height: 58px;
    border-width: 2px;
    font-size: clamp(18px, 6vw, 24px);
  }
  .pack-option.selected {
    grid-column: 1 / -1;
    min-height: 62px;
  }
  .pack-option.disabled::before,
  .pack-option.disabled::after {
    left: 20%;
    right: 20%;
    height: 4px;
  }
  .detail-actions .btn { width: 100%; }
  .trust-row span { width: 100%; border-radius: 16px; }
  .sticky-buy {
    position: fixed;
    left: 10px;
    right: 10px;
    bottom: 10px;
    z-index: 50;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    padding: 10px;
    border: 1px solid rgba(255,217,120,.32);
    border-radius: 20px;
    background: rgba(10,8,5,.92);
    box-shadow: 0 18px 42px rgba(0,0,0,.45);
    backdrop-filter: blur(14px);
  }
  .sticky-buy span,
  .sticky-buy small {
    display: block;
  }
  .sticky-buy span {
    color: var(--gold-2);
    font-weight: 950;
    font-size: 18px;
  }
  .sticky-buy small {
    max-width: 44vw;
    color: var(--muted);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  .sticky-buy .btn { padding: 11px 16px; white-space: nowrap; }
  .footer { padding-bottom: 96px; }
}

@media (max-width: 390px) {
  .grid { gap: 9px; }
  .product-card { padding: 7px; border-radius: 18px; }
  .product-card h3 { font-size: 12.5px; }
  .product-bottom strong { font-size: 15px; }
  .product-bottom .btn { font-size: 12px; padding: 9px 7px; }
}
