/* ================================================================
   HIKE – Premium Hydration Brand | Landing Page Styles
   ================================================================ */

/* ---- VARIABLES ---- */
:root {
  --color-bg: #cec8c1;
  --color-surface: #dad4cd;
  --color-surface-2: #c3bcb5;
  --color-border: rgba(0,0,0,0.08);
  --color-text: #111111;
  --color-text-muted: rgba(0, 0, 0, 0.55);
  --color-olive: #2d5a27;
  --color-olive-light: #1b4d32;
  --color-stone: #4a5d4e;
  --color-accent: #000000;
  --color-accent-hover: #1a1a1a;
  --color-accent-dark: #000000;
  --color-white: #ffffff;
  --font: 'Outfit', sans-serif;
  --nav-h: 72px;
  --section-pad: clamp(80px, 10vw, 140px);
  --radius: 12px;
  --radius-lg: 20px;
  --shadow: 0 24px 64px rgba(0,0,0,0.12);
  --transition: 0.35s cubic-bezier(0.25,0.46,0.45,0.94);
}

/* ---- RESET ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  background-color: var(--color-bg);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23n)' opacity='0.08'/%3E%3C/svg%3E");
  color: var(--color-text);
  font-family: var(--font);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ---- TYPOGRAPHY ---- */
h1, h2, h3, h4 { line-height: 1.05; }
.section-eyebrow {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: 12px;
}
.section-title {
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  line-height: 1;
  color: #1b4d32;
}
.accent-text { color: var(--color-accent); }

/* ---- LAYOUT ---- */
.container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 clamp(24px, 7vw, 100px);
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.section {
  padding: var(--section-pad) 0;
}
.section-header {
  margin-bottom: clamp(48px, 6vw, 80px);
  text-align: center;
}

/* ---- BUTTONS ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 15px 32px;
  border-radius: 6px;
  font-family: var(--font);
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  cursor: pointer;
  border: none;
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition);
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary {
  background: var(--color-accent);
  color: #ffffff;
  box-shadow: 0 4px 24px rgba(0,0,0,0.15);
}
.btn-primary:hover {
  background: #333333;
  box-shadow: 0 8px 40px rgba(0,0,0,0.25);
}
.btn-ghost {
  background: transparent;
  color: var(--color-text);
  border: 2px solid rgba(0,0,0,0.25);
}
.btn-ghost:hover {
  border-color: rgba(0,0,0,0.6);
  background: rgba(0,0,0,0.05);
}
.btn-ghost-light {
  background: transparent;
  color: var(--color-white);
  border: 1.5px solid rgba(255,255,255,0.5);
}
.btn-ghost-light:hover {
  background: rgba(255,255,255,0.12);
  border-color: var(--color-white);
}
.btn-secondary {
  background: transparent;
  color: var(--color-accent);
  border: 1.5px solid var(--color-accent);
  padding: 11px 24px;
  font-size: 0.72rem;
}
.btn-secondary:hover {
  background: var(--color-accent);
  color: #ffffff;
  box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}
.btn-arrow {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

/* ================================================================
   NAVBAR
   ================================================================ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: calc(var(--nav-h) + 15px);
  display: flex;
  align-items: center;
  background: rgba(206,200,193,0.92);
  border-bottom: 1px solid rgba(0,0,0,0.07);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: all var(--transition);
}
.navbar.scrolled {
  background: rgba(206,200,193,0.98);
  height: var(--nav-h);
  box-shadow: 0 4px 30px rgba(0,0,0,0.08);
  border-bottom: 1px solid rgba(0,0,0,0.05);
}
.nav-container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 clamp(40px, 8vw, 100px);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo { display: flex; align-items: center; gap: 10px; text-decoration: none; }
.nav-brand-text { font-family: 'Playfair Display', 'CS Rocky Serif', serif; font-size: 1.5rem; font-weight: 700; letter-spacing: 0.08em; color: #000000; line-height: 1; }
.logo-svg { width: 48px; height: 48px; }
.logo-image {
  max-width: 150px;
  height: auto;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 40px;
}
.nav-link {
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(27,77,50,0.8);
  transition: color var(--transition);
  position: relative;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  right: 100%;
  height: 1px;
  background: var(--color-accent);
  transition: right var(--transition);
}
.nav-link:hover { color: #000000; }
.nav-link:hover::after { right: 0; }
.nav-cta-pill {
  background: var(--color-accent);
  color: #ffffff !important;
  padding: 9px 20px;
  border-radius: 6px;
  font-weight: 700;
}
.nav-cta-pill::after { display: none; }
.nav-cta-pill:hover {
  background: #333333;
  transform: translateY(-1px);
}
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav-hamburger span {
  display: block;
  width: 26px;
  height: 2px;
  background: #000000;
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}

/* ================================================================
   HERO
   ================================================================ */
.hero {
  position: relative;
  height: 100dvh;
  min-height: 640px;
  max-height: 900px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.4s ease;
  transform: scale(1.05);
  animation: heroZoom 12s ease-in-out infinite alternate;
}
.hero-slide.active {
  opacity: 1;
}
@keyframes heroZoom {
  from { transform: scale(1.05); }
  to   { transform: scale(1); }
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(206,200,193,0.65) 0%,
    rgba(206,200,193,0.4) 50%,
    rgba(206,200,193,0.2) 100%
  );
}
.hero-badge {
  position: absolute;
  top: calc(var(--nav-h) + 28px);
  right: clamp(20px, 5vw, 60px);
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(218,212,205,0.88);
  border: 1px solid rgba(0,0,0,0.1);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 10px 18px;
  border-radius: 40px;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: var(--color-accent);
  animation: badgePulse 3s ease-in-out infinite;
}
.badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--color-accent);
  animation: dotBlink 1.5s ease-in-out infinite;
}
@keyframes dotBlink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}
@keyframes badgePulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(0,0,0,0.05); }
  50% { box-shadow: 0 0 0 8px rgba(0,0,0,0); }
}
.hero-content {
  position: relative;
  z-index: 2;
  padding: 0 clamp(24px, 8vw, 120px);
  max-width: 820px;
  padding-top: var(--nav-h);
}
.hero-eyebrow {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: 16px;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 0.8s 0.3s forwards;
}
.hero-h1 {
  font-size: clamp(2.8rem, 6.5vw, 6rem);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  line-height: 0.95;
  color: #1b4d32;
  margin-bottom: 28px;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeUp 0.9s 0.5s forwards;
}
.hero-h1-accent {
  color: #1b4d32;
}
.hero-sub {
  font-size: clamp(0.95rem, 1.8vw, 1.15rem);
  font-weight: 600;
  color: #000000;
  text-shadow: none;
  line-height: 1.65;
  margin-bottom: 40px;
  max-width: 560px;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 0.8s 0.7s forwards;
}
.hero-br { display: none; }
.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 0.8s 0.9s forwards;
}
.hero-scroll-hint {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  color: rgba(0,0,0,0.5);
}
.scroll-line {
  width: 1px;
  height: 50px;
  background: linear-gradient(to bottom, rgba(0,0,0,0.4), transparent);
  animation: scrollAnim 2s ease-in-out infinite;
}
@keyframes scrollAnim {
  0% { transform: scaleY(0); transform-origin: top; }
  50% { transform: scaleY(1); transform-origin: top; }
  51% { transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}
@keyframes fadeUp {
  to { opacity: 1; transform: translateY(0); }
}

/* ================================================================
   PRODUCTS
   ================================================================ */
.products-section {
  background: var(--color-surface);
}
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 20px;
}
.product-card {
  background: var(--color-surface);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition);
}
.product-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(0,0,0,0.1);
}
.product-img-wrap {
  position: relative;
  overflow: hidden;
}
.product-img {
  width: 100%;
  height: auto;
  transition: opacity var(--transition);
}
.product-img:hover {
  opacity: 0.8;
}
.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(218,212,205,0.9);
  border: none;
  border-radius: 50%;
  width: 32px;
  height: 32px;
  font-size: 1.3rem;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #000;
  box-shadow: 0 2px 8px rgba(0,0,0,0.15);
  transition: background 0.2s, opacity 0.2s;
  z-index: 2;
  opacity: 0;
}
.product-img-wrap:hover .carousel-btn {
  opacity: 1;
}
.carousel-prev { left: 8px; }
.carousel-next { right: 8px; }
.carousel-btn:hover { background: #fff; }
.carousel-counter {
  position: absolute;
  bottom: 8px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(0,0,0,0.45);
  color: #fff;
  font-size: 0.7rem;
  padding: 2px 8px;
  border-radius: 20px;
  pointer-events: none;
  letter-spacing: 0.05em;
}
.product-info {
  padding: 16px;
  text-align: center;
}
.product-name {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 4px;
}
.product-price-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 12px;
}
.product-price {
  font-size: 1.25rem;
  font-weight: 800;
  color: #111111;
  letter-spacing: 0.01em;
}
.product-price-old {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--color-text-muted);
  text-decoration: line-through;
}
.product-price-badge {
  font-size: 0.7rem;
  font-weight: 800;
  background: #1b4d32;
  color: #fff;
  padding: 2px 7px;
  border-radius: 20px;
  letter-spacing: 0.05em;
}
.product-desc {
  font-size: 0.9rem;
  color: var(--color-text-muted);
  margin-bottom: 16px;
}

.product-badge-tag {
  position: absolute;
  top: 16px;
  right: 16px;
  background: var(--color-surface-2);
  color: var(--color-white);
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  padding: 6px 14px;
  border-radius: 4px;
  z-index: 2;
}
.product-badge-tag.new {
  background: #000000;
  color: #ffffff;
}
.product-badge-tag.sold-out {
  background: #cc0000;
  color: #ffffff;
}

/* ================================================================
   FEATURES
   ================================================================ */
.features-section {
  background: var(--color-bg);
}
.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  border: 1px solid rgba(0,0,0,0.05);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.feature-card {
  padding: 48px 36px 52px;
  background: var(--color-surface);
  transition: background var(--transition);
  transition-delay: var(--delay, 0s);
  position: relative;
}
.feature-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 36px;
  right: 36px;
  height: 2px;
  background: var(--color-accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
}
.feature-card:hover { background: var(--color-surface-2); }
.feature-card:hover::after { transform: scaleX(1); }
.feature-icon-wrap {
  width: 56px;
  height: 56px;
  border-radius: 12px;
  background: rgba(27,77,50,0.05);
  border: 1px solid rgba(27,77,50,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 28px;
  transition: background var(--transition), border-color var(--transition);
}
.feature-card:hover .feature-icon-wrap {
  background: rgba(0,0,0,0.04);
  border-color: rgba(0,0,0,0.15);
}
.feature-icon {
  width: 28px;
  height: 28px;
  color: var(--color-olive-light);
  transition: color var(--transition), stroke var(--transition);
}
.feature-card:hover .feature-icon {
  color: var(--color-accent);
}
.feature-title {
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 6px;
  color: var(--color-text);
}
.feature-desc {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--color-accent);
  margin-bottom: 16px;
  letter-spacing: 0.05em;
}
.feature-sub {
  font-size: 0.84rem;
  line-height: 1.65;
  color: var(--color-text-muted);
  font-weight: 400;
}

/* ================================================================
   TESTIMONIALS & COMMUNITY
   ================================================================ */
.testimonials-section {
  position: relative;
  background: var(--color-bg);
  padding-bottom: calc(var(--section-pad) + 20px);
}
.testimonials-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}
.testimonials-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(206,200,193,0.88) 0%, rgba(206,200,193,0.78) 100%);
}
.testimonials-section .section-title { color: #1b4d32; }
.testimonials-carousel {
  max-width: 800px;
  margin: 0 auto 80px;
}
.testimonial-track {
  display: flex;
  transition: transform 0.5s cubic-bezier(0.25,0.46,0.45,0.94);
}
.testimonial-card {
  min-width: 100%;
  background: rgba(0,0,0,0.03);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: var(--radius-lg);
  padding: 48px 52px;
  text-align: center;
}
.testimonial-stars {
  font-size: 1.25rem;
  letter-spacing: 3px;
  color: var(--color-accent);
  margin-bottom: 24px;
}
.testimonial-text {
  font-size: 1.2rem;
  font-weight: 400;
  line-height: 1.7;
  color: #1b4d32;
  font-style: italic;
  margin-bottom: 32px;
}
.testimonial-author {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
}
.author-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--color-olive), var(--color-accent-cyan));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 800;
  color: var(--color-white);
}
.testimonial-author strong {
  font-size: 0.88rem;
  font-weight: 700;
  color: #000000;
}
.testimonial-author span {
  font-size: 0.82rem;
  color: rgba(0,0,0,0.5);
}
.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 28px;
}
.dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(0,0,0,0.1);
  border: none;
  cursor: pointer;
  transition: background 0.3s, width 0.3s;
}
.dot.active {
  background: var(--color-accent);
  width: 24px;
  border-radius: 4px;
}
.community-section { margin-top: 0; }
.community-title {
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 900;
  text-transform: uppercase;
  color: #000000;
  text-align: center;
  margin-bottom: 36px;
  letter-spacing: 0.04em;
}
.community-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 8px;
  margin-bottom: 36px;
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.community-item {
  aspect-ratio: 1;
  background-size: cover;
  background-position: center;
  position: relative;
  overflow: hidden;
  cursor: pointer;
}
.community-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.55);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity var(--transition);
}
.community-item:hover .community-overlay { opacity: 1; }
.community-overlay span {
  font-size: 0.7rem;
  font-weight: 700;
  color: white;
  letter-spacing: 0.1em;
  text-align: center;
  padding: 0 8px;
}
.community-ig-btn {
  display: flex;
  margin: 0 auto;
}

/* ================================================================
   FAQ
   ================================================================ */
.faq-section {
  background: var(--color-bg);
  border-top: 1px solid var(--color-border);
}
.faq-list {
  max-width: 720px;
  margin: 0 auto;
}
.faq-item {
  border-bottom: 1px solid var(--color-border);
}
.faq-item:first-child {
  border-top: 1px solid var(--color-border);
}
.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 22px 0;
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--font);
  font-size: 1rem;
  font-weight: 600;
  color: var(--color-text);
  text-align: left;
  transition: color var(--transition);
}
.faq-question:hover { color: var(--color-accent); }
.faq-question span { flex: 1; }
.faq-icon {
  flex-shrink: 0;
  transition: transform 0.3s ease;
  color: var(--color-text-muted);
}
.faq-item.open .faq-icon { transform: rotate(180deg); }
.faq-answer {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.35s ease;
}
.faq-item.open .faq-answer { max-height: 300px; }
.faq-answer p {
  padding-bottom: 22px;
  font-size: 0.95rem;
  color: var(--color-text-muted);
  line-height: 1.7;
}
.faq-answer strong { color: var(--color-text); }

/* ================================================================
   CONTACT
   ================================================================ */
.contact-section {
  background: var(--color-surface);
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
}
.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.contact-sub {
  font-size: 1.05rem;
  color: var(--color-text-muted);
  line-height: 1.65;
  margin-top: 20px;
  margin-bottom: 32px;
}
.contact-details {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.contact-details li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--color-text-muted);
}
.contact-details svg { color: var(--color-olive-light); flex-shrink: 0; }

/* Social icon links in contact section */
.contact-social {
  flex-direction: row !important;
  gap: 24px !important;
  flex-wrap: wrap;
}
.contact-social-link {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--color-text-muted);
  transition: color var(--transition), transform var(--transition);
}
.contact-social-link svg { color: var(--color-olive-light); transition: color var(--transition); }
.contact-social-link span {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.contact-social-link:hover { color: #000000; transform: translateY(-3px); }
.contact-social-link:hover svg { color: var(--color-accent-hover); }
.contact-form { padding-top: 4px; }
.contact-fields {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.contact-input {
  width: 100%;
  background: var(--color-surface-2);
  border: 1px solid var(--color-border);
  border-radius: 6px;
  padding: 15px 20px;
  font-family: var(--font);
  font-size: 0.9rem;
  color: var(--color-text);
  outline: none;
  resize: none;
  transition: border-color var(--transition);
}
.contact-input:focus { border-color: var(--color-accent); }
.contact-input::placeholder { color: rgba(27, 77, 50, 0.75); }
.contact-textarea { min-height: 130px; }
.contact-fields .btn { align-self: flex-start; }
.form-success {
  display: none;
  align-items: center;
  gap: 8px;
  color: var(--color-accent);
  font-weight: 600;
  font-size: 0.9rem;
  margin-top: 16px;
}
.form-success svg { flex-shrink: 0; }

/* ================================================================
   FOOTER
   ================================================================ */
.footer {
  background: #e6e0d9;
  padding: 52px 0 28px;
  border-top: 1px solid rgba(0,0,0,0.05);
}
.footer-top {
  display: flex;
  justify-content: center;
  gap: 80px;
  margin-bottom: 40px;
  align-items: flex-start;
}
.footer-brand {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
}
.footer-logo { display: block; }
.footer-tagline {
  font-size: 0.9rem;
  color: var(--color-text-muted);
  line-height: 1.6;
  max-width: 200px;
}
.footer-col {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer-col h4 {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-text);
  margin-bottom: 4px;
}
.footer-col a {
  font-size: 0.84rem;
  color: var(--color-text-muted);
  transition: color var(--transition);
}
.footer-col a:hover { color: var(--color-text); }
.footer-social h4 {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-text);
  margin-bottom: 16px;
}
.social-links { display: flex; gap: 12px; }
.social-link {
  width: 42px;
  height: 42px;
  border-radius: 8px;
  border: 1px solid var(--color-border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-text);
  transition: color var(--transition), border-color var(--transition), background var(--transition);
}
.social-link:hover {
  color: var(--color-white);
  border-color: var(--color-accent);
  background: var(--color-accent);
}
.footer-bottom {
  border-top: 1px solid rgba(0,0,0,0.05);
  padding-top: 28px;
  text-align: center;
  font-size: 0.78rem;
  color: var(--color-text-muted);
}

/* ================================================================
   REVEAL ANIMATIONS
   ================================================================ */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.75s ease, transform 0.75s ease;
  transition-delay: var(--delay, 0s);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ================================================================
   RESPONSIVE
   ================================================================ */
@media (max-width: 1100px) {
  .products-grid { grid-template-columns: repeat(2, 1fr); }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .community-grid { grid-template-columns: repeat(3, 1fr); }
  .contact-inner { grid-template-columns: 1fr; gap: 40px; }
  .footer-top { flex-wrap: wrap; }
}
@media (max-width: 768px) {
  .nav-links { display: none; flex-direction: column; position: fixed; top: var(--nav-h); left: 0; right: 0; background: rgba(206,200,193,0.98); backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px); padding: 24px 32px 32px; gap: 18px; border-bottom: 1px solid rgba(0,0,0,0.05); }
  .nav-links.open { display: flex; }
  .nav-hamburger { display: flex; }
  .hero-br { display: inline; }
  .hero-actions { flex-direction: column; }
  .hero-content { padding: 0 24px; padding-top: var(--nav-h); }
  .hero-badge { right: 20px; font-size: 0.6rem; padding: 8px 14px; }
  .products-grid { grid-template-columns: 1fr 1fr; gap: 14px; }
  .features-grid { grid-template-columns: 1fr; gap: 0; }
  .testimonial-card { padding: 32px 28px; }
  .testimonial-text { font-size: 1rem; }
  .community-grid { grid-template-columns: repeat(3, 1fr); }
  .form-row { flex-direction: column; }
  .footer-top { gap: 40px; }
  .footer-nav { flex-wrap: wrap; gap: 32px; }
}
@media (max-width: 480px) {
  .products-grid { grid-template-columns: 1fr; }
  .community-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-badge { top: calc(var(--nav-h) + 12px); }
}

/* ================================================================
   13. ABOUT US SECTION
   ================================================================ */
.about-section {
  background: var(--color-bg);
  border-top: 1px solid var(--color-border);
}

.about-intro {
  max-width: 600px;
  margin: 0 auto;
  font-size: 1.15rem;
  line-height: 1.8;
  color: var(--color-text-muted);
  text-align: center;
}

.about-intro p {
  margin-bottom: 0;
}

.about-content {
  max-width: 800px;
  margin: 0 auto;
  font-size: 1.15rem;
  line-height: 1.8;
  color: var(--color-text-muted);
  text-align: center;
}

.about-content p {
  margin-bottom: 24px;
}

.about-content strong {
  color: var(--color-text);
  font-weight: 700;
}

/* Team Grid */
.team-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  max-width: 680px;
  margin: 52px auto 60px;
}

.team-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border-radius: 6px;
  background: var(--color-surface);
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.08);
  transition: box-shadow 0.35s ease, transform 0.35s ease;
}

.team-card:hover {
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.14);
  transform: translateY(-4px);
}

.team-photo-wrap {
  position: relative;
  aspect-ratio: 3 / 4;
  overflow: hidden;
}

.team-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  transition: transform 0.65s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.team-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 55%, rgba(27, 77, 50, 0.45) 100%);
  opacity: 0.55;
  transition: opacity 0.4s ease;
}

.team-card:hover .team-photo {
  transform: scale(1.05);
}

.team-card:hover .team-overlay {
  opacity: 1;
}

.team-info {
  padding: 20px 24px 24px;
  border-top: 1px solid var(--color-border);
}

.team-name {
  font-family: var(--font);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--color-text);
  letter-spacing: 0.01em;
  margin: 0 0 5px;
}

.team-role {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-olive);
  margin: 0;
}

@media (max-width: 768px) {
  .about-content {
    font-size: 1rem;
    padding: 0 10px;
  }
  .about-intro {
    font-size: 1rem;
    padding: 0 10px;
  }
  .team-grid {
    gap: 16px;
    margin: 40px auto 48px;
  }
  .team-info {
    padding: 14px 16px 18px;
  }
  .team-name {
    font-size: 1rem;
  }
}

/* ================================================================
   PRODUCT MODAL
   ================================================================ */
.product-modal {
  position: fixed;
  inset: 0;
  z-index: 300;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.28s ease;
}
.product-modal.open {
  opacity: 1;
  pointer-events: all;
}
.product-modal-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.55);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}
.product-modal-box {
  position: relative;
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  display: flex;
  max-width: 860px;
  width: 92%;
  max-height: 88vh;
  box-shadow: 0 40px 100px rgba(0,0,0,0.28);
  transform: scale(0.95) translateY(12px);
  transition: transform 0.28s cubic-bezier(0.25,0.46,0.45,0.94);
}
.product-modal.open .product-modal-box {
  transform: scale(1) translateY(0);
}
.modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  background: rgba(0,0,0,0.07);
  border: none;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  color: #000;
  transition: background 0.2s;
}
.modal-close:hover { background: rgba(0,0,0,0.15); }
.modal-left {
  flex: 0 0 42%;
  background: var(--color-surface);
  display: flex;
  flex-direction: column;
}
.modal-main-img {
  width: 100%;
  aspect-ratio: 1/1;
  object-fit: contain;
  background: var(--color-surface);
  transition: opacity 0.2s ease;
}
.modal-thumbs {
  display: flex;
  gap: 8px;
  padding: 10px 12px;
  overflow-x: auto;
  scrollbar-width: none;
  flex-shrink: 0;
}
.modal-thumbs::-webkit-scrollbar { display: none; }
.modal-thumb {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border-radius: 6px;
  overflow: hidden;
  border: 2px solid transparent;
  cursor: pointer;
  transition: border-color 0.2s;
}
.modal-thumb.active { border-color: #000; }
.modal-thumb img { width: 100%; height: 100%; object-fit: cover; }
.modal-right {
  flex: 1;
  padding: 44px 36px 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow-y: auto;
}
.modal-name {
  font-size: 1.9rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 14px;
  color: var(--color-text);
  line-height: 1;
}
.modal-desc {
  font-size: 0.93rem;
  line-height: 1.75;
  color: var(--color-text-muted);
  margin-bottom: 24px;
}
.modal-colors {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}
.modal-buy-btn { align-self: flex-start; }

@media (max-width: 640px) {
  .product-modal-box {
    flex-direction: column;
    width: 96%;
    max-height: 92vh;
    overflow-y: auto;
  }
  .modal-left { flex: 0 0 auto; }
  .modal-main-img { aspect-ratio: 4/3; }
  .modal-right { padding: 24px 20px 32px; }
  .modal-name { font-size: 1.4rem; }
}

/* ================================================================
   PROMO / OFERTA FLASH SECTION
   ================================================================ */
.promo-section {
  background: #0d0d0d;
  overflow: hidden;
  padding: clamp(60px, 8vw, 120px) 0;
}
.promo-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
}
.promo-img-side { position: relative; }
.promo-img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  display: block;
  filter: brightness(0.95);
  transition: transform var(--transition);
}
.promo-img:hover { transform: scale(1.015); }
.promo-badge-float {
  position: absolute;
  top: -16px;
  right: -16px;
  z-index: 3;
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: #ffffff;
  color: #000;
  font-size: 1rem;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 30px rgba(255,255,255,0.25);
  animation: badgeSpin 4s ease-in-out infinite;
}
@keyframes badgeSpin {
  0%, 100% { transform: rotate(-5deg) scale(1); }
  50% { transform: rotate(5deg) scale(1.06); }
}
.promo-content-side { color: #fff; }
.promo-eyebrow {
  color: #d4a027 !important;
  font-weight: 800;
  font-size: 0.75rem;
  margin-bottom: 16px;
}
.promo-title {
  font-size: clamp(2rem, 4.5vw, 3.4rem);
  font-weight: 900;
  text-transform: uppercase;
  color: #ffffff;
  line-height: 1;
  margin-bottom: 28px;
}
.promo-title-sub {
  display: block;
  font-size: clamp(1rem, 2vw, 1.4rem);
  font-weight: 400;
  color: rgba(255,255,255,0.55);
  letter-spacing: 0.04em;
  margin-top: 8px;
  text-transform: none;
}
.promo-features-list {
  list-style: none;
  margin-bottom: 36px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.promo-features-list li {
  font-size: 0.95rem;
  font-weight: 500;
  color: rgba(255,255,255,0.8);
  display: flex;
  align-items: center;
  gap: 10px;
}
.promo-check {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.2);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 800;
  color: #d4a027;
  flex-shrink: 0;
}
.promo-price-block {
  display: flex;
  align-items: baseline;
  gap: 16px;
  margin-bottom: 28px;
  flex-wrap: wrap;
}
.promo-price-old {
  font-size: 1.3rem;
  font-weight: 600;
  color: rgba(255,255,255,0.35);
  text-decoration: line-through;
}
.promo-price-new {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
  color: #ffffff;
  letter-spacing: -0.03em;
}
.promo-savings {
  background: rgba(212,160,39,0.15);
  border: 1px solid rgba(212,160,39,0.35);
  color: #d4a027;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 20px;
}
.promo-timer {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 36px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 10px;
  padding: 16px 20px;
  width: fit-content;
}
.timer-unit {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
}
.timer-num {
  font-size: 1.8rem;
  font-weight: 900;
  color: #ffffff;
  line-height: 1;
  min-width: 2.2ch;
  text-align: center;
  font-variant-numeric: tabular-nums;
}
.timer-label {
  font-size: 0.58rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  color: rgba(255,255,255,0.4);
  text-transform: uppercase;
}
.timer-sep {
  font-size: 1.6rem;
  font-weight: 900;
  color: rgba(255,255,255,0.3);
  margin-bottom: 14px;
}
.promo-cta {
  background: #ffffff;
  color: #000 !important;
  font-weight: 800;
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  padding: 16px 36px;
  border-radius: 6px;
  box-shadow: 0 8px 40px rgba(255,255,255,0.12);
}
.promo-cta:hover {
  background: #d4a027 !important;
  color: #000 !important;
  transform: translateY(-3px);
  box-shadow: 0 16px 48px rgba(212,160,39,0.35);
}
@media (max-width: 860px) {
  .promo-inner { grid-template-columns: 1fr; }
  .promo-img { height: 320px; }
  .promo-badge-float { top: -12px; right: 12px; }
}

@media (max-width: 768px) {
  .hero {
    height: 75dvh;
    min-height: 550px;
  }
  .hero-slide {
    background-position: 80% center !important;
  }
}

/* WhatsApp Float Button */
.whatsapp-float-btn {
  position: fixed;
  bottom: 24px;
  right: 24px;
  display: flex;
  align-items: center;
  gap: 8px;
  background-color: #25D366;
  color: #ffffff;
  padding: 10px 18px;
  border-radius: 50px;
  font-family: inherit;
  font-weight: 600;
  font-size: 15px;
  text-decoration: none;
  box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
  z-index: 9999;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

.whatsapp-float-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 16px rgba(37, 211, 102, 0.5);
  background-color: #20BA5C;
  color: #ffffff;
}

.whatsapp-float-btn svg {
  fill: #ffffff;
  flex-shrink: 0;
}
