/* ════════════════════════════════════════════════════════════════
   AL BARAKAH FOODS — Premium Wellness Brand CSS
   Design System: Forest Green · Premium Gold · Cream · Luxury
   ════════════════════════════════════════════════════════════════ */

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

:root {
  --green:        #0E5A35;
  --green-dark:   #093D24;
  --green-light:  #1A7A4A;
  --green-pale:   #E8F5EE;
  --gold:         #C9A227;
  --gold-light:   #E8C44B;
  --gold-pale:    #FDF5DC;
  --cream:        #FAF8F2;
  --cream-dark:   #F0EDE4;
  --white:        #FFFFFF;
  --text:         #1A1A1A;
  --text-muted:   #6B7280;
  --text-light:   #9CA3AF;
  --border:       #E5E0D5;
  --shadow-sm:    0 2px 8px rgba(14,90,53,0.08);
  --shadow-md:    0 8px 24px rgba(14,90,53,0.12);
  --shadow-lg:    0 16px 48px rgba(14,90,53,0.16);
  --shadow-gold:  0 8px 24px rgba(201,162,39,0.25);
  --radius-sm:    8px;
  --radius-md:    16px;
  --radius-lg:    24px;
  --radius-xl:    32px;
  --transition:   all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --font-head:    'Playfair Display', Georgia, serif;
  --font-body:    'Inter', system-ui, sans-serif;
}

/* Islamic pattern utility */
:root {
  --islamic-pattern: url('../images/islamic_pattern.png');
}
.islamic-bg {
  position: absolute;
  inset: 0;
  background-image: var(--islamic-pattern);
  background-size: cover;
  opacity: 0.07;
  pointer-events: none;
  z-index: 0;
}


html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background-color: var(--cream);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
ul { list-style: none; }

/* ─── SCROLLBAR ───────────────────────────────────────────────── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--cream); }
::-webkit-scrollbar-thumb { background: var(--green); border-radius: 3px; }

/* ─── CONTAINERS ──────────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ─── SECTION COMMONS ─────────────────────────────────────────── */
.section-header {
  text-align: center;
  margin-bottom: 48px;
}

.section-tag {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  background: var(--gold-pale);
  border: 1px solid rgba(201,162,39,0.3);
  padding: 6px 16px;
  border-radius: 20px;
  margin-bottom: 16px;
}

.section-title {
  font-family: var(--font-head);
  font-size: clamp(28px, 5vw, 42px);
  font-weight: 700;
  color: var(--green-dark);
  line-height: 1.25;
  margin-bottom: 14px;
}

.section-sub {
  font-size: 16px;
  color: var(--text-muted);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ─── BUTTONS ─────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 50px;
  font-size: 15px;
  font-weight: 600;
  transition: var(--transition);
  cursor: pointer;
  border: 2px solid transparent;
  white-space: nowrap;
}

.btn-gold {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--green-dark);
  box-shadow: var(--shadow-gold);
}
.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(201,162,39,0.4);
}

.btn-outline {
  background: rgba(255,255,255,0.12);
  color: var(--white);
  border-color: rgba(255,255,255,0.5);
  backdrop-filter: blur(8px);
}
.btn-outline:hover {
  background: rgba(255,255,255,0.22);
  border-color: white;
  transform: translateY(-2px);
}

.btn-green {
  background: linear-gradient(135deg, var(--green), var(--green-light));
  color: var(--white);
  box-shadow: var(--shadow-md);
}
.btn-green:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.btn-full { width: 100%; justify-content: center; }

/* ═══════════════════════════════════════════════════════════════ */
/*  NAVIGATION                                                     */
/* ═══════════════════════════════════════════════════════════════ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(250,248,242,0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid transparent;
  transition: var(--transition);
}

.navbar.scrolled {
  border-bottom-color: var(--border);
  box-shadow: var(--shadow-sm);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  height: 72px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

/* Navbar logo image */
.logo-img-wrap {
  width: 60px;
  height: 60px;
  border-radius: 12px;
  overflow: hidden;
  background: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 2px 10px rgba(201,162,39,0.25);
  border: 1px solid rgba(201,162,39,0.2);
}

.logo-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transform: scale(1.35);
}

/* Footer logo image */
.footer-logo-img-wrap {
  width: 68px;
  height: 68px;
  border-radius: 14px;
  overflow: hidden;
  background: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 4px 16px rgba(201,162,39,0.3);
  border: 1px solid rgba(201,162,39,0.3);
}

.footer-logo-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transform: scale(1.35);
}

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.logo-brand {
  font-family: var(--font-head);
  font-size: 18px;
  font-weight: 700;
  color: var(--green-dark);
}

.logo-sub {
  font-size: 11px;
  font-weight: 500;
  color: var(--gold);
  letter-spacing: 1px;
  text-transform: uppercase;
}

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

.nav-link {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-muted);
  padding: 8px 16px;
  border-radius: 8px;
  transition: var(--transition);
}
.nav-link:hover {
  color: var(--green);
  background: var(--green-pale);
}

.nav-cta {
  font-size: 14px;
  font-weight: 600;
  color: var(--white);
  background: linear-gradient(135deg, var(--green), var(--green-light));
  padding: 10px 22px;
  border-radius: 50px;
  transition: var(--transition);
  box-shadow: 0 4px 12px rgba(14,90,53,0.25);
}
.nav-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(14,90,53,0.35);
}

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

.cart-btn {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background: var(--white);
  border-radius: 12px;
  color: var(--green-dark);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}
.cart-btn:hover {
  background: var(--green-pale);
  transform: translateY(-1px);
}

.cart-count {
  position: absolute;
  top: -4px;
  right: -4px;
  background: var(--gold);
  color: var(--green-dark);
  font-size: 10px;
  font-weight: 700;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  transition: var(--transition);
}
.cart-count.bump {
  animation: countBump 0.3s ease;
}

@keyframes countBump {
  0% { transform: scale(1); }
  50% { transform: scale(1.5); }
  100% { transform: scale(1); }
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  background: var(--white);
  border-radius: 12px;
  box-shadow: var(--shadow-sm);
}
.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--green-dark);
  border-radius: 2px;
  transition: var(--transition);
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ═══════════════════════════════════════════════════════════════ */
/*  HERO SECTION                                                   */
/* ═══════════════════════════════════════════════════════════════ */
.hero {
  position: relative;
  min-height: 70vh; /* reduced height for quicker view */
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  overflow: hidden;
  padding: 110px 20px 40px; /* adjusted padding to clear fixed navbar */
}



/* Ensure hero content stays above background */
.hero-content {
  position: relative;
  z-index: 1;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    #093D24 0%,
    #0E5A35 35%,
    #1A7A4A 60%,
    #0A4A2A 100%
  );
}

.hero-family-bg {
  position: absolute;
  inset: 0;
  background-image: url('../images/healthy_family_bg.png');
  background-size: cover;
  background-position: center;
  opacity: 0.12; /* very light/subtle to ensure readability */
  mix-blend-mode: luminosity; /* blends beautifully with the dark green wellness gradient */
  pointer-events: none;
  z-index: 1;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 60% at 80% 50%, rgba(201,162,39,0.08) 0%, transparent 70%),
    radial-gradient(ellipse 50% 80% at 20% 80%, rgba(0,0,0,0.3) 0%, transparent 70%);
}

/* Animated leaves */
.hero-leaves {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.leaf {
  position: absolute;
  opacity: 0.06;
  animation: leafFloat 8s ease-in-out infinite;
}

.leaf::before {
  content: '';
  display: block;
  background: var(--gold);
  border-radius: 50% 0 50% 0;
}

.leaf-1 { top: 10%; right: 10%; animation-delay: 0s; }
.leaf-1::before { width: 200px; height: 200px; transform: rotate(30deg); }

.leaf-2 { top: 50%; right: 5%; animation-delay: 2s; }
.leaf-2::before { width: 140px; height: 140px; transform: rotate(-20deg); }

.leaf-3 { bottom: 20%; left: 5%; animation-delay: 4s; }
.leaf-3::before { width: 180px; height: 180px; transform: rotate(60deg); }

.leaf-4 { top: 20%; left: 15%; animation-delay: 6s; }
.leaf-4::before { width: 100px; height: 100px; transform: rotate(-45deg); }

@keyframes leafFloat {
  0%, 100% { transform: translateY(0) rotate(0deg); opacity: 0.06; }
  50% { transform: translateY(-20px) rotate(5deg); opacity: 0.1; }
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 760px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.75);
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  padding: 8px 18px;
  border-radius: 20px;
  margin-bottom: 28px;
  backdrop-filter: blur(8px);
}

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

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.4); }
}

.hero-title {
  font-family: var(--font-head);
  font-size: clamp(40px, 8vw, 80px);
  font-weight: 700;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 20px;
  letter-spacing: -0.5px;
}
.hero-title em {
  color: var(--gold);
  font-style: italic;
}

.hero-sub {
  font-size: clamp(15px, 2.5vw, 18px);
  color: rgba(255,255,255,0.75);
  max-width: 560px;
  margin: 0 auto 28px;
  line-height: 1.8;
}

.hero-values {
  display: flex;
  justify-content: center;
  gap: 24px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.hero-val {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  color: rgba(255,255,255,0.85);
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

.val-dot {
  width: 6px;
  height: 6px;
  background: var(--gold);
  border-radius: 50%;
}

.hero-btns {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.hero-scroll-hint {
  position: relative;
  margin-top: auto;
  padding-top: 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.5);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  z-index: 5;
}

.scroll-dot {
  width: 8px;
  height: 8px;
  background: var(--gold);
  border-radius: 50%;
  animation: scrollBounce 2s ease-in-out infinite;
}

@keyframes scrollBounce {
  0%, 100% { transform: translateY(0); opacity: 1; }
  50% { transform: translateY(8px); opacity: 0.4; }
}

/* ═══════════════════════════════════════════════════════════════ */
/*  WHY CHOOSE US                                                  */
/* ═══════════════════════════════════════════════════════════════ */
.why-us {
  padding: 96px 0;
  background: var(--white);
  position: relative;
  overflow: hidden;
}

.why-us::before {
  content: '';
  position: absolute;
  top: -60px;
  left: 0;
  right: 0;
  height: 60px;
  background: var(--white);
  clip-path: ellipse(55% 100% at 50% 100%);
}

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

.why-card {
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.why-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--green), var(--gold));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.why-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--green-pale);
}

.why-card:hover::before {
  transform: scaleX(1);
}

.why-icon {
  width: 64px;
  height: 64px;
  background: var(--green-pale);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transition: var(--transition);
}

.why-card:hover .why-icon {
  background: var(--green);
}
.why-card:hover .why-icon svg {
  stroke: var(--white);
}

.why-card h3 {
  font-family: var(--font-head);
  font-size: 18px;
  font-weight: 600;
  color: var(--green-dark);
  margin-bottom: 10px;
}

.why-card p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ═══════════════════════════════════════════════════════════════ */
/*  PRODUCTS SECTION                                               */
/* ═══════════════════════════════════════════════════════════════ */
.products-section {
  padding: 96px 0;
  background: var(--cream);
}

/* Search Bar */
.search-bar-wrap {
  display: flex;
  justify-content: center;
  margin-bottom: 24px;
}

.search-bar {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: 50px;
  padding: 12px 22px;
  width: 100%;
  max-width: 420px;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
}
.search-bar:focus-within {
  border-color: var(--green);
  box-shadow: 0 0 0 4px rgba(14,90,53,0.08);
}

.search-bar input {
  border: none;
  outline: none;
  background: transparent;
  font-size: 14px;
  font-family: var(--font-body);
  color: var(--text);
  width: 100%;
}
.search-bar input::placeholder { color: var(--text-light); }

/* Filter Pills */
.filter-pills {
  display: flex;
  gap: 8px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

.pill {
  padding: 10px 22px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-muted);
  background: var(--white);
  border: 1.5px solid var(--border);
  transition: var(--transition);
  cursor: pointer;
  letter-spacing: 0.3px;
}
.pill:hover {
  border-color: var(--green);
  color: var(--green);
  background: var(--green-pale);
}
.pill.active {
  background: var(--green);
  color: var(--white);
  border-color: var(--green);
  box-shadow: 0 4px 12px rgba(14,90,53,0.25);
}

/* Product Grid */
.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

/* Product Card */
.product-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-sm);
  animation: cardFadeIn 0.5s ease forwards;
  opacity: 0;
  transform: translateY(16px);
}

@keyframes cardFadeIn {
  to { opacity: 1; transform: translateY(0); }
}

.product-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(14,90,53,0.15);
}

/* Product Image */
.product-img-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: linear-gradient(135deg, var(--cream-dark), var(--cream));
}

.product-img-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  background: linear-gradient(135deg, #E8F5EE 0%, #F0EDE4 100%);
}

.product-img-placeholder .placeholder-icon {
  font-size: 48px;
  opacity: 0.6;
}

.product-img-placeholder .placeholder-label {
  font-size: 11px;
  font-weight: 600;
  color: var(--green);
  opacity: 0.5;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.product-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  padding: 12px;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.product-category-tag {
  position: absolute;
  top: 12px;
  left: 12px;
  background: rgba(14,90,53,0.9);
  color: var(--white);
  font-size: 10px;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 20px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  backdrop-filter: blur(4px);
}

.product-info {
  padding: 20px;
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: 14px;
}

.product-name {
  font-family: var(--font-head);
  font-size: 17px;
  font-weight: 600;
  color: var(--green-dark);
  line-height: 1.3;
}

/* Size Selector */
.size-selector-label {
  font-size: 11px;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 6px;
}

.size-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.size-pill {
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  color: var(--text-muted);
  background: var(--cream);
  border: 1.5px solid var(--border);
  cursor: pointer;
  transition: var(--transition);
}
.size-pill:hover {
  border-color: var(--green);
  color: var(--green);
}
.size-pill.selected {
  background: var(--green);
  color: var(--white);
  border-color: var(--green);
}

/* Price */
.product-price {
  font-family: var(--font-head);
  font-size: 24px;
  font-weight: 700;
  color: var(--green-dark);
}

.product-price span.currency {
  font-size: 16px;
  font-weight: 600;
  color: var(--gold);
}

/* Quantity */
.product-qty-row {
  display: flex;
  align-items: center;
  gap: 12px;
}

.qty-label {
  font-size: 12px;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.qty-control {
  display: flex;
  align-items: center;
  gap: 0;
  background: var(--cream);
  border: 1.5px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
}

.qty-btn {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 600;
  color: var(--green);
  background: transparent;
  transition: var(--transition);
  cursor: pointer;
  border: none;
  line-height: 1;
}
.qty-btn:hover {
  background: var(--green-pale);
}

.qty-val {
  min-width: 32px;
  text-align: center;
  font-size: 14px;
  font-weight: 700;
  color: var(--text);
}

/* Card Actions */
.product-actions {
  display: flex;
  gap: 8px;
  margin-top: auto;
}

.btn-wa-order {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 16px;
  background: linear-gradient(135deg, var(--green), var(--green-light));
  color: var(--white);
  border-radius: 12px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  border: none;
  font-family: var(--font-body);
  transition: var(--transition);
  box-shadow: 0 4px 12px rgba(14,90,53,0.2);
}
.btn-wa-order:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(14,90,53,0.3);
}

.btn-add-cart {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--cream);
  border: 1.5px solid var(--border);
  border-radius: 12px;
  color: var(--green);
  cursor: pointer;
  transition: var(--transition);
  flex-shrink: 0;
}
.btn-add-cart:hover {
  background: var(--green-pale);
  border-color: var(--green);
}

/* No Results */
.no-results {
  text-align: center;
  padding: 64px 20px;
  color: var(--text-muted);
}
.no-results-icon { font-size: 48px; margin-bottom: 16px; }
.no-results p { font-size: 16px; }

/* ═══════════════════════════════════════════════════════════════ */
/*  TESTIMONIALS                                                   */
/* ═══════════════════════════════════════════════════════════════ */
.testimonials {
  padding: 96px 0;
  background: var(--green-dark);
  position: relative;
  overflow: hidden;
}

.testimonials::before {
  content: '';
  position: absolute;
  top: -2px;
  left: 0;
  right: 0;
  height: 60px;
  background: var(--green-dark);
  clip-path: ellipse(55% 100% at 50% 100%);
  transform: rotate(180deg);
  margin-top: -58px;
}

.testimonials .section-tag {
  background: rgba(201,162,39,0.15);
  border-color: rgba(201,162,39,0.3);
}

.testimonials .section-title {
  color: var(--white);
}
.testimonials .section-sub {
  color: rgba(255,255,255,0.65);
}

.testimonial-track-wrap {
  overflow: hidden;
}

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

.testimonial-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  backdrop-filter: blur(10px);
  transition: var(--transition);
  position: relative;
}
.testimonial-card:hover {
  background: rgba(255,255,255,0.1);
  transform: translateY(-4px);
}

.testi-quote {
  font-family: var(--font-head);
  font-size: 64px;
  color: var(--gold);
  line-height: 0.6;
  margin-bottom: 20px;
  opacity: 0.6;
}

.testi-stars {
  color: var(--gold);
  font-size: 16px;
  letter-spacing: 2px;
  margin-bottom: 14px;
}

.testi-text {
  font-size: 14px;
  color: rgba(255,255,255,0.8);
  line-height: 1.8;
  margin-bottom: 24px;
  font-style: italic;
}

.testi-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testi-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--green-light), var(--green));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 700;
  color: var(--white);
  flex-shrink: 0;
  border: 2px solid rgba(201,162,39,0.4);
}

.testi-name {
  font-size: 14px;
  font-weight: 600;
  color: var(--white);
}
.testi-loc {
  font-size: 12px;
  color: rgba(255,255,255,0.5);
  margin-top: 2px;
}

.testimonial-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 32px;
}

/* ═══════════════════════════════════════════════════════════════ */
/*  FAQ SECTION                                                    */
/* ═══════════════════════════════════════════════════════════════ */
.faq {
  padding: 96px 0;
  background: var(--white);
}

.faq-container {
  max-width: 760px;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  background: var(--cream);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: var(--transition);
}
.faq-item.open {
  border-color: var(--green);
  box-shadow: 0 4px 16px rgba(14,90,53,0.1);
}

.faq-q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  width: 100%;
  padding: 20px 24px;
  background: transparent;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 600;
  color: var(--green-dark);
  transition: var(--transition);
}
.faq-q:hover { color: var(--green); }

.faq-icon {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  background: var(--green-pale);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  color: var(--green);
}

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

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}
.faq-item.open .faq-a {
  max-height: 300px;
}

.faq-a-inner {
  padding: 0 24px 20px;
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.8;
  border-top: 1px solid var(--border);
  padding-top: 16px;
}

/* ═══════════════════════════════════════════════════════════════ */
/*  CONTACT SECTION                                                */
/* ═══════════════════════════════════════════════════════════════ */
.contact {
  padding: 96px 0;
  background: var(--cream);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  max-width: 800px;
  margin: 0 auto;
}

.contact-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  text-align: center;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
}
.contact-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.contact-icon {
  width: 72px;
  height: 72px;
  background: var(--green-pale);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.contact-card h3 {
  font-family: var(--font-head);
  font-size: 20px;
  font-weight: 700;
  color: var(--green-dark);
  margin-bottom: 10px;
}

.contact-card p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 16px;
}

.contact-detail {
  font-size: 16px;
  font-weight: 600;
  color: var(--green-dark);
  margin-bottom: 24px;
  line-height: 1.5;
}

.contact-badge {
  display: inline-block;
  background: var(--green-pale);
  border: 1px solid rgba(14,90,53,0.15);
  color: var(--green);
  font-size: 13px;
  font-weight: 600;
  padding: 8px 16px;
  border-radius: 20px;
  margin-top: 8px;
}

/* ═══════════════════════════════════════════════════════════════ */
/*  FOOTER                                                         */
/* ═══════════════════════════════════════════════════════════════ */
.footer {
  background: var(--green-dark);
  color: var(--white);
}

.footer-top {
  padding: 72px 0 48px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}

.footer-brand-name {
  font-family: var(--font-head);
  font-size: 20px;
  font-weight: 700;
  color: var(--white);
}

.footer-tagline-main {
  font-size: 12px;
  color: var(--gold);
  font-style: italic;
}

.footer-desc {
  font-size: 14px;
  color: rgba(255,255,255,0.6);
  line-height: 1.8;
  margin-bottom: 20px;
}

.footer-tagline-accent {
  font-family: var(--font-head);
  font-size: 16px;
  font-style: italic;
  color: var(--gold);
  opacity: 0.85;
}

.footer-col-title {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--gold);
  margin-bottom: 20px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links a {
  font-size: 14px;
  color: rgba(255,255,255,0.65);
  transition: var(--transition);
}
.footer-links a:hover {
  color: var(--gold);
  padding-left: 4px;
}

.footer-wa-text {
  font-size: 14px;
  color: rgba(255,255,255,0.6);
  line-height: 1.7;
  margin-bottom: 20px;
}

.footer-wa-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #25D366;
  color: var(--white);
  font-size: 14px;
  font-weight: 600;
  padding: 12px 20px;
  border-radius: 12px;
  transition: var(--transition);
}
.footer-wa-btn:hover {
  background: #1EBF59;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(37,211,102,0.3);
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 24px 0;
}

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

.footer-bottom p {
  font-size: 13px;
  color: rgba(255,255,255,0.45);
}

.footer-love {
  font-size: 13px;
  color: rgba(255,255,255,0.5);
}

/* ═══════════════════════════════════════════════════════════════ */
/*  FLOATING WHATSAPP                                              */
/* ═══════════════════════════════════════════════════════════════ */
.floating-wa {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 999;
  width: 60px;
  height: 60px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(37,211,102,0.4);
  transition: var(--transition);
}
.floating-wa:hover {
  transform: scale(1.1);
  box-shadow: 0 12px 32px rgba(37,211,102,0.5);
}

.floating-wa-pulse {
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 2px solid #25D366;
  animation: waPulse 2.5s ease-out infinite;
}
@keyframes waPulse {
  0% { transform: scale(1); opacity: 0.7; }
  100% { transform: scale(1.6); opacity: 0; }
}

/* ═══════════════════════════════════════════════════════════════ */
/*  CART DRAWER                                                    */
/* ═══════════════════════════════════════════════════════════════ */
.cart-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.5);
  z-index: 1100;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  backdrop-filter: blur(4px);
}
.cart-overlay.open {
  opacity: 1;
  pointer-events: all;
}

.cart-drawer {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  max-width: 420px;
  background: var(--white);
  z-index: 1200;
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
  box-shadow: -16px 0 48px rgba(0,0,0,0.15);
}
.cart-drawer.open {
  transform: translateX(0);
}

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

.cart-header h3 {
  font-family: var(--font-head);
  font-size: 22px;
  font-weight: 700;
  color: var(--green-dark);
}

.cart-close {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--cream);
  border-radius: 10px;
  color: var(--text-muted);
  transition: var(--transition);
  cursor: pointer;
}
.cart-close:hover {
  background: var(--green-pale);
  color: var(--green);
}

.cart-items {
  flex: 1;
  overflow-y: auto;
  padding: 20px 24px;
}

.cart-empty {
  text-align: center;
  padding: 64px 20px;
  color: var(--text-muted);
}
.cart-empty-icon { font-size: 48px; margin-bottom: 16px; }
.cart-empty p { font-size: 15px; font-weight: 600; color: var(--text); }
.cart-empty-sub { font-size: 13px; color: var(--text-muted); margin-top: 6px; }

.cart-item-row {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 16px 0;
  border-bottom: 1px solid var(--border);
}

.cart-item-img {
  width: 56px;
  height: 56px;
  background: var(--green-pale);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  flex-shrink: 0;
}

.cart-item-info { flex: 1; }

.cart-item-name {
  font-size: 14px;
  font-weight: 600;
  color: var(--green-dark);
  margin-bottom: 4px;
}

.cart-item-meta {
  font-size: 12px;
  color: var(--text-muted);
  margin-bottom: 6px;
}

.cart-item-price {
  font-size: 15px;
  font-weight: 700;
  color: var(--green-dark);
}

.cart-item-remove {
  background: none;
  border: none;
  cursor: pointer;
  color: var(--text-light);
  font-size: 16px;
  padding: 4px;
  transition: var(--transition);
  line-height: 1;
}
.cart-item-remove:hover { color: #EF4444; }

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

.cart-total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
  font-size: 16px;
  font-weight: 700;
  color: var(--green-dark);
}

#cart-total-price {
  font-family: var(--font-head);
  font-size: 22px;
  color: var(--gold);
}

.btn-clear-cart {
  width: 100%;
  margin-top: 12px;
  padding: 10px;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-muted);
  background: transparent;
  border: 1.5px solid var(--border);
  border-radius: 12px;
  cursor: pointer;
  font-family: var(--font-body);
  transition: var(--transition);
}
.btn-clear-cart:hover {
  border-color: #EF4444;
  color: #EF4444;
  background: #FEF2F2;
}

/* ═══════════════════════════════════════════════════════════════ */
/*  SCROLL ANIMATION OBSERVER                                      */
/* ═══════════════════════════════════════════════════════════════ */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ═══════════════════════════════════════════════════════════════ */
/*  RESPONSIVE — TABLET (≤ 1024px)                                */
/* ═══════════════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .product-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }

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

/* ═══════════════════════════════════════════════════════════════ */
/*  RESPONSIVE — MOBILE (≤ 768px)                                 */
/* ═══════════════════════════════════════════════════════════════ */
@media (max-width: 768px) {
  /* Nav Dropdown Floating Glassmorphism */
  .nav-links {
    position: fixed;
    top: 80px;
    left: 16px;
    right: 16px;
    background: rgba(250, 248, 242, 0.94);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    flex-direction: column;
    align-items: stretch;
    padding: 24px 20px;
    gap: 8px;
    border-radius: 20px;
    border: 1px solid rgba(201, 162, 39, 0.25);
    box-shadow: 0 16px 48px rgba(14, 90, 53, 0.18);
    transform: translateY(-20px);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.3s ease;
    z-index: 999;
  }
  .nav-links.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: all;
  }
  .nav-link {
    padding: 14px 16px;
    font-size: 16px;
    border-radius: 12px;
  }
  .nav-cta {
    text-align: center;
    padding: 14px;
    margin-top: 8px;
    border-radius: 12px;
  }
  .hamburger { display: flex; }

  /* Hero Mobile Enhancements */
  .hero {
    min-height: 80vh;
    padding: 100px 20px 40px;
  }
  .hero-title {
    font-size: clamp(34px, 8vw, 48px);
    line-height: 1.2;
    margin-bottom: 16px;
  }
  .hero-sub {
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 24px;
  }
  .hero-badge {
    padding: 6px 14px;
    font-size: 10px;
    margin-bottom: 20px;
  }
  .hero-values {
    gap: 16px;
    margin-bottom: 32px;
  }
  .hero-val {
    font-size: 11px;
    letter-spacing: 1px;
  }
  .hero-btns {
    flex-direction: column;
    align-items: center;
  }
  .btn { width: 100%; max-width: 320px; justify-content: center; }

  /* Why Choice Grid */
  .why-grid {
    grid-template-columns: 1fr;
  }

  /* Compact 2-column e-commerce grid on mobile */
  .product-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
  .product-card {
    border-radius: 16px;
  }
  .product-img {
    padding: 8px;
  }
  .product-info {
    padding: 12px !important; /* override the 480px block */
    gap: 8px;
  }
  .product-name {
    font-size: 14px;
    line-height: 1.25;
  }
  .size-selector-label {
    display: none;
  }
  .size-pills {
    gap: 4px;
  }
  .size-pill {
    padding: 4px 8px;
    font-size: 10px;
  }
  .product-price {
    font-size: 17px;
  }
  .product-price span.currency {
    font-size: 12px;
  }
  .product-qty-row {
    display: none; /* hide qty to keep mobile cards compact */
  }
  .product-actions {
    gap: 6px;
  }
  .btn-wa-order {
    padding: 10px 8px;
    font-size: 11px;
    border-radius: 8px;
    gap: 4px;
  }
  .btn-wa-order .btn-wa-text {
    display: none;
  }
  .btn-wa-order::after {
    content: "WhatsApp";
    font-size: 11px;
    font-weight: 600;
  }
  .btn-wa-order svg {
    width: 14px;
    height: 14px;
  }
  .btn-add-cart {
    width: 38px;
    height: 38px;
    border-radius: 8px;
  }
  .btn-add-cart svg {
    width: 16px;
    height: 16px;
  }

  /* Horizontal category scroll on mobile */
  .filter-pills {
    display: flex;
    gap: 8px;
    justify-content: flex-start;
    overflow-x: auto;
    padding: 4px 20px 16px;
    margin: 0 -20px 24px;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }
  .filter-pills::-webkit-scrollbar {
    display: none;
  }
  .pill {
    scroll-snap-align: start;
    flex-shrink: 0;
  }

  /* Testimonials */
  .testimonial-track {
    grid-template-columns: 1fr;
  }

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

  /* Footer */
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .footer-bottom-inner {
    flex-direction: column;
    text-align: center;
  }

  /* Cart Drawer */
  .cart-drawer {
    max-width: 100%;
  }

  /* Floating WA */
  .floating-wa {
    bottom: 20px;
    right: 20px;
    width: 54px;
    height: 54px;
  }

  .section-header { margin-bottom: 32px; }
}

/* ═══════════════════════════════════════════════════════════════ */
/*  RESPONSIVE — SMALL MOBILE (≤ 480px)                           */
/* ═══════════════════════════════════════════════════════════════ */
@media (max-width: 480px) {
  .hero-values { gap: 12px; }
  .filter-pills { gap: 6px; }
  .pill { padding: 8px 14px; font-size: 11px; }
  .why-card { padding: 24px 16px; }
  .testimonial-card { padding: 24px 16px; }
  .contact-card { padding: 24px 16px; }
}
