/* ═══════════════════════════════════════════════════
   PROTECTPET — STYLESHEET
   Color Palette from colortheme.jpg:
     Primary Green : #5F6F3E (Olive Green)
     Gold / Amber  : #FFB934
     Dark Green    : #3D4D25
     Cream BG      : #F8FAF3
   ═══════════════════════════════════════════════════ */

/* ─── RESET & ROOT VARIABLES ─────────────────────── */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  /* Brand colors */
  --green:          #5F6F3E;
  --green-dark:     #3D4D25;
  --green-darker:   #2A3519;
  --green-light:    #7A9450;
  --green-muted:    #8A9B6E;
  --gold:           #FFB934;
  --gold-dark:      #D99810;
  --gold-light:     #FFD27A;

  /* Backgrounds */
  --cream:          #F8FAF3;
  --cream-dark:     #EDF0E6;
  --white:          #FFFFFF;

  /* Text */
  --text-dark:      #1C2B10;
  --text-mid:       #4A5A32;
  --text-light:     #7A8B65;
  --text-white:     #FFFFFF;

  /* Shadows */
  --shadow-sm:      0 2px 8px rgba(60, 76, 35, 0.08);
  --shadow-md:      0 6px 20px rgba(60, 76, 35, 0.12);
  --shadow-lg:      0 12px 40px rgba(60, 76, 35, 0.18);
  --shadow-xl:      0 20px 60px rgba(60, 76, 35, 0.22);

  /* Radius */
  --radius-sm:      8px;
  --radius-md:      14px;
  --radius-lg:      22px;
  --radius-xl:      32px;
  --radius-full:    9999px;

  /* Transitions */
  --transition:     0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--text-dark);
  background: var(--white);
  line-height: 1.7;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

/* ─── UTILITY CLASSES ────────────────────────────── */
.container {
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
}

.text-gold { color: var(--gold); }
.text-white { color: var(--white) !important; }

/* ─── SCROLL REVEAL ANIMATION ────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s cubic-bezier(0.4, 0, 0.2, 1),
              transform 0.65s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger delays for grids */
.products-grid .product-card:nth-child(2) { transition-delay: 0.1s; }
.products-grid .product-card:nth-child(3) { transition-delay: 0.2s; }
.products-grid .product-card:nth-child(4) { transition-delay: 0.3s; }

/* ─── BUTTONS ─────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.7rem 1.5rem;
  border-radius: var(--radius-full);
  font-family: 'Inter', sans-serif;
  font-size: 0.92rem;
  font-weight: 600;
  cursor: pointer;
  border: 2px solid transparent;
  transition: var(--transition);
  white-space: nowrap;
  letter-spacing: 0.01em;
}

.btn-lg {
  padding: 0.9rem 2rem;
  font-size: 1rem;
}

.btn-full { width: 100%; }

.btn-primary {
  background: var(--green);
  color: var(--white);
  border-color: var(--green);
}
.btn-primary:hover {
  background: var(--green-dark);
  border-color: var(--green-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(60,76,35,0.25);
}

.btn-accent {
  background: var(--gold);
  color: var(--text-dark);
  border-color: var(--gold);
}
.btn-accent:hover {
  background: var(--gold-dark);
  border-color: var(--gold-dark);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(255,185,52,0.35);
}

.btn-outline-light {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.6);
}
.btn-outline-light:hover {
  background: rgba(255,255,255,0.12);
  border-color: var(--white);
  transform: translateY(-2px);
}

.btn-ghost {
  background: transparent;
  color: var(--text-mid);
  border-color: var(--cream-dark);
}
.btn-ghost:hover {
  background: var(--cream);
  border-color: var(--green-muted);
  color: var(--green-dark);
}

/* ─── SECTION SHARED STYLES ──────────────────────── */
.section-header {
  text-align: center;
  margin-bottom: 3.5rem;
}

.section-tag {
  display: inline-block;
  background: var(--cream-dark);
  color: var(--green);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  padding: 0.35rem 1rem;
  border-radius: var(--radius-full);
  margin-bottom: 0.9rem;
}

.section-tag-light {
  background: rgba(255,255,255,0.15);
  color: rgba(255,255,255,0.9);
}

.section-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1.25;
  margin-bottom: 0.9rem;
}

.section-subtitle {
  font-size: 1rem;
  color: var(--text-light);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.75;
}


/* ═══════════════════════════════════════════════════
   NAVBAR
   ═══════════════════════════════════════════════════ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 999;
  background: transparent;
  transition: background var(--transition), box-shadow var(--transition);
  padding: 0;
}

.navbar.scrolled {
  background: var(--white);
  box-shadow: var(--shadow-sm);
}

.navbar.scrolled .nav-logo-text,
.navbar.scrolled .nav-links a {
  color: var(--text-dark);
}

.navbar.scrolled .hamburger span {
  background: var(--text-dark);
}

.nav-container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
  height: 72px;
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  flex-shrink: 0;
  text-decoration: none;
}

.nav-logo-img {
  height: 46px;
  width: auto;
  object-fit: contain;
}

.nav-logo-text {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--white);
  transition: color var(--transition);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
  margin: 0 auto;
}

.nav-links a {
  font-size: 0.9rem;
  font-weight: 500;
  color: rgba(255,255,255,0.85);
  transition: color var(--transition);
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gold);
  border-radius: 2px;
  transition: width var(--transition);
}

.nav-links a:hover {
  color: var(--white);
}

.nav-links a:hover::after {
  width: 100%;
}

.navbar.scrolled .nav-links a {
  color: var(--text-mid);
}

.navbar.scrolled .nav-links a:hover {
  color: var(--green-dark);
}

.nav-links a.active-link,
.navbar.scrolled .nav-links a.active-link {
  color: var(--gold);
}

.nav-links a.active-link::after {
  width: 100%;
  background: var(--gold);
}

.nav-cta {
  flex-shrink: 0;
  padding: 0.55rem 1.3rem;
  font-size: 0.88rem;
}

.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  margin-left: auto;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}

.hamburger.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.hamburger.active span:nth-child(2) {
  opacity: 0;
}
.hamburger.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobile menu overlay */
.mobile-menu {
  display: none;
  position: fixed;
  top: 72px;
  left: 0;
  right: 0;
  background: var(--white);
  flex-direction: column;
  align-items: stretch;
  padding: 1.5rem 1.5rem 2rem;
  gap: 0.25rem;
  z-index: 998;
  box-shadow: var(--shadow-md);
  border-top: 1px solid var(--cream-dark);
}

.mobile-menu.open {
  display: flex;
}

.mobile-link {
  padding: 0.85rem 0.5rem;
  font-size: 1rem;
  font-weight: 500;
  color: var(--text-mid);
  border-bottom: 1px solid var(--cream-dark);
  transition: color var(--transition);
}

.mobile-link:last-of-type {
  border-bottom: none;
  margin-bottom: 0.5rem;
}

.mobile-link:hover {
  color: var(--green-dark);
}


/* ═══════════════════════════════════════════════════
   HERO SECTION
   ═══════════════════════════════════════════════════ */
.hero {
  position: relative;
  min-height: 100vh;
  background: linear-gradient(160deg, var(--green-darker) 0%, var(--green-dark) 45%, var(--green) 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 120px 24px 100px;
}

/* Decorative leaf shapes in background */
.hero-bg-shapes {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.leaf {
  position: absolute;
  color: rgba(255,255,255,0.04);
}

.leaf-1 {
  width: 320px;
  top: -60px;
  right: -80px;
  animation: leafDrift1 14s ease-in-out infinite;
}

.leaf-2 {
  width: 220px;
  bottom: 80px;
  left: -60px;
  animation: leafDrift2 10s ease-in-out infinite;
}

.leaf-3 {
  width: 180px;
  top: 200px;
  right: 15%;
  color: rgba(255,185,52,0.07);
  animation: leafDrift3 17s ease-in-out infinite 3s;
}

@keyframes leafDrift1 {
  0%, 100% { transform: rotate(20deg) translateY(0px); }
  35%       { transform: rotate(26deg) translateY(35px) translateX(-10px); }
  70%       { transform: rotate(17deg) translateY(15px) translateX(8px); }
}

@keyframes leafDrift2 {
  0%, 100% { transform: rotate(-30deg) translateY(0px); }
  40%       { transform: rotate(-22deg) translateY(-28px) translateX(12px); }
  75%       { transform: rotate(-36deg) translateY(-10px) translateX(-6px); }
}

@keyframes leafDrift3 {
  0%, 100% { transform: rotate(50deg) scale(1) translateY(0px); }
  45%       { transform: rotate(58deg) scale(1.06) translateY(22px); }
  80%       { transform: rotate(44deg) scale(0.97) translateY(8px); }
}

/* Hero content */
.hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 3rem;
  width: 100%;
}

.hero-text {
  flex: 1 1 0;
  display: flex;
  flex-direction: column;
  gap: 1.4rem;
  text-align: left;
}

.hero-image {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-photos {
  display: flex;
  align-items: flex-end;
  max-width: 100%;
}

.hero-photo {
  width: 340px;
  max-width: 100%;
  object-fit: contain;
  filter: drop-shadow(0 12px 40px rgba(0,0,0,0.35));
  animation: heroImgFloat 5s ease-in-out infinite;
  transition: transform 0.4s ease, filter 0.4s ease;
  cursor: pointer;
}

.hero-photo:hover {
  transform: scale(1.08) translateY(-10px);
  filter: drop-shadow(0 20px 50px rgba(95,111,62,0.6)) brightness(1.08);
  animation-play-state: paused;
}

.hero-photo:nth-child(2) {
  animation-delay: 0.8s;
  margin-left: -200px;
}

@keyframes heroImgFloat {
  0%, 100% { transform: translateY(0px); }
  50%       { transform: translateY(-14px); }
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: rgba(255,185,52,0.18);
  color: var(--gold);
  border: 1px solid rgba(255,185,52,0.35);
  padding: 0.45rem 1.1rem;
  border-radius: var(--radius-full);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.hero-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(2.2rem, 5.5vw, 3.8rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.18;
  letter-spacing: -0.01em;
}

.hero-subtitle {
  font-size: clamp(0.95rem, 2vw, 1.1rem);
  color: rgba(255,255,255,0.72);
  max-width: 480px;
  line-height: 1.75;
}

.hero-cta {
  display: flex;
  gap: 0.85rem;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 0.4rem;
}

/* Trust indicators row */
.hero-trust {
  display: flex;
  align-items: center;
  gap: 0;
  flex-wrap: wrap;
  justify-content: center;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-lg);
  padding: 0.75rem 1.5rem;
  margin-top: 0.5rem;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.35rem 1rem;
  color: rgba(255,255,255,0.75);
  font-size: 0.82rem;
  font-weight: 500;
}

.trust-item i {
  color: var(--gold);
  font-size: 0.9rem;
}

.trust-divider {
  width: 1px;
  height: 20px;
  background: rgba(255,255,255,0.2);
}

/* Bottom wave separator */
.hero-wave {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  line-height: 0;
}

.hero-wave svg {
  width: 100%;
  height: 80px;
  display: block;
}


/* ═══════════════════════════════════════════════════
   TESTIMONIALS SECTION
   ═══════════════════════════════════════════════════ */
.testimonials {
  background: var(--cream);
  padding: 6rem 0 5rem;
}

/* ── Carousel wrapper ────── */
.testimonials-carousel {
  position: relative;
  margin-bottom: 3.5rem;
}

.carousel-viewport {
  overflow: hidden;
  border-radius: var(--radius-lg);
}

.carousel-track {
  display: flex;
  gap: 1.5rem;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
  align-items: stretch;
}

/* Each card takes 1/3 width minus gap on desktop */
.carousel-track .testimonial-card {
  flex: 0 0 calc((100% - 3rem) / 3);
  min-width: 0;
}

/* Carousel controls */
.carousel-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
  margin-top: 2rem;
}

.carousel-btn {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--white);
  border: 2px solid var(--cream-dark);
  color: var(--green);
  font-size: 0.9rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition), border-color var(--transition), color var(--transition), transform var(--transition);
  flex-shrink: 0;
}

.carousel-btn:hover {
  background: var(--green);
  border-color: var(--green);
  color: var(--white);
  transform: scale(1.08);
}

.carousel-btn:disabled {
  opacity: 0.35;
  cursor: not-allowed;
  pointer-events: none;
}

.carousel-dots {
  display: flex;
  align-items: center;
  gap: 0.45rem;
}

.carousel-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--cream-dark);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: background var(--transition), transform var(--transition), width var(--transition);
  flex-shrink: 0;
}

.carousel-dot.active {
  background: var(--green);
  width: 22px;
  border-radius: 4px;
}

.carousel-dot:hover:not(.active) {
  background: var(--green-muted);
}

.testimonial-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  position: relative;
  transition: transform var(--transition), box-shadow var(--transition);
  border: 1px solid rgba(95,111,62,0.08);
  height: 400px;
  box-sizing: border-box;
  background: var(--white);
  padding: 0;
}

.testimonial-card img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center center;
  display: block;
  transition: transform 0.4s ease;
  background: var(--white);
}

.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.testimonial-card:hover img {
  transform: scale(1.04);
}

.testimonial-quote-icon {
  color: var(--cream-dark);
  font-size: 1.8rem;
  margin-bottom: 0.75rem;
  line-height: 1;
}

.star-rating {
  color: var(--gold);
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  margin-bottom: 1rem;
}

.testimonial-text {
  font-size: 0.93rem;
  color: var(--text-mid);
  line-height: 1.8;
  margin-bottom: 1.5rem;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.author-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--green) 0%, var(--green-light) 100%);
  color: var(--white);
  font-size: 1rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.author-info {
  display: flex;
  flex-direction: column;
}

.author-info strong {
  font-size: 0.9rem;
  color: var(--text-dark);
  font-weight: 600;
}

.author-info span {
  font-size: 0.78rem;
  color: var(--text-light);
}

/* Stats bar */
.stats-bar {
  display: flex;
  align-items: center;
  justify-content: space-evenly;
  flex-wrap: nowrap;
  background: var(--green-dark);
  border-radius: var(--radius-lg);
  padding: 2rem 1.5rem;
  gap: 0;
  width: 100%;
}

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.3rem;
  padding: 0.5rem 1rem;
  text-align: center;
  flex: 1;
}

.stat-number {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1;
}

.stat-star {
  font-size: 1rem;
  color: var(--gold);
  margin-left: 0.15rem;
}

.stat-label {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.55);
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.stat-divider {
  width: 1px;
  height: 40px;
  background: rgba(255,255,255,0.12);
}


/* ═══════════════════════════════════════════════════
   VIDEO SECTION
   ═══════════════════════════════════════════════════ */
.video-section {
  background: var(--light-bg, #f8f9f4);
  padding: 5rem 0;
}

.video-wrapper {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 16px 48px rgba(0,0,0,0.15);
  aspect-ratio: 16 / 9;
}

.video-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

/* ═══════════════════════════════════════════════════
   PRODUCTS SECTION
   ═══════════════════════════════════════════════════ */
.products {
  background: var(--white);
  padding: 6rem 0 5rem;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
  margin-bottom: 3rem;
}

/* ── Product Card ─────────── */
.product-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--cream-dark);
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  transition: transform var(--transition), box-shadow var(--transition);
}

.product-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.product-card-featured {
  border: 2px solid var(--gold);
  box-shadow: 0 8px 30px rgba(255,185,52,0.18);
}

/* Card headers (colored) */
.product-card-header {
  position: relative;
  height: 240px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.header-spray {
  background: linear-gradient(140deg, var(--green-dark) 0%, var(--green) 100%);
}

.header-spray-lg {
  background: linear-gradient(140deg, var(--green-darker) 0%, var(--green-dark) 50%, var(--green-light) 100%);
}

.header-mdc {
  background: linear-gradient(140deg, #4A5E2A 0%, #6B8040 100%);
}

.header-mdc-lg {
  background: linear-gradient(140deg, #3A4E20 0%, #5B7535 50%, #7A9450 100%);
}

/* Top badge */
.product-badge-top {
  position: absolute;
  top: 14px;
  left: 14px;
  background: rgba(255,255,255,0.18);
  border: 1px solid rgba(255,255,255,0.3);
  color: rgba(255,255,255,0.92);
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 0.3rem 0.8rem;
  border-radius: var(--radius-full);
}

.featured-badge {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--text-dark);
}

/* Product icon (SVG spray bottle) */
.product-icon-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
}

.product-icon-svg {
  width: 60px;
  height: 100px;
  filter: drop-shadow(0 4px 12px rgba(0,0,0,0.2));
}

.product-icon-lg {
  width: 70px;
  height: 110px;
}

.product-card-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 1rem;
  filter: drop-shadow(0 4px 16px rgba(0,0,0,0.25));
}

/* Size badge bottom right */
.product-size-badge {
  position: absolute;
  bottom: 14px;
  right: 14px;
  background: rgba(0,0,0,0.25);
  color: rgba(255,255,255,0.9);
  font-size: 0.78rem;
  font-weight: 700;
  padding: 0.25rem 0.75rem;
  border-radius: var(--radius-full);
  letter-spacing: 0.05em;
}

/* Card body */
.product-card-body {
  padding: 1.5rem 1.5rem 1rem;
  flex: 1;
}

.product-name {
  font-family: 'Lora', serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 0.6rem;
  line-height: 1.3;
}

.product-price {
  font-family: 'Lora', serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--accent, #5F6F3E);
  margin-bottom: 0.75rem;
}

.product-desc {
  font-size: 0.88rem;
  color: var(--text-light);
  line-height: 1.7;
  margin-bottom: 1.1rem;
}

/* Feature tags */
.product-features {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}

.feature-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  background: var(--cream);
  color: var(--green-dark);
  font-size: 0.72rem;
  font-weight: 600;
  padding: 0.3rem 0.7rem;
  border-radius: var(--radius-full);
  border: 1px solid var(--cream-dark);
}

.feature-tag i {
  color: var(--green);
  font-size: 0.68rem;
}

/* Card footer */
.product-card-footer {
  padding: 1rem 1.5rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

/* TikTok button */
.btn-tiktok {
  background: #010101;
  color: #ffffff;
  border: 2px solid #010101;
}
.btn-tiktok:hover {
  background: #333;
  border-color: #333;
  color: #ffffff;
}

/* ── How To Use ───────────── */
.how-to-use {
  background: linear-gradient(135deg, var(--green-darker) 0%, var(--green-dark) 100%);
  border-radius: var(--radius-lg);
  padding: 2rem 2.5rem;
  color: var(--white);
}

.how-to-use h3 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--gold);
  margin-bottom: 1.4rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  letter-spacing: 0.02em;
}

.steps {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.step {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  flex: 1;
  min-width: 180px;
}

.step-num {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--text-dark);
  font-size: 0.9rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.step p {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.78);
  line-height: 1.5;
}

.step-arrow {
  color: rgba(255,255,255,0.3);
  font-size: 0.9rem;
  flex-shrink: 0;
}


/* ═══════════════════════════════════════════════════
   ABOUT US SECTION
   ═══════════════════════════════════════════════════ */
.about {
  position: relative;
  background: linear-gradient(160deg, var(--green-dark) 0%, var(--green) 100%);
  padding: 6rem 0;
  overflow: hidden;
}

.about-bg-shape {
  position: absolute;
  top: -150px;
  right: -150px;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: rgba(255,255,255,0.04);
  pointer-events: none;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.about-text .section-tag {
  display: inline-block;
  margin-bottom: 0.9rem;
}

.about-text .section-title {
  color: var(--white);
  margin-bottom: 1.5rem;
}

.about-text p {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.72);
  line-height: 1.85;
  margin-bottom: 1rem;
}

.about-text strong {
  color: var(--gold);
  font-weight: 600;
}

.about-cta-row {
  margin-top: 1.8rem;
}

/* Feature boxes */
.about-features {
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
}

.feature-box {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-md);
  padding: 1.25rem 1.5rem;
  transition: background var(--transition), transform var(--transition);
}

.feature-box:hover {
  background: rgba(255,255,255,0.11);
  transform: translateX(5px);
}

.feature-icon {
  width: 42px;
  height: 42px;
  border-radius: var(--radius-sm);
  background: var(--gold);
  color: var(--text-dark);
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.feature-box h4 {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 0.3rem;
}

.feature-box p {
  font-size: 0.83rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.6;
}


/* ═══════════════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════════════ */
.footer {
  background: var(--green-darker);
  padding: 4.5rem 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 3rem;
  padding-bottom: 3.5rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

/* Brand column */
.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.footer-logo-wrap {
  display: flex;
  align-items: center;
  gap: 0.7rem;
}

.footer-logo-img {
  height: 38px;
  width: auto;
  object-fit: contain;
}

.footer-tagline {
  font-size: 0.855rem;
  color: rgba(255,255,255,0.48);
  line-height: 1.75;
  max-width: 280px;
}

.footer-socials {
  display: flex;
  gap: 0.75rem;
  margin-top: 0.4rem;
}

.footer-socials a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.65);
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255,255,255,0.1);
  transition: background var(--transition), color var(--transition);
}

.footer-socials a:hover {
  background: var(--gold);
  color: var(--text-dark);
  border-color: var(--gold);
}

/* Link columns */
.footer-col {}

.footer-heading {
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--gold);
  margin-bottom: 1.25rem;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}

.footer-links li a {
  font-size: 0.855rem;
  color: rgba(255,255,255,0.5);
  transition: color var(--transition);
  line-height: 1.5;
}

.footer-links li a:hover {
  color: var(--white);
}

/* Buy options */
.footer-buy-options {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-buy-btn {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-md);
  padding: 0.9rem 1rem;
  color: var(--white);
  transition: background var(--transition), border-color var(--transition);
}

.footer-buy-btn:hover {
  background: rgba(255,185,52,0.12);
  border-color: rgba(255,185,52,0.4);
}

.footer-buy-btn > i {
  font-size: 1.25rem;
  color: var(--gold);
  flex-shrink: 0;
}

.footer-buy-btn div {
  display: flex;
  flex-direction: column;
}

.footer-buy-btn strong {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--white);
}

.footer-buy-btn span {
  font-size: 0.76rem;
  color: rgba(255,255,255,0.45);
}

/* Footer bottom bar */
.footer-bottom {
  padding: 1.4rem 0;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

.footer-bottom p {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.3);
}

.footer-disclaimer {
  font-style: italic;
}


/* ═══════════════════════════════════════════════════
   RESPONSIVE — TABLET
   ═══════════════════════════════════════════════════ */
@media (max-width: 960px) {
  .products-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .about-text .section-title {
    font-size: 2rem;
  }

  .testimonials-carousel .carousel-track .testimonial-card {
    flex: 0 0 calc((100% - 1.5rem) / 2);
  }

  .stat-item {
    padding: 0.5rem 1.5rem;
  }
}

@media (max-width: 768px) {
  /* ── Carousel: 1 card per page on mobile ── */
  .testimonials-carousel .carousel-track .testimonial-card {
    flex: 0 0 100%;
  }

  /* ── Navbar ── */
  .nav-links {
    display: none;
  }

  .nav-cta {
    padding: 0.45rem 0.9rem;
    font-size: 0.8rem;
  }

  .hamburger {
    display: flex;
  }

  .nav-logo-img {
    height: 36px;
  }

  .nav-container {
    padding: 0 16px;
  }

  .nav-container .nav-cta {
    margin: 0 auto;
  }

  /* ── Hero ── */
  .hero {
    padding: 96px 20px 72px;
    min-height: auto;
  }

  .hero-content {
    flex-direction: column;
    gap: 2rem;
    text-align: center;
  }

  .hero-text {
    align-items: center;
    text-align: center;
  }

  .hero-title {
    font-size: clamp(1.75rem, 8vw, 2.6rem);
  }

  .hero-subtitle {
    font-size: 0.92rem;
    padding: 0 0.5rem;
  }

  .hero-photos {
    gap: 0;
    justify-content: center;
  }

  .hero-photo {
    width: 170px;
  }

  .hero-photo:nth-child(2) {
    margin-left: -80px;
  }

  /* ── Section headers ── */
  .section-header {
    margin-bottom: 2rem;
  }

  .section-title {
    font-size: clamp(1.5rem, 6vw, 2rem);
  }

  /* ── Testimonials ── */
  .testimonials {
    padding: 3.5rem 0;
  }

  .testimonials-carousel .carousel-track .testimonial-card {
    flex: 0 0 100%;
  }

  .testimonial-card {
    height: 320px;
    padding: 0;
  }

  .carousel-controls {
    margin-top: 1.5rem;
    gap: 1rem;
  }

  /* ── Products ── */
  .products {
    padding: 3.5rem 0;
  }

  .products-grid {
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
  }

  .product-card-header {
    height: 220px;
  }

  .product-card-body {
    padding: 1.1rem 1rem 0.75rem;
  }

  .product-name {
    font-size: 1rem;
  }

  .product-desc {
    font-size: 0.82rem;
  }

  .product-features {
    gap: 0.35rem;
  }

  .feature-tag {
    font-size: 0.68rem;
    padding: 0.25rem 0.55rem;
  }

  .product-card-footer {
    padding: 0.75rem 1rem 1.1rem;
    gap: 0.5rem;
  }

  .product-card-footer .btn {
    font-size: 0.82rem;
    padding: 0.6rem 0.75rem;
  }

  /* ── How to use ── */
  .how-to-use {
    padding: 1.5rem;
  }

  .steps {
    flex-direction: column;
    align-items: stretch;
    gap: 0.5rem;
  }

  .step {
    flex: unset;
    width: 100%;
    min-width: unset;
  }

  .step-arrow {
    transform: rotate(90deg);
    align-self: center;
    font-size: 0.8rem;
    color: rgba(255,255,255,0.25);
  }

  /* ── Stats bar ── */
  .stat-divider { display: none; }

  .stats-bar {
    gap: 0;
    padding: 1.25rem 1rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .stat-item {
    padding: 0.75rem 1rem;
  }

  .stat-number {
    font-size: 1.6rem;
  }

  /* ── About ── */
  .about {
    padding: 3.5rem 0;
  }

  .about-text p {
    font-size: 0.9rem;
  }

  .feature-box {
    padding: 1rem 1.1rem;
  }

  .feature-box h4 {
    font-size: 0.9rem;
  }

  .feature-box p {
    font-size: 0.8rem;
  }

  /* ── Footer ── */
  .footer {
    padding: 3rem 0 0;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
    padding-bottom: 2.5rem;
  }

  .footer-brand {
    grid-column: auto;
  }

  .footer-tagline {
    max-width: 100%;
  }

  .footer-buy-options {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .footer-buy-btn {
    flex: 1;
    min-width: 140px;
  }
}

@media (max-width: 480px) {
  /* ── Navbar ── */
  .nav-logo-img {
    height: 32px;
  }

  /* ── Hero ── */
  .hero {
    padding: 88px 16px 64px;
  }

  .hero-title {
    font-size: clamp(1.55rem, 9vw, 2rem);
  }

  .hero-subtitle {
    font-size: 0.88rem;
  }

  /* ── Products: single column ── */
  .products-grid {
    grid-template-columns: 1fr;
    max-width: 360px;
    margin-left: auto;
    margin-right: auto;
  }

  .product-card-header {
    height: 200px;
  }

  /* ── Stats ── */
  .stats-bar {
    grid-template-columns: 1fr 1fr;
  }

  /* ── Section title ── */
  .section-title {
    font-size: 1.55rem;
  }

  /* ── How to use ── */
  .how-to-use h3 {
    font-size: 0.9rem;
  }

  .step-num {
    width: 30px;
    height: 30px;
    font-size: 0.82rem;
  }

  .step p {
    font-size: 0.83rem;
  }

  /* ── Carousel btn ── */
  .carousel-btn {
    width: 36px;
    height: 36px;
    font-size: 0.8rem;
  }

  /* ── Footer ── */
  .footer-buy-options {
    flex-direction: column;
  }

  .footer-buy-btn {
    min-width: unset;
  }

  /* ── About ── */
  .about-grid {
    gap: 2rem;
  }

  .feature-box {
    gap: 0.75rem;
  }

  .feature-icon {
    width: 36px;
    height: 36px;
    font-size: 0.9rem;
  }
}
