:root {
  --bg: #0c0c0c;
  --panel: #141414;
  --panel-2: #1c1c1c;
  --soft: #f4f4f1;
  --soft-2: #ece8e2;
  --text: #f6f6f6;
  --muted: #b7b7b7;
  --ink: #111111;
  --line: rgba(255,255,255,0.09);
  --line-dark: rgba(0,0,0,0.12);
  --accent: #9b1010;
  --accent-2: #c92222;
  --accent-soft: rgba(155,16,16,0.14);
  --green: #25D366;
  --green-dark: #1ba851;
  --radius: 22px;
  --shadow: 0 20px 40px rgba(0,0,0,0.18);
  --max: 1220px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Montserrat', sans-serif;
  background: var(--soft);
  color: var(--ink);
  line-height: 1.55;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { font: inherit; }

.trust-bar {
  position: sticky;
  top: 0;
  z-index: 1200;
  background: #000;
  color: #fff;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.trust-bar-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 10px 20px;
  display: flex;
  gap: 12px;
  justify-content: space-between;
  align-items: center;
  font-size: 0.9rem;
  overflow-x: auto;
  white-space: nowrap;
}
.trust-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(255,255,255,0.08);
}

.site-header {
  position: sticky;
  top: 41px;
  z-index: 1100;
  background: rgba(12,12,12,0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.header-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 14px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand-mark { width: 180px; }
.nav-links {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.nav-links a {
  color: #f7f7f7;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  font-size: 0.82rem;
}
.nav-links a:hover,
.nav-links a.active { color: #ff4d4d; }

.container {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 20px;
}
.section {
  padding: 68px 0;
}
.section-soft { background: #fff; }
.section-dark {
  background: var(--bg);
  color: var(--text);
}
.section-alt { background: var(--soft-2); }
.section-title {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 24px;
}
.section-title h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: -0.03em;
}
.section-title p {
  max-width: 650px;
  color: #5f5f5f;
}
.section-dark .section-title p,
.section-dark .eyebrow,
.section-dark .small-note { color: rgba(255,255,255,0.75); }

.eyebrow {
  display: inline-flex;
  margin-bottom: 12px;
  color: var(--accent);
  font-weight: 700;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.small-note {
  color: #707070;
  font-size: 0.95rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-radius: 999px;
  padding: 13px 22px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  transition: transform .2s ease, opacity .2s ease, background-color .2s ease;
  border: 1px solid transparent;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: var(--accent); color: #fff; }
.btn-primary:hover { background: var(--accent-2); }
.btn-secondary { background: #fff; color: var(--ink); border-color: rgba(0,0,0,0.12); }
.btn-secondary:hover { background: #f2f2f2; }
.btn-whatsapp { background: var(--green); color: #fff; }
.btn-whatsapp:hover { background: var(--green-dark); }
.btn-ghost { background: transparent; color: inherit; border-color: currentColor; }
.btn-small { padding: 10px 16px; font-size: 0.82rem; }

.hero {
  background: radial-gradient(circle at top right, rgba(155,16,16,0.35), transparent 30%), var(--bg);
  color: var(--text);
  padding: 72px 0 56px;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 38px;
  align-items: center;
}
.hero-content h1 {
  font-size: clamp(2.8rem, 7vw, 5rem);
  line-height: 0.95;
  text-transform: uppercase;
  letter-spacing: -0.05em;
  margin-bottom: 18px;
}
.hero-content p {
  font-size: 1.08rem;
  max-width: 640px;
  color: rgba(255,255,255,0.82);
  margin-bottom: 28px;
}
.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
.hero-stamps {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 24px;
}
.hero-stamp {
  padding: 9px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.88);
  font-size: 0.88rem;
}
.hero-visual {
  position: relative;
}
.hero-card {
  background: linear-gradient(180deg, rgba(255,255,255,0.06), rgba(255,255,255,0.02));
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 28px;
  overflow: hidden;
  box-shadow: var(--shadow);
}
.hero-card img { width: 100%; aspect-ratio: 4/4.6; object-fit: cover; }
.hero-card-caption {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: end;
  background: rgba(0,0,0,0.72);
  padding: 16px;
  border-radius: 18px;
}
.hero-card-caption strong {
  display: block;
  color: #fff;
  font-size: 1.05rem;
}
.hero-card-caption span {
  color: rgba(255,255,255,0.74);
  font-size: 0.88rem;
}
.price-badge {
  display: inline-flex;
  padding: 10px 12px;
  border-radius: 14px;
  background: var(--accent);
  color: #fff;
  font-weight: 800;
}

.campaign-banner {
  border-radius: 24px;
  background: linear-gradient(125deg, #140202, #2a0909 65%, #111 100%);
  color: #fff;
  border: 1px solid rgba(255,255,255,0.07);
  box-shadow: var(--shadow);
  overflow: hidden;
}
.campaign-banner-inner {
  padding: 26px;
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 24px;
  align-items: center;
}
.campaign-banner h3 {
  font-size: clamp(1.6rem, 4vw, 2.3rem);
  margin-bottom: 10px;
  text-transform: uppercase;
}
.campaign-banner p { color: rgba(255,255,255,0.82); }
.campaign-badge {
  display: inline-block;
  margin-bottom: 10px;
  padding: 5px 10px;
  border-radius: 999px;
  background: rgba(255,255,255,0.1);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
}
.campaign-banner .campaign-art {
  background: rgba(255,255,255,0.04);
  border-radius: 22px;
  padding: 20px;
  display: grid;
  place-items: center;
}
.campaign-banner .campaign-art img { max-width: 100%; max-height: 190px; object-fit: contain; }

.product-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}
.product-card {
  background: #fff;
  border-radius: var(--radius);
  box-shadow: 0 14px 32px rgba(0,0,0,0.08);
  overflow: hidden;
  border: 1px solid rgba(0,0,0,0.06);
  display: flex;
  flex-direction: column;
}
.section-dark .product-card { background: var(--panel); border-color: rgba(255,255,255,0.06); color: var(--text); }
.product-media {
  position: relative;
  background: #f7f4f0;
  aspect-ratio: 1/1.08;
  overflow: hidden;
}
.section-dark .product-media { background: #1d1d1d; }
.product-media img,
.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.product-badges {
  position: absolute;
  left: 14px;
  top: 14px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  z-index: 3;
}
.product-badge {
  background: rgba(12,12,12,0.9);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  padding: 6px 9px;
  border-radius: 999px;
}
.product-content {
  padding: 18px 18px 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1;
}
.product-header {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  align-items: start;
}
.product-header h3 {
  font-size: 1.25rem;
  line-height: 1.05;
  text-transform: uppercase;
}
.product-price {
  font-size: 1.32rem;
  font-weight: 800;
  white-space: nowrap;
}
.product-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  color: #666;
  font-size: 0.88rem;
}
.section-dark .product-meta,
.section-dark .product-note,
.section-dark .details-box li,
.section-dark details summary { color: rgba(255,255,255,0.75); }
.product-note {
  color: #5f5f5f;
  font-size: 0.92rem;
}
.product-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: auto;
}
.product-trust {
  padding-top: 12px;
  border-top: 1px solid rgba(0,0,0,0.08);
  color: #666;
  font-size: 0.86rem;
  display: grid;
  gap: 5px;
}
.section-dark .product-trust { border-top-color: rgba(255,255,255,0.08); color: rgba(255,255,255,0.7); }

.slider { position: relative; width: 100%; height: 100%; }
.slide { display: none; width: 100%; height: 100%; }
.slide.active { display: block; }
.slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: none;
  background: rgba(12,12,12,0.74);
  color: #fff;
  display: grid;
  place-items: center;
  cursor: pointer;
  z-index: 4;
}
.slider-btn.prev { left: 12px; }
.slider-btn.next { right: 12px; }

.filters {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0 0 24px;
}
.filter-btn {
  border: 1px solid rgba(0,0,0,0.12);
  background: #fff;
  color: var(--ink);
  border-radius: 999px;
  padding: 10px 15px;
  cursor: pointer;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 0.8rem;
}
.filter-btn.active,
.filter-btn:hover {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
}
.hidden-product { display: none !important; }

.details-box {
  border-top: 1px solid rgba(0,0,0,0.08);
  padding-top: 12px;
}
.section-dark .details-box { border-top-color: rgba(255,255,255,0.08); }
.details-box details summary {
  cursor: pointer;
  font-weight: 700;
  list-style: none;
}
.details-box details summary::-webkit-details-marker { display: none; }
.details-box ul {
  list-style: none;
  display: grid;
  gap: 8px;
  margin-top: 12px;
}
.details-box li span {
  display: block;
  color: #7b7b7b;
  font-size: 0.84rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.section-dark .details-box li span { color: rgba(255,255,255,0.52); }

.collections-grid,
.info-grid,
.steps-grid,
.social-grid,
.faq-grid,
.contact-grid {
  display: grid;
  gap: 18px;
}
.collections-grid { grid-template-columns: repeat(5, minmax(0, 1fr)); }
.info-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.contact-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.split-grid { grid-template-columns: 1.1fr .9fr; }
.single-grid { grid-template-columns: minmax(0, 1fr); max-width: 720px; }
.legitimacy-grid { margin-top: 24px; }
.collection-card,
.info-card,
.step-card,
.social-card,
.faq-card,
.contact-card,
.feature-card {
  background: #fff;
  border-radius: 22px;
  border: 1px solid rgba(0,0,0,0.06);
  box-shadow: 0 14px 30px rgba(0,0,0,0.06);
  padding: 20px;
}
.section-dark .collection-card,
.section-dark .step-card,
.section-dark .social-card,
.section-dark .faq-card,
.section-dark .feature-card,
.section-dark .contact-card,
.section-dark .info-card { background: var(--panel); border-color: rgba(255,255,255,0.06); color: var(--text); }
.collection-card h3,
.info-card h3,
.step-card h3,
.social-card h3,
.faq-card h3,
.feature-card h3,
.contact-card h3 { text-transform: uppercase; font-size: 1.05rem; margin-bottom: 10px; }
.collection-card p,
.info-card p,
.step-card p,
.social-card p,
.faq-card p,
.feature-card p,
.contact-card p { color: #666; font-size: 0.94rem; }
.section-dark .collection-card p,
.section-dark .info-card p,
.section-dark .step-card p,
.section-dark .social-card p,
.section-dark .faq-card p,
.section-dark .feature-card p,
.section-dark .contact-card p { color: rgba(255,255,255,0.72); }
.collection-tag {
  display: inline-flex;
  padding: 7px 10px;
  border-radius: 999px;
  background: var(--accent-soft);
  color: var(--accent);
  font-size: 0.76rem;
  font-weight: 800;
  margin-bottom: 10px;
  text-transform: uppercase;
}

.feature-grid {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 24px;
  align-items: center;
}
.feature-visual {
  border-radius: 26px;
  overflow: hidden;
  box-shadow: var(--shadow);
  background: #151515;
}
.feature-visual img {
  width: 100%;
  aspect-ratio: 4/4.2;
  object-fit: cover;
}
.feature-copy p { margin-bottom: 14px; }
.feature-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 18px; }

.steps-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.step-number {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
  display: grid;
  place-items: center;
  font-weight: 800;
  margin-bottom: 12px;
}

.social-grid { grid-template-columns: repeat(5, minmax(0, 1fr)); }
.social-card strong {
  display: block;
  font-size: 1.45rem;
  margin-bottom: 6px;
}

.faq-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }

.instagram-band {
  background: linear-gradient(135deg, #141414, #230808);
  color: #fff;
  border-radius: 28px;
  padding: 28px;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: center;
}
.instagram-band p { color: rgba(255,255,255,0.8); max-width: 680px; }

.page-hero {
  background: var(--bg);
  color: var(--text);
  padding: 60px 0 34px;
}
.page-hero h1 {
  font-size: clamp(2.5rem, 6vw, 4rem);
  text-transform: uppercase;
  line-height: 0.95;
  margin-bottom: 10px;
}
.page-hero p { max-width: 760px; color: rgba(255,255,255,0.8); }

.contact-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.contact-link {
  display: inline-flex;
  margin-top: 12px;
  color: var(--accent);
  font-weight: 700;
}

.footer {
  background: #050505;
  color: #fff;
  padding: 34px 0 42px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 24px;
  align-items: start;
}
.footer-brand img { width: 190px; margin-bottom: 16px; }
.footer-brand p { color: rgba(255,255,255,0.72); max-width: 520px; }
.footer-links {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px 18px;
}
.footer-links a {
  color: rgba(255,255,255,0.88);
  font-weight: 600;
}
.footer-bottom {
  margin-top: 22px;
  padding-top: 18px;
  border-top: 1px solid rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.55);
  font-size: 0.88rem;
}

.floating-whatsapp,
.floating-instagram {
  position: fixed;
  right: 18px;
  border-radius: 999px;
  z-index: 1200;
  box-shadow: 0 14px 28px rgba(0,0,0,0.22);
  font-weight: 800;
  text-transform: uppercase;
}
.floating-whatsapp {
  bottom: 18px;
  background: var(--green);
  color: #fff;
  padding: 14px 18px;
}
.floating-instagram {
  bottom: 76px;
  background: #111;
  color: #fff;
  padding: 10px 14px;
  font-size: 0.82rem;
  opacity: 0.86;
}

@media (max-width: 1100px) {
  .hero-grid,
  .campaign-banner-inner,
  .feature-grid,
  .footer-grid { grid-template-columns: 1fr; }
  .product-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .collections-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .social-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}

@media (max-width: 760px) {
  .site-header { top: 40px; }
  .header-inner { flex-direction: column; align-items: flex-start; }
  .nav-links { justify-content: flex-start; gap: 12px; }
  .product-grid,
  .collections-grid,
  .steps-grid,
  .social-grid,
  .faq-grid,
  .contact-grid,
  .info-grid,
  .split-grid { grid-template-columns: 1fr; }
  .hero,
  .page-hero { padding-top: 44px; }
  .section { padding: 52px 0; }
  .section-title { flex-direction: column; align-items: flex-start; }
  .instagram-band { flex-direction: column; align-items: flex-start; }
  .floating-instagram { bottom: 82px; }
}

.hero-auto-slider { position: relative; width: 100%; height: 100%; aspect-ratio: 4 / 4.6; }
.hero-auto-slider .slide { position: absolute; inset: 0; }
.hero-auto-slider .slide img { width: 100%; height: 100%; object-fit: cover; }
.hero-card-caption.generic { justify-content: flex-start; }
.hero-card-caption.generic .price-badge { display:none; }
.section-title.clean p { display:none; }
.page-hero.clean p { display:none; }


/* Mobile polish */
@media (max-width: 760px) {
  .trust-bar-inner {
    padding: 8px 12px;
    font-size: 0.78rem;
    gap: 8px;
  }
  .site-header {
    top: 36px;
  }
  .header-inner {
    padding: 12px 14px;
    gap: 10px;
    align-items: flex-start;
  }
  .brand-mark {
    width: 150px;
  }
  .nav-links {
    width: 100%;
    flex-wrap: nowrap;
    overflow-x: auto;
    gap: 14px;
    padding-bottom: 2px;
    -ms-overflow-style: none;
    scrollbar-width: none;
  }
  .nav-links::-webkit-scrollbar {
    display: none;
  }
  .nav-links a {
    font-size: 0.78rem;
    white-space: nowrap;
  }
  .hero,
  .page-hero {
    padding: 36px 0 26px;
  }
  .hero-grid {
    gap: 22px;
  }
  .hero-content h1,
  .page-hero h1 {
    font-size: clamp(2.2rem, 13vw, 3.8rem);
    line-height: 0.95;
  }
  .hero-content p {
    font-size: 0.98rem;
    margin-bottom: 20px;
  }
  .hero-actions {
    gap: 10px;
  }
  .btn {
    padding: 12px 18px;
    font-size: 0.8rem;
  }
  .hero-stamps {
    display: none;
  }
  .hero-card,
  .feature-visual,
  .campaign-banner,
  .instagram-band,
  .product-card,
  .collection-card,
  .info-card,
  .step-card,
  .social-card,
  .faq-card,
  .contact-card,
  .feature-card {
    border-radius: 18px;
  }
  .hero-auto-slider,
  .hero-card img {
    aspect-ratio: 4 / 4.8;
  }
  .hero-card-caption {
    left: 12px;
    right: 12px;
    bottom: 12px;
    padding: 12px;
    border-radius: 14px;
  }
  .hero-card-caption strong {
    font-size: 0.98rem;
  }
  .hero-card-caption span {
    font-size: 0.82rem;
  }
  .section {
    padding: 44px 0;
  }
  .section-title {
    margin-bottom: 20px;
    gap: 10px;
  }
  .section-title h2 {
    font-size: clamp(1.8rem, 10vw, 2.6rem);
  }
  .section-title p,
  .small-note,
  .collection-card p,
  .info-card p,
  .step-card p,
  .social-card p,
  .faq-card p,
  .feature-card p,
  .contact-card p,
  .product-note,
  .product-trust,
  .product-meta {
    font-size: 0.92rem;
  }
  .product-grid {
    gap: 18px;
  }
  .product-content {
    padding: 16px;
    gap: 10px;
  }
  .product-header h3 {
    font-size: 1rem;
  }
  .product-price {
    font-size: 1.1rem;
  }
  .product-actions {
    gap: 8px;
  }
  .slider-btn {
    width: 34px;
    height: 34px;
    padding: 0;
  }
  .campaign-banner-inner,
  .feature-grid,
  .instagram-band {
    gap: 18px;
  }
  .campaign-banner-inner,
  .instagram-band {
    padding: 0;
  }
  .campaign-banner {
    padding: 20px;
  }
  .campaign-banner h3 {
    font-size: 1.6rem;
  }
  .collection-tag,
  .campaign-badge,
  .product-badge {
    font-size: 0.68rem;
  }
  .floating-whatsapp {
    right: 12px;
    bottom: 12px;
    padding: 12px 14px;
    font-size: 0.78rem;
  }
  .floating-instagram {
    display: none;
  }
}
