/* ==========================================================================
   ABBOTT FOODS — Premium Luxury Website
   Style: Dark rich tones with gold accents
   Fonts: Playfair Display (display) + Lato (body)
   ========================================================================== */

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

:root {
  /* Brand Colors */
  --color-bg: #1A1A1A;
  --color-bg-deep: #111111;
  --color-surface: #222222;
  --color-surface-light: #2A2A2A;
  --color-gold: #D4A72C;
  --color-gold-light: #E8C65A;
  --color-gold-dark: #B08A1E;
  --color-green: #4A8C2A;
  --color-green-dark: #3A6E20;
  --color-cream: #F5F0E8;
  --color-cream-muted: #C8C0B4;
  --color-white: #FFFFFF;
  --color-text: #F5F0E8;
  --color-text-muted: #A09A90;
  --color-text-dark: #1A1A1A;
  --color-divider: rgba(212, 167, 44, 0.15);

  /* Typography */
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'Lato', 'Helvetica Neue', Arial, sans-serif;

  /* Type Scale */
  --text-xs: clamp(0.75rem, 0.7rem + 0.25vw, 0.875rem);
  --text-sm: clamp(0.875rem, 0.8rem + 0.35vw, 1rem);
  --text-base: clamp(1rem, 0.95rem + 0.25vw, 1.125rem);
  --text-lg: clamp(1.125rem, 1rem + 0.75vw, 1.5rem);
  --text-xl: clamp(1.5rem, 1.2rem + 1.25vw, 2.25rem);
  --text-2xl: clamp(2rem, 1.2rem + 2.5vw, 3.5rem);
  --text-3xl: clamp(2.5rem, 1rem + 4vw, 5rem);

  /* Spacing */
  --space-1: 0.25rem;
  --space-2: 0.5rem;
  --space-3: 0.75rem;
  --space-4: 1rem;
  --space-5: 1.25rem;
  --space-6: 1.5rem;
  --space-8: 2rem;
  --space-10: 2.5rem;
  --space-12: 3rem;
  --space-16: 4rem;
  --space-20: 5rem;
  --space-24: 6rem;
  --space-32: 8rem;

  /* Radius */
  --radius-sm: 0.375rem;
  --radius-md: 0.5rem;
  --radius-lg: 0.75rem;
  --radius-xl: 1rem;

  /* Transitions */
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --transition-interactive: 180ms cubic-bezier(0.16, 1, 0.3, 1);

  /* Shadows */
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.3);
  --shadow-md: 0 4px 16px rgba(0,0,0,0.4);
  --shadow-lg: 0 12px 40px rgba(0,0,0,0.5);
  --shadow-gold: 0 4px 20px rgba(212, 167, 44, 0.2);

  /* Content widths */
  --content-wide: 1200px;
  --content-default: 960px;
}

html {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  scroll-behavior: smooth;
  scroll-padding-top: 100px;
}

body {
  min-height: 100dvh;
  line-height: 1.6;
  font-family: var(--font-body);
  font-size: var(--text-base);
  color: var(--color-text);
  background-color: var(--color-bg);
  overflow-x: hidden;
}

img, picture, video, canvas, svg { display: block; max-width: 100%; height: auto; }
ul { list-style: none; }
input, button, textarea, select { font: inherit; color: inherit; }
h1, h2, h3, h4 { text-wrap: balance; line-height: 1.15; font-family: var(--font-display); }
p, li, figcaption { text-wrap: pretty; max-width: 72ch; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; background: none; border: none; }

::selection {
  background: rgba(212, 167, 44, 0.3);
  color: var(--color-cream);
}

:focus-visible {
  outline: 2px solid var(--color-gold);
  outline-offset: 3px;
  border-radius: var(--radius-sm);
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* ---- UTILITY ---- */
.container {
  width: 100%;
  max-width: var(--content-wide);
  margin-inline: auto;
  padding-inline: var(--space-6);
}

.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border-width: 0;
}

/* ---- BUTTONS ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: var(--text-sm);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: var(--space-3) var(--space-6);
  border-radius: var(--radius-sm);
  border: 2px solid transparent;
  cursor: pointer;
  transition: background var(--transition-interactive),
              color var(--transition-interactive),
              border-color var(--transition-interactive),
              box-shadow var(--transition-interactive),
              transform var(--transition-interactive);
  white-space: nowrap;
}

.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }

.btn--gold {
  background: var(--color-gold);
  color: var(--color-bg-deep);
  border-color: var(--color-gold);
}
.btn--gold:hover {
  background: var(--color-gold-light);
  border-color: var(--color-gold-light);
  box-shadow: var(--shadow-gold);
}

.btn--outline {
  background: transparent;
  color: var(--color-cream);
  border-color: var(--color-cream);
}
.btn--outline:hover {
  background: rgba(245, 240, 232, 0.1);
  border-color: var(--color-gold);
  color: var(--color-gold);
}

.btn--dark {
  background: var(--color-bg-deep);
  color: var(--color-gold);
  border-color: var(--color-bg-deep);
}
.btn--dark:hover {
  background: var(--color-bg);
  box-shadow: var(--shadow-lg);
}

.btn--lg {
  padding: var(--space-4) var(--space-8);
  font-size: var(--text-sm);
}

.btn--sm {
  padding: var(--space-2) var(--space-4);
  font-size: var(--text-xs);
}

/* ---- SECTION HEADERS ---- */
.section-label {
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--color-gold);
  margin-bottom: var(--space-3);
}

.section-title {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  font-weight: 700;
  color: var(--color-cream);
  line-height: 1.1;
  margin-bottom: var(--space-4);
}

.section-title--light {
  color: var(--color-cream);
}

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

.section-header {
  text-align: center;
  margin-bottom: clamp(var(--space-10), 5vw, var(--space-16));
}

/* ================================================================
   NAVBAR
   ================================================================ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: var(--space-4) 0;
  transition: background 0.4s var(--ease-out),
              padding 0.4s var(--ease-out),
              box-shadow 0.4s var(--ease-out);
}

.navbar--scrolled {
  background: rgba(17, 17, 17, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: var(--space-2) 0;
  box-shadow: 0 1px 0 var(--color-divider);
}

.navbar__inner {
  max-width: var(--content-wide);
  margin-inline: auto;
  padding-inline: var(--space-6);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.navbar__logo img {
  height: 44px;
  width: auto;
  object-fit: contain;
  transition: height 0.4s var(--ease-out);
}

.navbar--scrolled .navbar__logo img {
  height: 36px;
}

.navbar__nav {
  display: flex;
  align-items: center;
  gap: var(--space-8);
}

.navbar__list {
  display: flex;
  align-items: center;
  gap: var(--space-6);
}

.navbar__link {
  font-size: var(--text-sm);
  font-weight: 400;
  color: var(--color-cream);
  letter-spacing: 0.04em;
  position: relative;
  transition: color var(--transition-interactive);
}

.navbar__link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--color-gold);
  transition: width 0.3s var(--ease-out);
}

.navbar__link:hover { color: var(--color-gold); }
.navbar__link:hover::after { width: 100%; }

.navbar__link--active { color: var(--color-gold); }
.navbar__link--active::after { width: 100%; }

.navbar__cta {
  font-size: var(--text-xs);
}

/* Hamburger */
.navbar__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: var(--space-2);
  z-index: 110;
}

.navbar__hamburger-line {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--color-cream);
  border-radius: 2px;
  transition: transform 0.3s var(--ease-out), opacity 0.3s var(--ease-out);
}

.navbar__hamburger.active .navbar__hamburger-line:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.navbar__hamburger.active .navbar__hamburger-line:nth-child(2) {
  opacity: 0;
}
.navbar__hamburger.active .navbar__hamburger-line:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

@media (max-width: 768px) {
  .navbar__hamburger {
    display: flex;
  }

  .navbar__nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 320px;
    height: 100dvh;
    background: var(--color-bg-deep);
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    padding: var(--space-12) var(--space-8);
    gap: var(--space-6);
    transition: right 0.4s var(--ease-out);
    box-shadow: -8px 0 30px rgba(0,0,0,0.5);
  }

  .navbar__nav.open {
    right: 0;
  }

  .navbar__list {
    flex-direction: column;
    align-items: flex-start;
    gap: var(--space-6);
  }

  .navbar__link {
    font-size: var(--text-lg);
    font-family: var(--font-display);
  }

  .navbar__cta {
    width: 100%;
    text-align: center;
    justify-content: center;
  }
}

/* Mobile overlay */
.nav-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.6);
  z-index: 99;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s var(--ease-out);
}

.nav-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

/* ================================================================
   HERO
   ================================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: linear-gradient(135deg, #1A1A1A 0%, #2A1E0A 30%, #3A2A0F 50%, #2A1E0A 70%, #1A1A1A 100%);
}

.hero__honeycomb {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  opacity: 0.6;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, transparent 0%, rgba(26,26,26,0.4) 60%, rgba(26,26,26,0.8) 100%);
  z-index: 2;
}

.hero__content {
  position: relative;
  z-index: 3;
  text-align: center;
  padding: var(--space-24) var(--space-6) var(--space-16);
  max-width: 800px;
}

.hero__tagline {
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  color: var(--color-gold);
  margin-bottom: var(--space-6);
}

.hero__title {
  font-family: var(--font-display);
  font-size: var(--text-3xl);
  font-weight: 700;
  color: var(--color-cream);
  line-height: 1.05;
  margin-bottom: var(--space-6);
}

.hero__subtitle {
  font-size: var(--text-base);
  color: var(--color-cream-muted);
  max-width: 560px;
  margin-inline: auto;
  line-height: 1.7;
  margin-bottom: var(--space-10);
}

.hero__actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-4);
  flex-wrap: wrap;
}

.hero__drip {
  position: absolute;
  bottom: -1px;
  left: 0;
  right: 0;
  z-index: 4;
  line-height: 0;
}

.hero__drip svg {
  width: 100%;
  height: auto;
}

/* ================================================================
   PRODUCTS
   ================================================================ */
.products {
  background: var(--color-bg);
  padding-block: clamp(var(--space-16), 8vw, var(--space-32));
}

.products__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(320px, 100%), 1fr));
  gap: var(--space-8);
}

@media (min-width: 1024px) {
  .products__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Product Card */
.product-card {
  background: var(--color-surface);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(212, 167, 44, 0.1);
  transition: transform 0.4s var(--ease-out),
              box-shadow 0.4s var(--ease-out),
              border-color 0.4s var(--ease-out);
}

.product-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg), 0 0 40px rgba(212, 167, 44, 0.08);
  border-color: rgba(212, 167, 44, 0.25);
}

.product-card__image-wrap {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4/3;
  background: var(--color-bg-deep);
}

.product-card__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease-out);
}

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

.product-card__badge {
  position: absolute;
  top: var(--space-4);
  left: var(--space-4);
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: var(--space-1) var(--space-3);
  border-radius: var(--radius-sm);
  z-index: 2;
}

.product-card__badge--premium {
  background: var(--color-gold);
  color: var(--color-bg-deep);
}
.product-card__badge--popular {
  background: var(--color-green);
  color: var(--color-white);
}
.product-card__badge--healing {
  background: #5B9BD5;
  color: var(--color-white);
}
.product-card__badge--bestseller {
  background: #D45B5B;
  color: var(--color-white);
}
.product-card__badge--rare {
  background: #8B5CF6;
  color: var(--color-white);
}

.product-card__body {
  padding: var(--space-6);
}

.product-card__name {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  font-weight: 600;
  color: var(--color-cream);
  margin-bottom: var(--space-2);
}

.product-card__name-sub {
  font-size: 0.75em;
  color: var(--color-text-muted);
  font-weight: 400;
}

.product-card__desc {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  line-height: 1.6;
  margin-bottom: var(--space-5);
}

.product-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-4);
  padding-top: var(--space-4);
  border-top: 1px solid var(--color-divider);
}

.product-card__price {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  font-weight: 700;
  color: var(--color-gold);
}

.product-card__price small {
  font-size: 0.6em;
  font-weight: 400;
  color: var(--color-text-muted);
  font-family: var(--font-body);
}

/* ================================================================
   TRUST / WHY CHOOSE US
   ================================================================ */
.trust {
  background: var(--color-bg-deep);
  padding-block: clamp(var(--space-16), 8vw, var(--space-32));
  position: relative;
}

.trust::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--color-divider), transparent);
}

.trust__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: var(--space-8);
}

.trust__item {
  text-align: center;
  padding: var(--space-8) var(--space-4);
}

.trust__icon {
  width: 72px;
  height: 72px;
  margin: 0 auto var(--space-5);
}

.trust__icon svg {
  width: 100%;
  height: 100%;
}

.trust__title {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  font-weight: 600;
  color: var(--color-cream);
  margin-bottom: var(--space-3);
}

.trust__desc {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  line-height: 1.6;
  max-width: 280px;
  margin-inline: auto;
}

/* ================================================================
   OUR STORY
   ================================================================ */
.story {
  background: var(--color-bg);
  padding-block: clamp(var(--space-16), 8vw, var(--space-32));
}

.story__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(var(--space-8), 5vw, var(--space-16));
  align-items: center;
}

.story__text .section-label { text-align: left; }
.story__text .section-title { text-align: left; }

.story__body {
  font-size: var(--text-base);
  color: var(--color-text-muted);
  line-height: 1.7;
  margin-bottom: var(--space-5);
}

.story__motto {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  font-style: italic;
  color: var(--color-gold);
  margin-top: var(--space-6);
  padding-left: var(--space-6);
  border-left: 3px solid var(--color-gold);
}

.story__image-wrap {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.story__image-wrap::before {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: calc(var(--radius-lg) + 4px);
  border: 1px solid var(--color-divider);
  z-index: -1;
}

.story__image {
  width: 100%;
  height: auto;
  border-radius: var(--radius-lg);
  aspect-ratio: 4/5;
  object-fit: cover;
}

@media (max-width: 768px) {
  .story__inner {
    grid-template-columns: 1fr;
  }
  .story__image-wrap {
    order: -1;
  }
}

/* ================================================================
   TESTIMONIALS
   ================================================================ */
.testimonials {
  background: var(--color-bg-deep);
  padding-block: clamp(var(--space-16), 8vw, var(--space-32));
  position: relative;
}

.testimonials::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--color-divider), transparent);
}

.testimonials__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--space-6);
}

.testimonial-card {
  background: var(--color-surface);
  border: 1px solid rgba(212, 167, 44, 0.08);
  border-radius: var(--radius-lg);
  padding: var(--space-8);
  transition: border-color 0.3s var(--ease-out);
}

.testimonial-card:hover {
  border-color: rgba(212, 167, 44, 0.2);
}

.testimonial-card__stars {
  display: flex;
  gap: var(--space-1);
  margin-bottom: var(--space-5);
}

.testimonial-card__stars svg {
  width: 18px;
  height: 18px;
}

.testimonial-card__quote {
  font-size: var(--text-base);
  color: var(--color-cream-muted);
  line-height: 1.7;
  font-style: italic;
  margin-bottom: var(--space-6);
}

.testimonial-card__author {
  display: flex;
  align-items: center;
  gap: var(--space-3);
}

.testimonial-card__avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--color-gold), var(--color-gold-dark));
  color: var(--color-bg-deep);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: var(--text-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.testimonial-card__name {
  font-weight: 700;
  font-size: var(--text-sm);
  color: var(--color-cream);
}

.testimonial-card__location {
  font-size: var(--text-xs);
  color: var(--color-text-muted);
}

/* ================================================================
   GALLERY / INSTAGRAM
   ================================================================ */
.gallery {
  background: var(--color-bg);
  padding-block: clamp(var(--space-16), 8vw, var(--space-32));
}

.gallery__handle {
  color: var(--color-gold);
}

.gallery__grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: var(--space-3);
}

.gallery__item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-md);
  aspect-ratio: 1;
  cursor: pointer;
}

.gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s var(--ease-out);
}

.gallery__item:hover img {
  transform: scale(1.1);
}

.gallery__overlay {
  position: absolute;
  inset: 0;
  background: rgba(26, 26, 26, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-cream);
  opacity: 0;
  transition: opacity 0.3s var(--ease-out);
}

.gallery__item:hover .gallery__overlay {
  opacity: 1;
}

@media (max-width: 768px) {
  .gallery__grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .gallery__item--hidden-mobile {
    display: none;
  }
}

@media (min-width: 769px) and (max-width: 1023px) {
  .gallery__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* ================================================================
   CTA BANNER
   ================================================================ */
.cta-banner {
  position: relative;
  background: linear-gradient(135deg, var(--color-gold-dark) 0%, var(--color-gold) 50%, var(--color-gold-light) 100%);
  padding-block: clamp(var(--space-16), 8vw, var(--space-24));
  overflow: hidden;
}

.cta-banner__honeycomb {
  position: absolute;
  inset: 0;
  z-index: 0;
  opacity: 0.5;
}

.cta-banner__honeycomb svg {
  width: 100%;
  height: 100%;
}

.cta-banner__inner {
  position: relative;
  z-index: 1;
  text-align: center;
}

.cta-banner__title {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  font-weight: 700;
  color: var(--color-bg-deep);
  margin-bottom: var(--space-4);
}

.cta-banner__subtitle {
  font-size: var(--text-base);
  color: rgba(26, 26, 26, 0.7);
  max-width: 520px;
  margin-inline: auto;
  margin-bottom: var(--space-8);
  line-height: 1.6;
}

.cta-banner__btn {
  font-size: var(--text-sm);
}

/* ================================================================
   FOOTER
   ================================================================ */
.footer {
  background: var(--color-bg-deep);
  padding-top: clamp(var(--space-12), 6vw, var(--space-20));
  padding-bottom: var(--space-8);
  border-top: 1px solid var(--color-divider);
}

.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: var(--space-10);
  padding-bottom: var(--space-10);
  border-bottom: 1px solid rgba(212, 167, 44, 0.08);
}

.footer__logo {
  height: 40px;
  width: auto;
  margin-bottom: var(--space-4);
}

.footer__about {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  line-height: 1.7;
  max-width: 320px;
  margin-bottom: var(--space-5);
}

.footer__social {
  display: flex;
  gap: var(--space-3);
}

.footer__social-link {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(212, 167, 44, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-cream-muted);
  transition: color var(--transition-interactive),
              border-color var(--transition-interactive),
              background var(--transition-interactive);
}

.footer__social-link:hover {
  color: var(--color-gold);
  border-color: var(--color-gold);
  background: rgba(212, 167, 44, 0.08);
}

.footer__heading {
  font-family: var(--font-display);
  font-size: var(--text-base);
  font-weight: 600;
  color: var(--color-cream);
  margin-bottom: var(--space-5);
}

.footer__list {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

.footer__list li {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  display: flex;
  align-items: center;
  gap: var(--space-2);
}

.footer__list li a {
  color: var(--color-text-muted);
  transition: color var(--transition-interactive);
}

.footer__list li a:hover {
  color: var(--color-gold);
}

.footer__list li svg {
  flex-shrink: 0;
  color: var(--color-gold);
}

.footer__bottom {
  padding-top: var(--space-6);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--space-4);
}

.footer__bottom p {
  font-size: var(--text-xs);
  color: var(--color-text-muted);
}

@media (max-width: 768px) {
  .footer__grid {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-8);
  }
  .footer__brand {
    grid-column: 1 / -1;
  }
  .footer__bottom {
    justify-content: center;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .footer__grid {
    grid-template-columns: 1fr;
  }
}

/* ================================================================
   FLOATING WHATSAPP BUTTON
   ================================================================ */
.whatsapp-float {
  position: fixed;
  bottom: var(--space-6);
  right: var(--space-6);
  z-index: 90;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25D366;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(37, 211, 102, 0.4);
  transition: transform var(--transition-interactive),
              box-shadow var(--transition-interactive);
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 24px rgba(37, 211, 102, 0.5);
}

.whatsapp-float::before {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 2px solid rgba(37, 211, 102, 0.3);
  animation: whatsapp-pulse 2s infinite;
}

@keyframes whatsapp-pulse {
  0% { transform: scale(1); opacity: 1; }
  100% { transform: scale(1.4); opacity: 0; }
}

/* ================================================================
   SCROLL ANIMATIONS
   ================================================================ */
.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s var(--ease-out),
              transform 0.7s var(--ease-out);
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger children */
.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; }
.products__grid .product-card:nth-child(5) { transition-delay: 0.4s; }

.trust__grid .trust__item:nth-child(2) { transition-delay: 0.1s; }
.trust__grid .trust__item:nth-child(3) { transition-delay: 0.2s; }
.trust__grid .trust__item:nth-child(4) { transition-delay: 0.3s; }

.testimonials__grid .testimonial-card:nth-child(2) { transition-delay: 0.1s; }
.testimonials__grid .testimonial-card:nth-child(3) { transition-delay: 0.2s; }

/* ================================================================
   RESPONSIVE FINE-TUNING
   ================================================================ */
@media (max-width: 480px) {
  .hero__content {
    padding-top: var(--space-20);
  }

  .hero__title {
    font-size: clamp(2rem, 1rem + 5vw, 3rem);
  }

  .hero__actions {
    flex-direction: column;
    width: 100%;
  }

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

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

  .product-card__footer {
    flex-direction: column;
    align-items: flex-start;
  }

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

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

@media (min-width: 481px) and (max-width: 768px) {
  .products__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-5);
  }
}

/* ================================================================
   LUXURY DETAILS & FLOURISHES
   ================================================================ */

/* Gold gradient line separator */
.products::before,
.gallery::before {
  content: '';
  display: block;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--color-divider), transparent);
  margin-bottom: clamp(var(--space-16), 8vw, var(--space-32));
}

/* Subtle gold glow on the hero */
.hero::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(212, 167, 44, 0.06) 0%, transparent 70%);
  z-index: 1;
  pointer-events: none;
}

/* Decorative corner on product cards */
.product-card::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 60px;
  height: 60px;
  background: linear-gradient(225deg, rgba(212, 167, 44, 0.08) 0%, transparent 60%);
  pointer-events: none;
}

/* ---- PRINT ---- */
@media print {
  .navbar, .whatsapp-float, .cta-banner { display: none; }
  body { color: #000; background: #fff; }
  .hero { min-height: auto; background: none; }
  .hero__overlay, .hero__honeycomb, .hero__drip { display: none; }
  .product-card { break-inside: avoid; }
}
/* ===== VIDEO SECTION ===== */
.video-section {
  padding: 6rem 0;
  background: #111;
}

.video-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
}

.video-wrapper video {
  border: 2px solid rgba(212, 167, 44, 0.3);
}

/* ===== DUAL CURRENCY PRICING ===== */
.product-card__price-gbp {
  display: inline-block;
  margin-left: 0.4rem;
  padding: 0.15rem 0.5rem;
  background: rgba(212, 167, 44, 0.15);
  border: 1px solid rgba(212, 167, 44, 0.4);
  border-radius: 4px;
  color: #D4A72C;
  font-size: 0.85em;
  font-weight: 600;
  letter-spacing: 0.02em;
}

/* ==========================================================================
   WHY PAKISTAN SECTION
   ========================================================================== */
.why-pakistan {
  padding: var(--space-20) 0;
  background: var(--color-bg);
  border-top: 1px solid var(--color-divider);
}

.why-pakistan__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-16);
  align-items: center;
}

.why-pakistan__text .section-title {
  margin-bottom: var(--space-6);
}

.why-pakistan__body {
  font-family: var(--font-body);
  font-size: var(--text-base);
  color: var(--color-text-muted);
  line-height: 1.8;
  margin-bottom: var(--space-5);
}

.why-pakistan__stats {
  display: flex;
  gap: var(--space-8);
  margin-top: var(--space-10);
  padding-top: var(--space-8);
  border-top: 1px solid var(--color-divider);
}

.why-pakistan__stat {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}

.why-pakistan__stat-number {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: 700;
  color: var(--color-gold);
  line-height: 1;
}

.why-pakistan__stat-label {
  font-family: var(--font-body);
  font-size: var(--text-xs);
  color: var(--color-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  line-height: 1.4;
}

.why-pakistan__map {
  display: flex;
  justify-content: center;
  align-items: center;
}

.origin-map {
  width: 100%;
  max-width: 400px;
  height: auto;
  border-radius: 12px;
  border: 1px solid rgba(212,167,44,0.15);
  background: var(--color-bg-deep);
  padding: 16px;
}

@media (max-width: 768px) {
  .why-pakistan__inner {
    grid-template-columns: 1fr;
  }
  .why-pakistan__map {
    order: -1;
  }
  .origin-map {
    max-width: 100%;
  }
  .why-pakistan__stats {
    flex-wrap: wrap;
    gap: var(--space-6);
  }
}

/* ==========================================================================
   HOW TO ORDER SECTION
   ========================================================================== */
.how-to-order {
  padding: var(--space-20) 0;
  background: var(--color-bg-deep);
  border-top: 1px solid var(--color-divider);
}

.order-tabs {
  display: flex;
  gap: var(--space-3);
  margin-bottom: var(--space-10);
  justify-content: center;
}

.order-tab {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  padding: var(--space-3) var(--space-8);
  background: var(--color-surface);
  border: 1px solid var(--color-divider);
  border-radius: 50px;
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--color-text-muted);
  cursor: pointer;
  transition: all 0.25s ease;
  letter-spacing: 0.03em;
}

.order-tab:hover {
  border-color: var(--color-gold);
  color: var(--color-gold);
}

.order-tab--active {
  background: var(--color-gold);
  border-color: var(--color-gold);
  color: var(--color-bg-deep) !important;
  font-weight: 700;
}

.order-panel {
  display: none;
}

.order-panel--active {
  display: block;
}

.order-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-6);
  margin-bottom: var(--space-10);
}

.order-step {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: var(--space-4);
  background: var(--color-surface);
  border: 1px solid var(--color-divider);
  border-radius: 12px;
  padding: var(--space-6);
  position: relative;
  transition: border-color 0.2s;
}

.order-step:hover {
  border-color: rgba(212,167,44,0.4);
}

.order-step__num {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--color-gold);
  color: var(--color-bg-deep);
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.order-step__title {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--color-text);
  line-height: 1.3;
}

.order-step__desc {
  font-family: var(--font-body);
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  line-height: 1.7;
}

.order-step__discount {
  display: inline-block;
  background: rgba(74,140,42,0.2);
  color: #7EC85A;
  border: 1px solid rgba(74,140,42,0.3);
  border-radius: 4px;
  padding: 1px 8px;
  font-weight: 700;
  font-size: 0.9em;
}

.order-cta {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-5);
}

.order-cta__note {
  font-family: var(--font-body);
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  letter-spacing: 0.02em;
}

@media (max-width: 900px) {
  .order-steps {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 560px) {
  .order-steps {
    grid-template-columns: 1fr;
  }
  .order-tabs {
    flex-direction: column;
    align-items: center;
  }
  .order-tab {
    width: 100%;
    max-width: 280px;
    justify-content: center;
  }
}

/* ==========================================================================
   PRODUCT CARD — Allergy warning + enriched descriptions
   ========================================================================== */
.product-card__allergy {
  display: block;
  margin-top: var(--space-3);
  font-size: 0.8rem;
  font-weight: 600;
  color: #E8A020;
  font-style: normal;
}

.product-card__desc {
  line-height: 1.75;
}

