:root {
  --black: #050505;
  --black-soft: #0b0b0b;
  --black-light: #111111;
  --white: #ffffff;
  --gray: #a4a4a4;
  --gray-light: #d8d8d8;
  --gold: #d4af37;
  --gold-light: #f3d978;
  --border: rgba(255, 255, 255, 0.12);
  --container: 1180px;
  --radius: 18px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  background: var(--black);
  color: var(--white);
  font-family: Arial, Helvetica, sans-serif;
  overflow-x: hidden;
}

img {
  display: block;
  max-width: 100%;
}

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

.container {
  width: min(100% - 40px, var(--container));
  margin: 0 auto;
}

.gold {
  color: var(--gold);
}

/* =========================
   HEADER
========================= */

.header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
  width: 100%;
  background: rgba(5, 5, 5, 0.82);
  border-bottom: 1px solid rgba(212, 175, 55, 0.12);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.nav {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.nav-logo {
  width: 76px;
  flex-shrink: 0;
}

.nav-logo img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

.nav-menu {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
  margin-left: auto;
}

.nav-menu a {
  position: relative;
  color: #d4d4d4;
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: color 0.3s ease;
}

.nav-menu a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width 0.3s ease;
}

.nav-menu a:hover {
  color: var(--gold);
}

.nav-menu a:hover::after {
  width: 100%;
}

.whatsapp-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 44px;
  padding: 0 18px;
  border: 1px solid var(--gold);
  border-radius: 999px;
  background: var(--gold);
  color: #080808;
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.04em;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.whatsapp-button:hover {
  background: transparent;
  color: var(--gold);
  transform: translateY(-2px);
  box-shadow: 0 8px 26px rgba(212, 175, 55, 0.2);
}

.menu-toggle {
  display: none;
  border: 0;
  background: transparent;
  color: var(--white);
  font-size: 26px;
  cursor: pointer;
}

/* =========================
   CARRINHO
========================= */

.cart-toggle {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: transparent;
  color: var(--white);
  cursor: pointer;
  transition: border-color 0.3s ease, color 0.3s ease, transform 0.3s ease;
}

.cart-toggle:hover {
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-2px);
}

.cart-toggle svg {
  width: 20px;
  height: 20px;
}

.cart-count {
  position: absolute;
  top: -6px;
  right: -6px;
  display: none;
  align-items: center;
  justify-content: center;
  min-width: 18px;
  height: 18px;
  padding: 0 4px;
  border-radius: 999px;
  background: var(--gold);
  color: #050505;
  font-size: 10px;
  font-weight: 800;
}

.cart-count.visible {
  display: flex;
}

.cart-overlay {
  position: fixed;
  inset: 0;
  z-index: 1200;
  background: rgba(0, 0, 0, 0.6);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.cart-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

.cart-drawer {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 1300;
  display: flex;
  flex-direction: column;
  width: min(420px, 100%);
  height: 100%;
  padding: 26px;
  border-left: 1px solid rgba(212, 175, 55, 0.18);
  background: var(--black-soft);
  transform: translateX(100%);
  transition: transform 0.35s ease;
  overflow-y: auto;
}

.cart-drawer.active {
  transform: translateX(0);
}

.cart-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 26px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--border);
}

.cart-header h2 {
  font-size: 20px;
  letter-spacing: -0.02em;
}

.cart-close {
  border: 0;
  background: transparent;
  color: var(--white);
  font-size: 26px;
  line-height: 1;
  cursor: pointer;
  transition: color 0.3s ease;
}

.cart-close:hover {
  color: var(--gold);
}

.cart-items {
  display: flex;
  flex-direction: column;
  gap: 18px;
  flex: 1;
}

.cart-item {
  display: grid;
  grid-template-columns: 64px 1fr auto;
  align-items: center;
  gap: 14px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--border);
}

.cart-item-image {
  width: 64px;
  height: 64px;
  object-fit: contain;
  padding: 6px;
  border: 1px solid var(--border);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.03);
}

.cart-item-info {
  display: flex;
  flex-direction: column;
  gap: 6px;
  min-width: 0;
}

.cart-item-name {
  font-size: 14px;
  font-weight: 700;
}

.cart-item-price {
  color: var(--gray);
  font-size: 13px;
}

.cart-item-qty {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 2px;
}

.qty-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: transparent;
  color: var(--white);
  font-size: 14px;
  line-height: 1;
  cursor: pointer;
  transition: border-color 0.3s ease, color 0.3s ease;
}

.qty-btn:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.cart-item-remove {
  align-self: start;
  border: 0;
  background: transparent;
  color: #8a8a8a;
  font-size: 18px;
  cursor: pointer;
  transition: color 0.3s ease;
}

.cart-item-remove:hover {
  color: var(--gold);
}

.cart-empty {
  display: none;
  padding: 40px 0;
  color: var(--gray);
  font-size: 14px;
  text-align: center;
}

.cart-empty.visible {
  display: block;
}

.cart-empty a {
  display: inline-block;
  margin-top: 10px;
  color: var(--gold);
  font-weight: 700;
  border-bottom: 1px solid rgba(212, 175, 55, 0.4);
}

.cart-footer {
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid var(--border);
}

.cart-total-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 18px;
  font-size: 16px;
  font-weight: 700;
}

.cart-total-value {
  color: var(--gold);
}

.cart-checkout-button {
  width: 100%;
  border: 0;
  cursor: pointer;
}

.cart-checkout-button:disabled {
  opacity: 0.4;
  cursor: not-allowed;
}

.cart-checkout-button:disabled:hover {
  background: var(--gold);
  color: #050505;
  transform: none;
  box-shadow: none;
}

.cart-note {
  margin-top: 14px;
  color: #8a8a8a;
  font-size: 12px;
  line-height: 1.6;
  text-align: center;
}

body.cart-open {
  overflow: hidden;
}

/* =========================
   HERO
========================= */

.hero {
  position: relative;
  min-height: 760px;
  display: flex;
  align-items: center;
  overflow: hidden;
  isolation: isolate;
  padding: 150px 0 100px;
  background:
    radial-gradient(
      circle at 50% 35%,
      rgba(212, 175, 55, 0.16),
      transparent 22%
    ),
    radial-gradient(
      circle at 85% 80%,
      rgba(212, 175, 55, 0.08),
      transparent 28%
    ),
    var(--black);
}

.hero::before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 12%;
  left: -8%;
  width: 42vw;
  height: 42vw;
  border: 1px solid rgba(212, 175, 55, 0.1);
  border-radius: 50%;
  transform: rotate(-22deg);
}

.hero::after {
  content: "TCLUB";
  position: absolute;
  z-index: -1;
  right: -3%;
  bottom: 0;
  color: rgba(255, 255, 255, 0.018);
  font-size: clamp(120px, 22vw, 350px);
  font-weight: 900;
  letter-spacing: -0.09em;
  line-height: 0.8;
  pointer-events: none;
}

.hero-content {
  max-width: 760px;
}

.hero-logo {
  width: min(290px, 70vw);
  margin-bottom: 34px;
  filter: drop-shadow(0 0 24px rgba(212, 175, 55, 0.15));
  animation: floatingLogo 5s ease-in-out infinite;
}

@keyframes floatingLogo {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-8px);
  }
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 28px;
  height: 1px;
  background: var(--gold);
}

.hero h1 {
  max-width: 760px;
  margin-bottom: 22px;
  font-size: clamp(48px, 8vw, 102px);
  line-height: 0.94;
  letter-spacing: -0.075em;
  font-weight: 900;
}

.hero h1 span {
  color: var(--gold);
}

.hero-description {
  max-width: 620px;
  margin-bottom: 34px;
  color: var(--gray);
  font-size: 17px;
  line-height: 1.7;
}

.primary-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 25px;
  border: 1px solid var(--gold);
  border-radius: 999px;
  background: var(--gold);
  color: #050505;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: all 0.3s ease;
}

.primary-button:hover {
  background: transparent;
  color: var(--gold);
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(212, 175, 55, 0.18);
}

.secondary-button {
  background: transparent;
  color: var(--gold);
}

.secondary-button:hover {
  background: var(--gold);
  color: #050505;
}

/* =========================
   SEÇÕES
========================= */

section {
  scroll-margin-top: 90px;
}

.section {
  padding: 120px 0;
}

.section-header {
  max-width: 700px;
  margin-bottom: 58px;
}

.section-title {
  margin-bottom: 18px;
  font-size: clamp(36px, 5vw, 64px);
  line-height: 1;
  letter-spacing: -0.06em;
}

.section-description {
  color: var(--gray);
  font-size: 16px;
  line-height: 1.75;
}

/* =========================
   QUEM SOMOS
========================= */

.about {
  background:
    linear-gradient(
      135deg,
      rgba(212, 175, 55, 0.05),
      transparent 35%
    ),
    var(--black-soft);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 0.85fr;
  align-items: center;
  gap: 80px;
}

.about-text p {
  margin-bottom: 18px;
  color: #c1c1c1;
  font-size: 16px;
  line-height: 1.8;
}

.about-image {
  position: relative;
  min-height: 490px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border: 1px solid rgba(212, 175, 55, 0.18);
  border-radius: 28px;
  background:
    radial-gradient(
      circle at 50% 45%,
      rgba(212, 175, 55, 0.18),
      transparent 34%
    ),
    #090909;
}

.about-image::before,
.about-image::after {
  content: "";
  position: absolute;
  border: 1px solid rgba(255, 255, 255, 0.08);
  transform: rotate(28deg);
}

.about-image::before {
  width: 280px;
  height: 420px;
}

.about-image::after {
  width: 420px;
  height: 280px;
  transform: rotate(-28deg);
}

.about-image img {
  position: relative;
  z-index: 1;
  width: 68%;
  max-height: 340px;
  object-fit: contain;
  filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.55));
}

/* =========================
   PRODUTOS
========================= */

.products {
  background: var(--black);
}

.products-header {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 30px;
}

.products-header .section-header {
  margin-bottom: 0;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 58px 26px;
  margin-top: 70px;
}

.product-grid--featured {
  grid-template-columns: repeat(3, minmax(0, 275px));
  justify-content: center;
}

.product {
  min-width: 0;
  text-align: center;
  transition: transform 0.35s ease;
}

.product:hover {
  transform: translateY(-7px);
}

.product-media {
  min-height: 255px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 21px;
  padding: 18px;
  border-bottom: 1px solid rgba(212, 175, 55, 0.32);
  background:
    radial-gradient(
      circle at center,
      rgba(255, 255, 255, 0.045),
      transparent 70%
    );
}

.product-media img {
  width: 100%;
  height: 220px;
  object-fit: contain;
  transition: transform 0.4s ease;
  filter: drop-shadow(0 12px 20px rgba(0, 0, 0, 0.5));
}

.product:hover .product-media img {
  transform: scale(1.05);
}

.product-colors {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}

.color-swatch {
  width: 22px;
  height: 22px;
  padding: 0;
  border-radius: 50%;
  border: 2px solid var(--border);
  background: var(--swatch, #333);
  cursor: pointer;
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.color-swatch:hover {
  transform: scale(1.12);
}

.color-swatch.active {
  border-color: var(--gold);
  box-shadow: 0 0 0 2px rgba(212, 175, 55, 0.35);
}

.product-name {
  color: var(--white);
  font-size: 15px;
  font-weight: 700;
  line-height: 1.35;
}

.product-name::after {
  content: "";
  display: block;
  width: 28px;
  height: 2px;
  margin: 12px auto 0;
  background: var(--gold);
  transition: width 0.3s ease;
}

.product:hover .product-name::after {
  width: 52px;
}

.product-price {
  display: block;
  margin: 14px 0 16px;
  color: var(--gold-light);
  font-size: 14px;
  font-weight: 700;
}

.add-to-cart-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 42px;
  padding: 0 16px;
  border: 1px solid var(--gold);
  border-radius: 999px;
  background: transparent;
  color: var(--gold);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s ease;
}

.add-to-cart-button:hover {
  background: var(--gold);
  color: #050505;
}

.add-to-cart-button.added {
  border-color: #4caf50;
  color: #4caf50;
  background: transparent;
}

.product-cta {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
  margin-top: 58px;
  text-align: center;
}

/* =========================
   DIFERENCIAIS
========================= */

.benefits {
  background: var(--black-soft);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 24px;
}

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

.benefit {
  padding: 25px 18px;
  border-left: 1px solid rgba(212, 175, 55, 0.3);
}

.benefit-icon {
  display: block;
  margin-bottom: 17px;
  color: var(--gold);
  font-size: 24px;
}

.benefit h3 {
  margin-bottom: 8px;
  font-size: 15px;
  line-height: 1.35;
}

.benefit p {
  color: var(--gray);
  font-size: 13px;
  line-height: 1.55;
}

/* =========================
   CTA FINAL
========================= */

.final-cta {
  position: relative;
  overflow: hidden;
  padding: 145px 0;
  text-align: center;
  background:
    radial-gradient(
      circle at center,
      rgba(212, 175, 55, 0.15),
      transparent 35%
    ),
    var(--black);
}

.final-cta::before {
  content: "CULTURE";
  position: absolute;
  left: 50%;
  bottom: -24px;
  transform: translateX(-50%);
  color: rgba(255, 255, 255, 0.025);
  font-size: clamp(90px, 17vw, 250px);
  font-weight: 900;
  letter-spacing: -0.1em;
  pointer-events: none;
  white-space: nowrap;
}

.final-cta-content {
  position: relative;
  z-index: 1;
}

.final-cta h2 {
  max-width: 850px;
  margin: 0 auto 20px;
  font-size: clamp(42px, 7vw, 88px);
  line-height: 0.98;
  letter-spacing: -0.075em;
}

.final-cta p {
  max-width: 520px;
  margin: 0 auto 32px;
  color: var(--gray);
  font-size: 16px;
  line-height: 1.7;
}

/* =========================
   PAGE HERO (páginas internas)
========================= */

.page-hero {
  position: relative;
  padding: 150px 0 80px;
  background:
    radial-gradient(
      circle at 50% 0%,
      rgba(212, 175, 55, 0.14),
      transparent 40%
    ),
    var(--black);
  border-bottom: 1px solid rgba(212, 175, 55, 0.12);
}

.page-hero h1 {
  max-width: 720px;
  margin-bottom: 16px;
  font-size: clamp(38px, 6vw, 66px);
  line-height: 1.02;
  letter-spacing: -0.06em;
  font-weight: 900;
}

.page-hero p {
  max-width: 620px;
  color: var(--gray);
  font-size: 16px;
  line-height: 1.75;
}

/* =========================
   CATEGORIAS DE PRODUTOS
========================= */

.category-block + .category-block {
  margin-top: 100px;
}

.category-header {
  margin-bottom: 46px;
}

.category-header h2 {
  font-size: clamp(28px, 4vw, 42px);
  letter-spacing: -0.05em;
  line-height: 1.1;
  margin-bottom: 10px;
}

.category-header p {
  max-width: 620px;
  color: var(--gray);
  font-size: 15px;
  line-height: 1.7;
}

/* =========================
   QUEM SOMOS (página)
========================= */

.about-page .about-grid {
  margin-bottom: 0;
}

/* =========================
   PARCEIROS
========================= */

.partner-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: start;
}

.partner-text p {
  margin-bottom: 18px;
  color: #c1c1c1;
  font-size: 16px;
  line-height: 1.8;
}

.partner-benefits {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.partner-benefit {
  padding: 22px 24px;
  border: 1px solid var(--border);
  border-left: 2px solid var(--gold);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.02);
}

.partner-benefit h3 {
  margin-bottom: 8px;
  font-size: 16px;
}

.partner-benefit p {
  color: var(--gray);
  font-size: 14px;
  line-height: 1.6;
}

.partner-cta {
  margin-top: 40px;
}

/* =========================
   ONDE ESTAMOS
========================= */

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

.store-card {
  padding: 30px 26px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.02);
  transition: transform 0.3s ease, border-color 0.3s ease;
}

.store-card:hover {
  transform: translateY(-6px);
  border-color: rgba(212, 175, 55, 0.35);
}

.store-city {
  display: inline-block;
  margin-bottom: 14px;
  color: var(--gold);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.store-card h3 {
  margin-bottom: 10px;
  font-size: 19px;
}

.store-card p {
  margin-bottom: 6px;
  color: var(--gray);
  font-size: 14px;
  line-height: 1.6;
}

.store-hours {
  margin-top: 12px;
  color: #8a8a8a;
  font-size: 13px;
}

.store-map-link {
  display: inline-block;
  margin-top: 16px;
  color: var(--gold);
  font-size: 13px;
  font-weight: 700;
  border-bottom: 1px solid rgba(212, 175, 55, 0.4);
}

.store-note {
  margin-top: 50px;
  padding: 20px 24px;
  border: 1px dashed rgba(212, 175, 55, 0.3);
  border-radius: 12px;
  color: var(--gray);
  font-size: 14px;
  line-height: 1.7;
}

.store-note code {
  padding: 2px 6px;
  border-radius: 4px;
  background: rgba(212, 175, 55, 0.1);
  color: var(--gold-light);
  font-size: 13px;
}

/* =========================
   SEÇÃO "VER MAIS" (home)
========================= */

.section-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 22px;
  color: var(--gold);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border-bottom: 1px solid rgba(212, 175, 55, 0.4);
}

/* =========================
   FOOTER
========================= */

.footer {
  padding: 46px 0 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background: #030303;
}

.footer-content {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 25px;
}

.footer-logo {
  width: 70px;
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 22px;
  color: var(--gray);
  font-size: 13px;
}

.footer-nav a {
  transition: color 0.3s ease;
}

.footer-nav a:hover {
  color: var(--gold);
}

.footer-links {
  display: flex;
  align-items: center;
  gap: 24px;
  color: var(--gray);
  font-size: 13px;
}

.footer-links a {
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: var(--gold);
}

.footer-bottom {
  width: 100%;
  margin-top: 30px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.copyright {
  color: #686868;
  font-size: 12px;
}

/* =========================
   ANIMAÇÕES
========================= */

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 0.8s ease,
    transform 0.8s ease;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* =========================
   RESPONSIVIDADE
========================= */

@media (max-width: 1000px) {
  .product-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .benefits-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .benefit:nth-child(4),
  .benefit:nth-child(5) {
    margin-top: 12px;
  }

  .partner-grid {
    grid-template-columns: 1fr;
    gap: 45px;
  }

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

@media (max-width: 780px) {
  .container {
    width: min(100% - 30px, var(--container));
  }

  .nav {
    min-height: 70px;
  }

  .menu-toggle {
    display: block;
    order: 3;
  }

  .nav-menu {
    position: absolute;
    top: 70px;
    left: 15px;
    right: 15px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 8px;
    border: 1px solid rgba(212, 175, 55, 0.16);
    border-radius: 16px;
    background: rgba(10, 10, 10, 0.97);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.45);
  }

  .nav-menu.active {
    display: flex;
  }

  .nav-menu a {
    padding: 15px;
  }

  .nav-menu a::after {
    display: none;
  }

  .nav > .whatsapp-button {
    display: none;
  }

  .cart-toggle {
    margin-left: auto;
    order: 2;
  }

  .cart-drawer {
    padding: 22px;
  }

  .hero {
    min-height: 720px;
    padding-top: 130px;
  }

  .hero-logo {
    width: 220px;
    margin-bottom: 28px;
  }

  .hero-description {
    font-size: 15px;
  }

  .section {
    padding: 85px 0;
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 45px;
  }

  .about-image {
    min-height: 340px;
    order: -1;
  }

  .about-image img {
    width: 62%;
    max-height: 250px;
  }

  .products-header {
    display: block;
  }

  .product-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 48px 16px;
    margin-top: 48px;
  }

  .product-media {
    min-height: 210px;
    padding: 10px;
  }

  .product-media img {
    height: 180px;
  }

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

  .benefit:nth-child(4),
  .benefit:nth-child(5) {
    margin-top: 0;
  }

  .footer-content {
    flex-direction: column;
    text-align: center;
  }

  .footer-nav,
  .footer-links {
    flex-wrap: wrap;
    justify-content: center;
  }

  .store-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 460px) {
  .hero h1 {
    font-size: 52px;
  }

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

  .product-media {
    min-height: 170px;
  }

  .product-media img {
    height: 145px;
  }

  .product-name {
    font-size: 13px;
  }

  .benefits-grid {
    grid-template-columns: 1fr;
  }

  .steps-grid {
    grid-template-columns: 1fr;
  }

  .benefit {
    padding: 20px 0 20px 18px;
  }

  .final-cta {
    padding: 100px 0;
  }
}
