/* =========================================================
   TEA COMPANY — DESIGN SYSTEM & STYLESHEET
   ========================================================= */

/* ── Google Fonts ──────────────────────────────────────── */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,500;0,600;0,700;1,400;1,600&family=Inter:wght@300;400;500;600;700&display=swap');

/* ── CSS Custom Properties (Design Tokens) ─────────────── */
:root {
  /* Brand Colors */
  --color-green-deep: #234E3B;
  --color-green-leaf: #4F6F52;
  --color-gold: #C8A45D;
  --color-gold-light: #DEC07E;
  --color-ivory: #FAF7F0;
  --color-cream: #F3EEE3;
  --color-charcoal: #232323;
  --color-gray-warm: #666666;
  --color-beige-border: #E6DED0;
  --color-whatsapp: #25D366;

  /* Typography */
  --font-primary: 'Cormorant Garamond', Georgia, serif;
  --font-secondary: 'Inter', system-ui, sans-serif;

  /* Type Scale */
  --text-hero: 3.5rem;
  /* 56px */
  --text-section: 2.5rem;
  /* 40px */
  --text-card: 1.5rem;
  /* 24px */
  --text-body: 1.125rem;
  /* 18px */
  --text-small: 1rem;
  /* 16px */
  --text-stat: 3rem;
  /* 48px */

  /* Spacing */
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: 2rem;
  --space-xl: 3rem;
  --space-2xl: 5rem;
  --space-3xl: 7rem;

  /* Radius */
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 18px;
  --radius-xl: 24px;
  --radius-full: 9999px;

  /* Shadows */
  --shadow-card: 0 8px 30px rgba(0, 0, 0, 0.06);
  --shadow-hover: 0 16px 48px rgba(35, 78, 59, 0.14);
  --shadow-nav: 0 2px 20px rgba(0, 0, 0, 0.08);

  /* Transitions */
  --transition-fast: 0.2s ease;
  --transition-base: 0.35s ease;
  --transition-slow: 0.6s ease;

  /* Layout */
  --container-max: 1200px;
  --section-pad: var(--space-xl) var(--space-xs);
}

/* ── Reset & Base ──────────────────────────────────────── */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-secondary);
  font-size: var(--text-body);
  color: var(--color-charcoal);
  background-color: var(--color-ivory);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  padding-top: 72px;
}

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

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

ul {
  list-style: none;
}

button {
  font-family: var(--font-secondary);
  cursor: pointer;
  border: none;
  background: none;
}

/* ── Container ─────────────────────────────────────────── */
.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--space-lg);
}

/* ── Typography ────────────────────────────────────────── */
h1,
h2,
h3 {
  font-family: var(--font-primary);
  line-height: 1.2;
}

h1 {
  font-size: var(--text-hero);
  font-weight: 600;
}

h2 {
  font-size: var(--text-section);
  font-weight: 600;
}

h3 {
  font-size: var(--text-card);
  font-weight: 600;
}

p {
  font-family: var(--font-secondary);
  font-size: var(--text-body);
  color: var(--color-gray-warm);
  line-height: 1.8;
}

.section-label {
  display: inline-block;
  font-family: var(--font-secondary);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-gold);
  /* margin-bottom: var(--space-sm); */
}

.section-header {
  max-width: 640px;
  margin: 0 auto var(--space-2xl);
  text-align: center;
}

.section-header h2 {
  color: var(--color-charcoal);
  margin-bottom: var(--space-sm);
}

.section-header p {
  font-size: var(--text-body);
}

/* ── Buttons ───────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-secondary);
  font-size: var(--text-small);
  font-weight: 600;
  border-radius: var(--radius-md);
  height: 56px;
  padding: 0 var(--space-lg);
  transition: all var(--transition-base);
  cursor: pointer;
  white-space: nowrap;
}

.btn-primary {
  background: var(--color-green-deep);
  color: #fff;
  border: 2px solid var(--color-green-deep);
}

.btn-primary:hover {
  background: var(--color-green-leaf);
  border-color: var(--color-green-leaf);
  transform: translateY(-2px);
  box-shadow: var(--shadow-hover);
}

.btn-secondary {
  background: transparent;
  color: var(--color-green-deep);
  border: 2px solid var(--color-green-deep);
}

.btn-secondary:hover {
  background: var(--color-green-deep);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: var(--shadow-hover);
}

.btn-whatsapp {
  background: var(--color-whatsapp);
  color: #fff;
  border: 2px solid var(--color-whatsapp);
}

.btn-whatsapp:hover {
  background: #1da851;
  border-color: #1da851;
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(37, 211, 102, 0.3);
}

.btn-whatsapp-outline {
  background: transparent;
  color: var(--color-whatsapp);
  border: 2px solid var(--color-whatsapp);
}

.btn-whatsapp-outline:hover {
  background: var(--color-whatsapp);
  color: #fff;
  transform: translateY(-2px);
}

/* ── Cards ─────────────────────────────────────────────── */
.card {
  background: #fff;
  border: 1px solid var(--color-beige-border);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  box-shadow: var(--shadow-card);
  transition: all var(--transition-base);
}

.card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
}

/* ── Badge ─────────────────────────────────────────────── */
.badge {
  display: inline-block;
  font-family: var(--font-secondary);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: var(--radius-full);
}

.badge-gold {
  background: rgba(200, 164, 93, 0.15);
  color: var(--color-gold);
  border: 1px solid rgba(200, 164, 93, 0.35);
}

.badge-green {
  background: rgba(35, 78, 59, 0.1);
  color: var(--color-green-deep);
  border: 1px solid rgba(35, 78, 59, 0.2);
}

/* ── Divider ───────────────────────────────────────────── */
.divider {
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--color-gold), var(--color-gold-light));
  border-radius: 2px;
  margin: var(--space-xs) 0 var(--space-md);
}

.divider-center {
  margin: var(--space-sm) auto var(--space-md);
}

/* ── Scroll Animation ──────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

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

.reveal-delay-1 {
  transition-delay: 0.1s;
}

.reveal-delay-2 {
  transition-delay: 0.2s;
}

.reveal-delay-3 {
  transition-delay: 0.3s;
}

.reveal-delay-4 {
  transition-delay: 0.4s;
}

/* ═══════════════════════════════════════════════════════
   NAVIGATION
   ═══════════════════════════════════════════════════════ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(250, 247, 240, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
  transition: border-color var(--transition-base), box-shadow var(--transition-base);
}

.nav.scrolled {
  border-color: var(--color-beige-border);
  box-shadow: var(--shadow-nav);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--space-lg);
}

.nav-logo {
  display: flex;
  /* flex-direction: column; */
  align-items: center;
  line-height: 1;
}

.nav-logo-name {
  font-family: var(--font-primary);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-green-deep);
  letter-spacing: 0.02em;
  /* height: 2.5rem; */
  /* padding-bottom: 0.25rem; */
  width: fit-content;
}

.nav-logo-tagline {
  font-family: var(--font-secondary);
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-gold);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: var(--space-xl);
}

.nav-link {
  font-family: var(--font-secondary);
  font-size: var(--text-small);
  font-weight: 500;
  color: var(--color-charcoal);
  position: relative;
  transition: color var(--transition-fast);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--color-gold);
  border-radius: 2px;
  transition: width var(--transition-base);
}

.nav-link:hover,
.nav-link.active {
  color: var(--color-green-deep);
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

.nav-cta {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}

/* Mobile Menu Toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--color-charcoal);
  border-radius: 2px;
  transition: all var(--transition-base);
}

.nav-toggle.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle.open span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobile Nav Drawer */
.nav-mobile {
  display: none;
  flex-direction: column;
  padding: var(--space-md) var(--space-lg) var(--space-lg);
  border-top: 1px solid var(--color-beige-border);
  gap: var(--space-md);
}

.nav-mobile.open {
  display: flex;
}

.nav-mobile .nav-link {
  font-size: 1.1rem;
}

.nav-mobile .nav-link::after {
  display: none;
}

/* ═══════════════════════════════════════════════════════
   HERO SECTION
   ═══════════════════════════════════════════════════════ */
.hero {
  min-height: calc(100dvh-72px);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: var(--space-lg) var(--space-xl);
  background-color: var(--color-ivory);
  background:
    linear-gradient(to right,
      rgba(250, 247, 240, 0.95) 0%,
      rgba(250, 247, 240, 0.88) 30%,
      rgba(250, 247, 240, 0.20) 70%,
      rgba(250, 247, 240, 0.10) 100%),
    url("../assets/hero_bg.png");
  background-size: cover;
  background-position: center;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 60% at 70% 40%, rgba(79, 111, 82, 0.07) 0%, transparent 70%),
    radial-gradient(ellipse 40% 40% at 20% 80%, rgba(200, 164, 93, 0.06) 0%, transparent 60%);
  pointer-events: none;
}

.hero-pattern {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle, rgba(200, 164, 93, 0.08) 1px, transparent 1px);
  background-size: 48px 48px;
  pointer-events: none;
  opacity: 0.6;
}

.hero-inner {
  position: relative;
  max-width: var(--container-max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-3xl);
  align-items: center;
  width: 100%;
}

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

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(200, 164, 93, 0.12);
  border: 1px solid rgba(200, 164, 93, 0.3);
  border-radius: var(--radius-full);
  padding: 6px 16px;
  margin-bottom: var(--space-md);
}

.hero-badge span {
  font-family: var(--font-secondary);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-gold);
}

.hero-badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--color-gold);
  animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {

  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }

  50% {
    opacity: 0.5;
    transform: scale(0.7);
  }
}

.hero h1 {
  color: var(--color-charcoal);
  margin-bottom: var(--space-md);
  font-size: clamp(2.4rem, 4.5vw, 3.5rem);
}

.hero h1 em {
  font-style: italic;
  color: var(--color-green-deep);
}

.hero-sub {
  font-size: 1.1rem;
  color: var(--color-gray-warm);
  margin-bottom: var(--space-xl);
  line-height: 1.9;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
  margin-bottom: var(--space-xl);
}

.hero-trust {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}

.hero-trust-avatars {
  display: flex;
}

.hero-trust-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 2px solid var(--color-ivory);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  font-weight: 600;
  color: #fff;
  margin-right: -10px;
}

.hero-trust-avatar:nth-child(1) {
  background: var(--color-green-deep);
}

.hero-trust-avatar:nth-child(2) {
  background: var(--color-green-leaf);
}

.hero-trust-avatar:nth-child(3) {
  background: var(--color-gold);
}

.hero-trust-text {
  margin-left: 18px;
  font-size: 0.88rem;
  color: var(--color-gray-warm);
  font-weight: 500;
}

.hero-trust-text strong {
  color: var(--color-charcoal);
}

/* Hero Visual */
.hero-visual {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  align-items: center;
}

.product-carousel {
  max-width: 300px;
  position: relative;
  padding: 4px;
  /* background: white; */
  border-radius: var(--radius-md);
  /* overflow: hidden; */
}

.carousel-track {
  display: flex;
  transition: transform 0.6s ease;
}

.carousel-card{
      flex: 0 0 100%;
      max-width: 300px;
      border-radius: var(--radius-md);
      overflow: hidden;
      opacity: 0;
      transition: opacity 0.6s ease;
}

#carousel-dots{
  display: flex;
  gap: 4px;
  position: absolute;
  bottom: -24px;
  justify-self: center;
}

.carousel-dot {
  width: 8px;
  height: 8px;
  border-radius: 100%;
  border: 2px solid rgb(49, 49, 49);
  background: rgb(135, 134, 134);
}

.carousel-dot.active {
  background: white;
}

.carousel-card.active {
  opacity: 1;
}
.hero-image-main-content .tea-icon {
  font-size: 5rem;
  opacity: 0.7;
}

.hero-image-main-content p {
  font-family: var(--font-primary);
  font-size: 1.4rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.7);
  letter-spacing: 0.04em;
}

.hero-image-label {
  position: absolute;
  bottom: var(--space-md);
  left: var(--space-md);
  right: var(--space-md);
  background: rgba(250, 247, 240, 0.12);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-md);
  padding: var(--space-sm) var(--space-md);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.hero-image-label p {
  font-size: 0.88rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.9);
}

.hero-image-label span {
  font-size: 0.75rem;
  color: var(--color-gold-light);
  font-weight: 500;
}

.hero-stats-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-sm);
  width: 100%;
  max-width: 460px;
}

.hero-stat-card {
  background: #fff;
  border: 1px solid var(--color-beige-border);
  border-radius: var(--radius-md);
  padding: var(--space-md);
  box-shadow: var(--shadow-card);
  text-align: center;
}

.hero-stat-card .stat-number {
  font-family: var(--font-primary);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--color-green-deep);
  line-height: 1;
}

.hero-stat-card .stat-label {
  font-size: 0.78rem;
  color: var(--color-gray-warm);
  font-weight: 500;
  margin-top: 4px;
}

/* ═══════════════════════════════════════════════════════
   BRAND OVERVIEW
   ═══════════════════════════════════════════════════════ */
.brand-overview {
  padding: var(--section-pad);
  /* background: var(--color-cream); */
  background: white;
}

.brand-overview-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-3xl);
  align-items: center;
}

.brand-overview-visual {
  position: relative;
}

.brand-overview-img {
  width: 100%;
  aspect-ratio: 1 / 1;
  border-radius: var(--radius-xl);
  background: var(--color-green-deep);
  position: relative;
  overflow: hidden;
}

.brand-overview-img::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(79, 111, 82, 0.5) 0%, rgba(35, 78, 59, 0.9) 100%);
}

.brand-overview-img-content {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 6rem;
  opacity: 0.4;
}

.brand-year-badge {
  position: absolute;
  bottom: -var(--space-md);
  right: -var(--space-md);
  bottom: -20px;
  right: -20px;
  background: var(--color-gold);
  border-radius: var(--radius-md);
  padding: var(--space-md) var(--space-lg);
  box-shadow: 0 8px 24px rgba(200, 164, 93, 0.3);
  text-align: center;
}

.brand-year-badge .year {
  font-family: var(--font-primary);
  font-size: 2.2rem;
  font-weight: 700;
  color: #fff;
  line-height: 1;
}

.brand-year-badge .year-label {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.85);
}

.brand-overview-content h2 {
  color: var(--color-charcoal);
  margin-bottom: var(--space-md);
}

.brand-overview-content p {
  margin-bottom: var(--space-md);
  font-size: 1rem;
}

.brand-pillars {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-sm);
  margin-top: var(--space-lg);
}

.brand-pillar {
  display: flex;
  align-items: flex-start;
  gap: var(--space-sm);
  padding: var(--space-sm);
  border-radius: var(--radius-md);
  background: rgba(35, 78, 59, 0.04);
  border: 1px solid rgba(35, 78, 59, 0.08);
}

.brand-pillar-icon {
  width: 36px;
  height: 36px;
  border-radius: var(--radius-sm);
  background: rgba(35, 78, 59, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--color-green-deep);
}

.brand-pillar-text strong {
  display: block;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--color-charcoal);
  margin-bottom: 2px;
}

.brand-pillar-text span {
  font-size: 0.8rem;
  color: var(--color-gray-warm);
}

/* ═══════════════════════════════════════════════════════
   TRUST INDICATORS
   ═══════════════════════════════════════════════════════ */
.trust-section {
  padding: var(--section-pad);
  /* background: var(--color-ivory); */
  background: white;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
  margin-top: var(--space-2xl);
}

.trust-card {
  background: #fff;
  border: 1px solid var(--color-beige-border);
  border-radius: var(--radius-lg);
  padding: var(--space-xl) var(--space-md);
  text-align: center;
  box-shadow: var(--shadow-card);
  transition: all var(--transition-base);
}

.trust-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
  border-color: rgba(35, 78, 59, 0.2);
}

.trust-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: rgba(35, 78, 59, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--space-md);
  color: var(--color-green-deep);
  transition: background var(--transition-base);
}

.trust-card:hover .trust-icon {
  background: var(--color-green-deep);
  color: #fff;
}

.trust-card h3 {
  font-family: var(--font-secondary);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--color-charcoal);
  margin-bottom: var(--space-xs);
}

.trust-card p {
  font-size: 0.88rem;
  line-height: 1.6;
}

/* ═══════════════════════════════════════════════════════
   QUALITY PROCESS
   ═══════════════════════════════════════════════════════ */
.quality-section {
  padding: var(--section-pad);
  background: var(--color-cream);
}

.quality-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-top: var(--space-2xl);
  position: relative;
}

.quality-steps::before {
  content: '';
  position: absolute;
  top: 44px;
  left: calc(12.5% + 32px);
  right: calc(12.5% + 32px);
  height: 2px;
  background: linear-gradient(90deg, var(--color-green-deep), var(--color-gold));
  z-index: 0;
}

.quality-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 var(--space-sm);
  position: relative;
  z-index: 1;
}

.quality-step-number {
  width: 88px;
  height: 88px;
  border-radius: 50%;
  background: #fff;
  border: 3px solid var(--color-green-deep);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-md);
  box-shadow: var(--shadow-card);
  transition: all var(--transition-base);
  position: relative;
}

.quality-step:hover .quality-step-number {
  background: var(--color-green-deep);
  border-color: var(--color-gold);
  box-shadow: var(--shadow-hover);
}

.quality-step-number .step-num {
  font-family: var(--font-primary);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--color-green-deep);
  line-height: 1;
}

.quality-step:hover .quality-step-number .step-num {
  color: #fff;
}

.quality-step-icon {
  color: var(--color-green-deep);
  position: absolute;
  bottom: -8px;
  right: -8px;
  width: 28px;
  height: 28px;
  background: var(--color-gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.quality-step h3 {
  font-family: var(--font-secondary);
  font-size: 1rem;
  font-weight: 600;
  color: var(--color-charcoal);
  margin-bottom: var(--space-xs);
}

.quality-step p {
  font-size: 0.85rem;
  line-height: 1.6;
}

/* ═══════════════════════════════════════════════════════
   BRAND VALUES
   ═══════════════════════════════════════════════════════ */
.values-section {
  padding: var(--section-pad);
  background: var(--color-green-deep);
}

.values-section .section-header h2 {
  color: #fff;
}

.values-section .section-header p {
  color: rgba(255, 255, 255, 0.65);
}

.values-section .section-label {
  color: var(--color-gold-light);
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
  margin-top: var(--space-2xl);
}

.value-card {
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  transition: all var(--transition-base);
}

.value-card:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(200, 164, 93, 0.4);
  transform: translateY(-4px);
}

.value-icon {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-md);
  background: rgba(200, 164, 93, 0.15);
  border: 1px solid rgba(200, 164, 93, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-md);
  color: var(--color-gold-light);
}

.value-card h3 {
  font-family: var(--font-secondary);
  font-size: 1.1rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: var(--space-xs);
}

.value-card p {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.7;
}

/* ═══════════════════════════════════════════════════════
   STATISTICS SECTION
   ═══════════════════════════════════════════════════════ */
.stats-section {
  padding: var(--section-pad);
  background: var(--color-ivory);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-md);
  margin-top: var(--space-2xl);
}

.stat-item {
  text-align: center;
  padding: var(--space-xl) var(--space-md);
  background: #fff;
  border: 1px solid var(--color-beige-border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  transition: all var(--transition-base);
}

.stat-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
}

.stat-item .stat-number {
  font-family: var(--font-primary);
  font-size: var(--text-stat);
  font-weight: 700;
  color: var(--color-green-deep);
  line-height: 1;
  display: block;
}

.stat-item .stat-suffix {
  font-family: var(--font-primary);
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--color-gold);
}

.stat-item .stat-label {
  font-family: var(--font-secondary);
  font-size: 0.88rem;
  color: var(--color-gray-warm);
  font-weight: 500;
  margin-top: var(--space-xs);
  display: block;
}

.stat-item .stat-desc {
  font-size: 0.78rem;
  color: var(--color-beige-border);
  margin-top: 4px;
}

/* ═══════════════════════════════════════════════════════
   TESTIMONIALS
   ═══════════════════════════════════════════════════════ */
.testimonials-section {
  padding: var(--section-pad);
  background: var(--color-cream);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
  margin-top: var(--space-2xl);
}

.testimonial-card {
  background: #fff;
  border: 1px solid var(--color-beige-border);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  box-shadow: var(--shadow-card);
  transition: all var(--transition-base);
  position: relative;
}

.testimonial-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
  border-color: rgba(35, 78, 59, 0.15);
}

.testimonial-quote-icon {
  color: var(--color-gold);
  opacity: 0.4;
  margin-bottom: var(--space-sm);
}

.testimonial-text {
  font-size: 0.95rem;
  line-height: 1.8;
  color: var(--color-charcoal);
  font-style: italic;
  margin-bottom: var(--space-lg);
}

.testimonial-stars {
  display: flex;
  gap: 4px;
  margin-bottom: var(--space-md);
  color: var(--color-gold);
  font-size: 0.9rem;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  border-top: 1px solid var(--color-beige-border);
  padding-top: var(--space-md);
}

.testimonial-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-primary);
  font-size: 1.1rem;
  font-weight: 700;
  color: #fff;
  flex-shrink: 0;
}

.testimonial-avatar.av-1 {
  background: var(--color-green-deep);
}

.testimonial-avatar.av-2 {
  background: var(--color-green-leaf);
}

.testimonial-avatar.av-3 {
  background: var(--color-gold);
}

.testimonial-name {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--color-charcoal);
}

.testimonial-shop {
  font-size: 0.8rem;
  color: var(--color-gray-warm);
}

/* ═══════════════════════════════════════════════════════
   FAQ SECTION
   ═══════════════════════════════════════════════════════ */
.faq-section {
  padding: var(--section-pad);
  /* background: var(--color-ivory); */
  background: white;
}

.faq-list {
  max-width: 760px;
  margin: var(--space-2xl) auto 0;
}

.faq-item {
  border: 1px solid var(--color-beige-border);
  border-radius: var(--radius-md);
  margin-bottom: var(--space-sm);
  background: #fff;
  overflow: hidden;
  transition: box-shadow var(--transition-base);
}

.faq-item:hover {
  box-shadow: var(--shadow-card);
}

.faq-item.open {
  border-color: rgba(35, 78, 59, 0.25);
  box-shadow: var(--shadow-card);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--space-md) var(--space-lg);
  text-align: left;
  background: none;
  cursor: pointer;
  gap: var(--space-sm);
}

.faq-question-text {
  font-family: var(--font-secondary);
  font-size: 1rem;
  font-weight: 600;
  color: var(--color-charcoal);
  line-height: 1.4;
}

.faq-item.open .faq-question-text {
  color: var(--color-green-deep);
}

.faq-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(35, 78, 59, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-green-deep);
  flex-shrink: 0;
  transition: all var(--transition-base);
}

.faq-item.open .faq-icon {
  background: var(--color-green-deep);
  color: #fff;
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--transition-slow), padding var(--transition-base);
}

.faq-answer-inner {
  padding: 0 var(--space-lg) var(--space-md);
  font-size: 0.95rem;
  color: var(--color-gray-warm);
  line-height: 1.8;
}

.faq-item.open .faq-answer {
  max-height: 400px;
}

/* ═══════════════════════════════════════════════════════
   CONTACT & CTA SECTION
   ═══════════════════════════════════════════════════════ */
.contact-section {
  padding: var(--section-pad);
  /* background: var(--color-cream); */
  background: white;
}

.contact-inner {
  /* display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-3xl);
  align-items: start; */
  display: flex;
  align-items: center;
  justify-items: center;
  max-width: 760px;
  margin: auto;
}

.contact-info h2 {
  color: var(--color-charcoal);
  margin-bottom: var(--space-sm);
}

.contact-info p {
  margin-bottom: var(--space-xl);
  font-size: 1rem;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.contact-detail-item {
  display: flex;
  align-items: flex-start;
  gap: var(--space-sm);
}

.contact-detail-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
  background: rgba(35, 78, 59, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-green-deep);
  flex-shrink: 0;
  margin-top: 2px;
}

.contact-detail-label {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-gold);
  display: block;
  margin-bottom: 2px;
}

.contact-detail-value {
  font-size: 0.95rem;
  color: var(--color-charcoal);
  font-weight: 500;
}

.whatsapp-cta-card {
  background: #fff;
  border: 1px solid var(--color-beige-border);
  border-radius: var(--radius-xl);
  padding: var(--space-2xl);
  box-shadow: var(--shadow-card);
  text-align: center;
}

.whatsapp-cta-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: rgba(37, 211, 102, 0.1);
  border: 2px solid rgba(37, 211, 102, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--space-md);
  color: var(--color-whatsapp);
  animation: pulse-whatsapp 3s ease-in-out infinite;
}

@keyframes pulse-whatsapp {

  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.25);
  }

  50% {
    box-shadow: 0 0 0 16px rgba(37, 211, 102, 0);
  }
}

.whatsapp-cta-card h3 {
  font-family: var(--font-primary);
  font-size: 1.8rem;
  color: var(--color-charcoal);
  margin-bottom: var(--space-sm);
}

.whatsapp-cta-card p {
  font-size: 0.95rem;
  margin-bottom: var(--space-xl);
}

.whatsapp-cta-steps {
  display: flex;
  flex-direction: column;
  gap: var(--space-xs);
  margin-bottom: var(--space-xl);
  text-align: left;
}

.whatsapp-cta-step {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  font-size: 0.88rem;
  color: var(--color-gray-warm);
}

.whatsapp-cta-step-num {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--color-green-deep);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

/* ═══════════════════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════════════════ */
.footer {
  background: var(--color-charcoal);
  padding: var(--space-3xl) var(--space-lg) var(--space-xl);
}

.footer-inner {
  max-width: var(--container-max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: var(--space-3xl);
  margin-bottom: var(--space-xl);
  padding-bottom: var(--space-xl);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-brand .nav-logo-name {
  color: #fff;
  font-size: 1.6rem;
}

.footer-brand .nav-logo-tagline {
  color: var(--color-gold);
}

.footer-brand p {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.9rem;
  margin-top: var(--space-md);
  line-height: 1.8;
}

.footer-social {
  display: flex;
  gap: var(--space-sm);
  margin-top: var(--space-md);
}

.footer-social-link {
  width: 32px;
  height: 32px;
  border-radius: var(--radius-sm);
  /* background: rgba(255, 255, 255, 0.06); */
  /* border: 1px solid rgba(255, 255, 255, 0.1); */
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.5);
  transition: all var(--transition-fast);
}

.footer-social-link:hover {
  background: var(--color-green-deep);
  border-color: var(--color-green-deep);
  color: #fff;
}

.footer-col h4 {
  font-family: var(--font-secondary);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: var(--space-md);
}

.footer-col ul li {
  margin-bottom: var(--space-xs);
}

.footer-col ul li a {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.5);
  transition: color var(--transition-fast);
}

.footer-col ul li a:hover {
  color: #fff;
}

.footer-bottom {
  max-width: var(--container-max);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: var(--space-sm);
}

.footer-bottom p {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.3);
}

.footer-bottom-links {
  display: flex;
  gap: var(--space-md);
}

.footer-bottom-links a {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.3);
  transition: color var(--transition-fast);
}

.footer-bottom-links a:hover {
  color: rgba(255, 255, 255, 0.7);
}

/* ═══════════════════════════════════════════════════════
   PRODUCTS PAGE
   ═══════════════════════════════════════════════════════ */
.page-hero {
  padding: 140px var(--space-lg) var(--space-3xl);
  background: var(--color-cream);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 50% 70% at 50% 0%, rgba(79, 111, 82, 0.07) 0%, transparent 70%);
  pointer-events: none;
}

.page-hero-inner {
  position: relative;
  max-width: 640px;
  margin: 0 auto;
}

.page-hero h1 {
  font-size: clamp(2.2rem, 4vw, 3rem);
  color: var(--color-charcoal);
  margin-bottom: var(--space-sm);
}

.page-hero p {
  font-size: 1.05rem;
  margin-bottom: var(--space-md);
}

.breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-xs);
  margin-bottom: var(--space-md);
  font-size: 0.85rem;
  color: var(--color-gray-warm);
}

.breadcrumb a {
  color: var(--color-green-deep);
  font-weight: 500;
}

.breadcrumb a:hover {
  text-decoration: underline;
}

.breadcrumb-sep {
  color: var(--color-beige-border);
}

/* Products Grid */
.products-section {
  padding: var(--space-lg) var(--space-lg);
  background: var(--color-ivory);
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-lg);
  margin-top: var(--space-lg);
  justify-items: center;
}

.product-card {
  background: #fff;
  border: 1px solid var(--color-beige-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: all var(--transition-base);
  display: flex;
  flex-direction: column;
  max-width: 300px;
}

.product-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-hover);
  border-color: rgba(35, 78, 59, 0.18);
}

.product-image {
  width: 100%;
  /* aspect-ratio: 4/3; */
  background: var(--color-green-deep);
  position: relative;
  overflow: hidden;
  flex-shrink: 0;
}

.product-image::before {
  content: '';
  position: absolute;
  inset: 0;
  /* background: linear-gradient(135deg, rgba(79, 111, 82, 0.35) 0%, rgba(35, 78, 59, 0.85) 100%); */
}

.product-image-content {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
  opacity: 0.35;
  color: rgba(255, 255, 255, 0.8);
}

.product-image-badge {
  position: absolute;
  top: var(--space-sm);
  left: var(--space-sm);
}

.product-image-cat {
  position: absolute;
  bottom: var(--space-sm);
  right: var(--space-sm);
  background: rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(6px);
  border-radius: var(--radius-full);
  padding: 4px 12px;
  font-size: 0.72rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.85);
  letter-spacing: 0.06em;
}

.product-body {
  padding: var(--space-md);
  flex: 1;
  display: flex;
  flex-direction: column;
}

.product-name {
  font-family: var(--font-secondary);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--color-charcoal);
  text-align: center;
  /* margin-bottom: var(--space-xs); */
}

.product-desc {
  font-size: 0.88rem;
  color: var(--color-gray-warm);
  line-height: 1.7;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  overflow: hidden;
  -webkit-box-orient: vertical;
  flex: 1;
  width: 100%;
}

.product-sizes {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: var(--space-md);
}

.product-size-tag {
  font-size: 0.75rem;
  font-weight: 600;
  padding: 3px 10px;
  border-radius: var(--radius-full);
  background: rgba(35, 78, 59, 0.07);
  color: var(--color-green-deep);
  border: 1px solid rgba(35, 78, 59, 0.15);
}

.product-sizes-label {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--color-gray-warm);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 6px;
  display: block;
}

.product-footer {
  padding: var(--space-sm) var(--space-lg);
  border-top: 1px solid var(--color-beige-border);
  background: rgba(250, 247, 240, 0.5);
}

.btn-product-whatsapp {
  width: 100%;
  justify-content: center;
  height: 48px;
  font-size: 0.9rem;
}

/* Products CTA Banner */
.products-cta {
  padding: var(--space-3xl) var(--space-lg);
  background: var(--color-green-deep);
  text-align: center;
}

.products-cta h2 {
  color: #fff;
  margin-bottom: var(--space-sm);
  font-size: clamp(1.8rem, 3.5vw, 2.5rem);
}

.products-cta p {
  color: rgba(255, 255, 255, 0.65);
  max-width: 560px;
  margin: 0 auto var(--space-xl);
  font-size: 1rem;
}

.products-cta-actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: var(--space-sm);
}

.products-cta .btn-secondary {
  color: rgba(255, 255, 255, 0.8);
  border-color: rgba(255, 255, 255, 0.3);
}

.products-cta .btn-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.6);
}

/* ── Loading State ──────────────────────────────────────── */
.products-loading {
  grid-column: 1 / -1;
  text-align: center;
  padding: var(--space-3xl);
  color: var(--color-gray-warm);
}

.products-loading .spinner {
  width: 44px;
  height: 44px;
  border: 3px solid var(--color-beige-border);
  border-top-color: var(--color-green-deep);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
  margin: 0 auto var(--space-md);
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

/* ── Sticky WhatsApp Floating Button ───────────────────── */
.float-whatsapp {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--color-whatsapp);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 32px rgba(37, 211, 102, 0.45);
  z-index: 900;
  transition: all var(--transition-base);
  text-decoration: none;
}

.float-whatsapp:hover {
  transform: scale(1.12);
  box-shadow: 0 12px 40px rgba(37, 211, 102, 0.6);
}

.float-whatsapp-tooltip {
  position: absolute;
  right: 74px;
  background: var(--color-charcoal);
  color: #fff;
  font-size: 0.82rem;
  font-weight: 500;
  padding: 6px 12px;
  border-radius: var(--radius-sm);
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition-fast);
}

.float-whatsapp-tooltip::after {
  content: '';
  position: absolute;
  left: 100%;
  top: 50%;
  transform: translateY(-50%);
  border: 6px solid transparent;
  border-left-color: var(--color-charcoal);
}

.float-whatsapp:hover .float-whatsapp-tooltip {
  opacity: 1;
}

/* ═══════════════════════════════════════════════════════
   RESPONSIVE BREAKPOINTS
   ═══════════════════════════════════════════════════════ */

/* Tablet — 1024px */
@media (max-width: 1024px) {
  :root {
    --text-hero: 2.8rem;
    --text-section: 2rem;
    --text-stat: 2.4rem;
  }

  .nav-logo-name {
    font-size: 1.2rem;
  }

  .order-process{
    display: none;
  }

  .hero {
    background: linear-gradient(-180deg,
        rgba(250, 247, 240, 0.95) 0%,
        rgba(250, 247, 240, 0.88) 10%,
        rgba(250, 247, 240, 0.20) 70%,
        rgba(250, 247, 240, 0.10) 100%),
      url("../assets/hero_bg.png");
    background-size: cover;
    background-position: center;
  }

  .hero-inner {
    grid-template-columns: 1fr;
    gap: var(--space-xl);
    text-align: center;
  }

  .hero-content {
    max-width: 100%;
  }

  .hero-actions {
    justify-content: center;
  }

  .hero-trust {
    justify-content: center;
  }

  .hero-visual {
    align-items: center;
  }

  .hero-image-main {
    max-width: 380px;
  }

  .brand-overview-inner {
    /* grid-template-columns: 1fr; */
    display: flex;
    flex-direction: column-reverse;
    gap: var(--space-md);
    text-align: center;
  }

  .brand-overview-content > .section-label, .brand-overview-content > .divider {
    display: block;
    justify-self: center;
  }

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

  .quality-steps {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-xl);
  }

  .quality-steps::before {
    display: none;
  }

  .values-grid {
    grid-template-columns: 1fr;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
  }

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

  .testimonials-grid {
    grid-template-columns: 1fr;
    max-width: 560px;
    margin-left: auto;
    margin-right: auto;
  }

  /* .contact-inner {
    grid-template-columns: 1fr;
  } */

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

  .footer-inner {
    grid-template-columns: 1fr 1fr;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }
}

/* Mobile — 768px */
@media (max-width: 768px) {
  :root {
    --text-hero: 2.2rem;
    --text-section: 1.8rem;
    --section-pad: var(--space-2xl) var(--space-sm);
  }

  .nav-links {
    display: none;
  }

  .nav-cta .btn {
    display: none;
  }

  .nav-toggle {
    display: flex;
  }

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

  .brand-pillars {
    grid-template-columns: 1fr;
  }

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

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

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

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

  .footer-inner {
    grid-template-columns: 1fr;
    gap: var(--space-xl);
  }

  .float-whatsapp {
    bottom: 20px;
    right: 20px;
    width: 52px;
    height: 52px;
  }
}

/* Small Mobile — 480px */
@media (max-width: 480px) {
  :root {
    --text-hero: 1.9rem;
  }

  .hero {
    padding: var(--space-lg);
  }

  .hero-image-main {
    aspect-ratio: 4/5;
  }

  .value-card, .testimonial-card, .trust-card, .product-body {
    padding: var(--space-md)
  }

  .products-section {
    padding: var(--space-md) 0;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-actions .btn {
    justify-content: center;
  }

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

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

.highlight {
  /* font-style: italic; */
  font-weight: 500;
  color: #2d2c2c;
}