:root {
  --cream: #f2e8d0;
  --cream-dark: #e8d9b8;
  --green-deep: #1a3d2b;
  --green-mid: #2e5c3e;
  --green-light: #3d6b4f;
  --gold: #c9a84c;
  --gold-light: #e2c97e;
  --gold-pale: #f0e0a8;
  --black: #0d1a12;
  --text-dark: #1a2e1e;
  --text-mid: #3a4f3d;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", sans-serif;
  background: #ffffff;
  color: var(--text-dark);
  overflow-x: hidden;
}

/* ─── NAVBAR ─── */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 18px 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: transparent;
  transition:
    background 0.5s ease,
    backdrop-filter 0.5s ease;
}

nav.scrolled {
  background: rgba(26, 61, 43, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(201, 168, 76, 0.2);
}

.nav-logo {
  font-family: "Cinzel", serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: 4px;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.5);
}

.nav-logo span {
  color: var(--gold-light);
}

.nav-links {
  display: flex;
  gap: 12px;
  align-items: center;
}

.nav-link {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 9px 18px;
  border-radius: 4px;
  text-decoration: none;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  transition: all 0.3s ease;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.25);
}

.nav-link:hover {
  background: rgba(201, 168, 76, 0.2);
  border-color: var(--gold);
  color: var(--gold-light);
}

.nav-link.whatsapp {
  background: rgba(201, 168, 76, 0.15);
  border-color: var(--gold);
  color: var(--gold-light);
}

.nav-link.whatsapp:hover {
  background: var(--gold);
  color: var(--green-deep);
}

/* ─── HERO (VIDEO) ─── */
.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 1;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(10, 25, 15, 0.35) 0%,
    rgba(10, 25, 15, 0.55) 50%,
    rgba(10, 25, 15, 0.85) 100%
  );
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 3;
  text-align: center;
  padding: 0 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  margin-top: -80px; /* Shifted upward to stay within video safe area */
}

.hero-logo-img {
  width: 600px;
  height: auto;
  object-fit: contain;
  animation: fadeDown 1s ease-out 0.2s both;
  filter: drop-shadow(0 4px 24px rgba(0, 0, 0, 0.5));
}

.hero-tagline {
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: var(--gold-light);
  letter-spacing: 6px;
  text-transform: uppercase;
  margin-top: 8px;
  animation: fadeUp 1s ease-out 0.5s both;
}

.hero-divider {
  width: 80px;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--gold), transparent);
  margin: 12px auto;
  animation: fadeUp 1s ease-out 0.65s both;
}

.hero-desc {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(1.15rem, 2.5vw, 1.5rem);
  color: rgba(255, 255, 255, 0.88);
  line-height: 1.7;
  max-width: 560px;
  animation: fadeUp 1s ease-out 0.8s both;
}

.hero-desc strong {
  color: var(--gold-light);
  font-weight: 600;
}

/* ─── ENERGY TRIO ─── */
.energy-strip {
  background: var(--green-deep);
  padding: 60px 48px;
  display: flex;
  justify-content: center;
  gap: 0;
}

.energy-item {
  text-align: center;
  padding: 0 48px;
  position: relative;
  flex: 1;
  max-width: 280px;
}

.energy-item:not(:last-child)::after {
  content: "";
  position: absolute;
  right: 0;
  top: 10%;
  bottom: 10%;
  width: 1px;
  background: rgba(201, 168, 76, 0.25);
}

.energy-icon {
  font-size: 2rem;
  color: var(--gold);
  margin-bottom: 16px;
}

.energy-title {
  font-family: "Cinzel", serif;
  font-size: 0.85rem;
  letter-spacing: 3px;
  color: var(--gold-light);
  margin-bottom: 8px;
}

.energy-sub {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.6);
  font-style: italic;
}

/* ─── SECTION: ABOUT ─── */
.section {
  padding: 50px 24px;
  max-width: 1200px;
  margin: 0 auto;
}

.section-label {
  font-family: "Cinzel", serif;
  font-size: 0.7rem;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}

.section-title {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  font-weight: 600;
  color: var(--green-deep);
  line-height: 1.15;
  margin-bottom: 24px;
}

.section-title em {
  font-style: italic;
  color: var(--green-mid);
}

.section-body {
  font-size: 1rem;
  color: var(--text-mid);
  line-height: 1.9;
  max-width: 600px;
}

/* ─── BENEFITS ─── */
.benefits-wrap {
  background: var(--cream-dark);
  padding: 100px 48px;
}

.benefits-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.benefits-text .section-body {
  margin-bottom: 40px;
}

.benefit-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.benefit-list li {
  display: flex;
  align-items: center;
  gap: 14px;
  font-family: "Cormorant Garamond", serif;
  font-size: 1.15rem;
  color: var(--text-dark);
}

.benefit-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
}

.benefit-visual {
  display: flex;
  align-items: center;
  justify-content: center;
}

.benefit-circle {
  width: 340px;
  height: 340px;
  border-radius: 50%;
  background: radial-gradient(
    circle at 35% 35%,
    var(--green-mid),
    var(--green-deep)
  );
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  border: 1px solid rgba(201, 168, 76, 0.3);
  box-shadow:
    0 24px 80px rgba(26, 61, 43, 0.25),
    inset 0 1px 0 rgba(201, 168, 76, 0.15);
  text-align: center;
  padding: 40px;
}

.benefit-circle-text {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.1rem;
  font-style: italic;
  color: var(--gold-light);
  line-height: 1.6;
}

.benefit-circle-big {
  font-family: "Cinzel", serif;
  font-size: 0.75rem;
  letter-spacing: 4px;
  color: rgba(255, 255, 255, 0.4);
  text-transform: uppercase;
  margin-top: 16px;
}

/* ─── FOOTER ─── */
footer {
  background: var(--black);
  padding: 24px 48px;
  text-align: center;
  border-top: 1px solid rgba(201, 168, 76, 0.15);
}

footer p {
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.3);
  letter-spacing: 1px;
}

/* ─── PRODUCTS SHOWCASE ─── */
#products .section-label,
#products .section-title,
#mate .section-label,
#mate .section-title,
#bombillas .section-label,
#bombillas .section-title,
#tutorial .section-label,
#tutorial .section-title {
  text-align: center;
}

#products .section-label,
#mate .section-label,
#bombillas .section-label {
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  letter-spacing: 6px;
  margin-bottom: 32px;
}

#products .section-title {
  font-family: "Cinzel", serif;
  color: var(--gold);
  letter-spacing: 2px;
  text-transform: uppercase;
  font-size: clamp(1.4rem, 3vw, 2.2rem);
  font-weight: 600;
  line-height: 1.3;
}

#products .section-title em {
  font-family: "Cinzel", serif;
  font-style: normal;
  color: var(--gold-light);
}

.products-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  margin-top: 48px;
  justify-content: center;
}

.product-card {
  background: #ffffff;
  border: 1px solid rgba(26, 61, 43, 0.08);
  border-radius: 8px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  box-shadow: 0 10px 30px rgba(26, 61, 43, 0.05);
  max-width: 360px;
  margin: 0 auto;
  width: 100%;
  flex: 1 1 280px;
}

.product-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(26, 61, 43, 0.12);
  border-color: var(--gold);
}

.product-card.martin-fiero {
  flex: 1 1 100%;
}

.product-image-container {
  position: relative;
  width: 100%;
  padding-bottom: 125%; /* 4:5 Aspect Ratio for premium look */
  background: #ffffff;
  overflow: hidden;
}

.product-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1), opacity 0.2s ease;
}

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

.product-img-placeholder {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  color: var(--green-light);
  background: var(--cream-dark);
}

.product-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  padding: 6px 12px;
  font-family: "Cinzel", serif;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 1px;
  border-radius: 4px;
  text-transform: uppercase;
  z-index: 10;
}

.product-badge.out-of-stock {
  background: #7a1d1d;
  color: #fff;
}

.product-badge.low-stock {
  background: var(--gold);
  color: var(--green-deep);
  box-shadow: 0 4px 12px rgba(201, 168, 76, 0.3);
}

.product-info {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  text-align: center;
}

.product-name {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--green-deep);
  margin-bottom: 8px;
  text-transform: capitalize;
}

.product-price {
  font-family: "Inter", sans-serif;
  font-size: 1.15rem;
  font-weight: 500;
  color: var(--gold);
  margin-bottom: 20px;
}

.buy-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--green-deep);
  color: #fff;
  text-decoration: none;
  padding: 12px 20px;
  border-radius: 4px;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: all 0.3s ease;
  margin-top: auto;
  border: 1px solid transparent;
}

.buy-btn:hover {
  background: transparent;
  color: var(--green-deep);
  border-color: var(--green-deep);
}

/* ─── COLOR SELECTOR ─── */
.color-selector {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-bottom: 16px;
  margin-top: -4px;
}

.color-dot {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all 0.3s ease;
  box-shadow: inset 0 0 3px rgba(0, 0, 0, 0.25);
  display: inline-block;
}

.color-dot:hover {
  transform: scale(1.2);
}

.color-dot.active {
  border-color: var(--gold);
  box-shadow: 0 0 8px rgba(201, 168, 76, 0.6);
  transform: scale(1.15);
}

/* ─── ANIMATIONS ─── */
@keyframes fadeDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

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

/* ─── RESPONSIVE ─── */
@media (max-width: 768px) {

  /* ── Navbar ── */
  nav {
    padding: 12px 16px;
  }
  .nav-logo {
    font-size: 1rem;
    letter-spacing: 2px;
  }
  .nav-links {
    gap: 4px;
  }
  .nav-link {
    padding: 7px 10px;
    font-size: 0.68rem;
    gap: 4px;
    letter-spacing: 0.3px;
  }
  .nav-link i {
    font-size: 0.75rem;
  }

  /* ── Hero ── */
  .hero-logo-img {
    width: min(85vw, 300px);
    height: auto;
  }
  .hero-content {
    margin-top: -40px;
    padding: 0 16px;
  }
  .hero-tagline {
    font-size: 0.8rem;
    letter-spacing: 3px;
  }
  .hero-desc {
    font-size: 1rem;
    max-width: 100%;
  }

  /* ── Energy strip ── */
  .energy-strip {
    flex-direction: column;
    align-items: center;
    gap: 28px;
    padding: 40px 20px;
  }
  .energy-item {
    padding: 0 12px;
    max-width: 100%;
    width: 100%;
  }
  .energy-item::after {
    display: none;
  }

  /* ── Sections ── */
  .section {
    padding: 48px 16px;
  }
  .section-title {
    font-size: clamp(1.7rem, 7vw, 2.6rem);
  }
  .section-body {
    max-width: 100%;
  }

  /* ── Benefits ── */
  .benefits-wrap {
    padding: 48px 16px;
  }
  .benefits-inner {
    display: flex;
    flex-direction: column;
    gap: 36px;
    align-items: center;
  }
  .benefits-text {
    width: 100%;
  }
  .benefit-visual {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .benefit-circle {
    width: 240px;
    height: 240px;
    padding: 24px;
  }
  .benefit-circle-text {
    font-size: 0.9rem;
  }

  /* ── Product Cards ── */
  .products-grid {
    gap: 20px;
    margin-top: 28px;
  }
  .product-card {
    flex: 1 1 calc(50% - 10px);
    max-width: calc(50% - 10px);
    min-width: 140px;
  }
  .product-info {
    padding: 14px 10px;
  }
  .product-name {
    font-size: 1.05rem;
  }
  .product-price {
    font-size: 0.95rem;
    margin-bottom: 12px;
  }
  .product-actions {
    flex-direction: column;
    gap: 6px;
  }
  .cart-btn,
  .buy-btn-now {
    padding: 9px 6px;
    font-size: 0.7rem;
    letter-spacing: 0;
    gap: 4px;
  }
  .cart-btn i { display: none; }

  /* Section label (bombillas / mate / gourds big text) */
  #products .section-label,
  #mate .section-label,
  #bombillas .section-label {
    font-size: clamp(1.5rem, 6vw, 2.5rem);
    letter-spacing: 4px;
    margin-bottom: 20px;
  }

  /* ── Footer ── */
  footer {
    padding: 20px 16px;
  }
}

/* ── Small phones (≤480px) ── */
@media (max-width: 480px) {
  .nav-link span {
    display: none;
  }
  .nav-link {
    padding: 8px 10px;
  }
  .product-card {
    flex: 1 1 calc(50% - 8px);
    max-width: calc(50% - 8px);
  }
  .products-grid {
    gap: 12px;
  }
  .product-name {
    font-size: 0.9rem;
  }
  .product-price {
    font-size: 0.85rem;
  }
  .cart-btn,
  .buy-btn-now {
    padding: 8px 4px;
    font-size: 0.65rem;
  }
}

/* ── Very small phones (≤360px) ── */
@media (max-width: 360px) {
  .product-card {
    flex: 1 1 100%;
    max-width: 100%;
  }
  .hero-logo-img {
    width: 90vw;
  }
}

