/**
 * Granoza Foods — Global Design System & Stylesheet
 * 
 * Primary Palette & Design Tokens:
 * - Main Off White: #F8F5ED
 * - Warm Cream: #FFFDF7
 * - Deep Forest Green: #064E2B
 * - Dark Premium Green: #033D22
 * - Natural Olive Green: #587B25
 * - Golden Wheat: #D99A16
 * - Warm Premium Gold: #C88A12
 * - Dark Brown: #48250F
 * - Soft Brown: #79502D
 * - Text Charcoal: #292A26
 * - Muted Text: #6C6B63
 * - Border Cream: #E8DFCE
 */

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

:root {
  /* Colors */
  --bg-off-white: #F8F5ED;
  --bg-warm-cream: #FFFDF7;
  --color-deep-green: #064E2B;
  --color-dark-green: #033D22;
  --color-olive-green: #587B25;
  --color-golden-wheat: #D99A16;
  --color-warm-gold: #C88A12;
  --color-dark-brown: #48250F;
  --color-soft-brown: #79502D;
  --text-charcoal: #292A26;
  --text-muted: #6C6B63;
  --border-cream: #E8DFCE;
  --color-white: #FFFFFF;
  --color-whatsapp: #25D366;

  /* Typography */
  --font-serif: 'Playfair Display', 'Cormorant Garamond', serif;
  --font-sans: 'Poppins', 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;

  /* Layout & Sizing */
  --max-width: 1280px;
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 36px;
  --radius-full: 9999px;

  /* Shadows */
  --shadow-sm: 0 4px 12px rgba(41, 42, 38, 0.05);
  --shadow-md: 0 10px 30px rgba(6, 78, 43, 0.08);
  --shadow-lg: 0 20px 45px rgba(6, 78, 43, 0.12);
  --shadow-gold: 0 8px 25px rgba(200, 138, 18, 0.25);

  /* Transitions */
  --transition-fast: 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  --transition-smooth: 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-slow: 0.5s cubic-bezier(0.16, 1, 0.3, 1);

  /* Header total height (announcement bar + nav container) — used for site-main offset */
  --header-h: 123px; /* 38px bar + 85px nav */
}

/* ==================================================
   RESET & BASE STYLES
   ================================================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  scroll-behavior: smooth;
  font-size: 16px;
  overflow-x: hidden !important;
  max-width: 100% !important;
  width: 100%;
  margin: 0;
  padding: 0;
}

body {
  font-family: var(--font-sans);
  background-color: var(--bg-off-white);
  color: var(--text-charcoal);
  line-height: 1.6;
  position: relative;
}

/* Background Decorative Soft Shapes */
body::before {
  content: '';
  position: fixed;
  top: 10%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(88, 123, 37, 0.06) 0%, rgba(248, 245, 237, 0) 70%);
  border-radius: 50%;
  z-index: -1;
  pointer-events: none;
}

body::after {
  content: '';
  position: fixed;
  bottom: 20%;
  left: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(217, 154, 22, 0.05) 0%, rgba(248, 245, 237, 0) 70%);
  border-radius: 50%;
  z-index: -1;
  pointer-events: none;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-serif);
  color: var(--color-dark-green);
  font-weight: 700;
  line-height: 1.25;
  margin-bottom: 0.75rem;
}

p {
  color: var(--text-muted);
  font-size: 1.05rem;
  margin-bottom: 1rem;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition-fast);
}

ul {
  list-style: none;
}

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

.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 2rem;
}

/* ==================================================
   MAIN CONTENT AREA SPACING (PREVENTS OVERLAP UNDER FIXED HEADER)
   Uses the same --header-h token as the header itself — no JS needed.
   ================================================== */
.site-main {
  width: 100%;
  display: block;
  padding-top: var(--header-h);
  min-height: 100vh;
}

@media (max-width: 768px) {
  :root { --header-h: 109px; } /* 34px bar + 75px nav */
  .site-main { min-height: calc(100vh - 109px); }
}

@media (max-width: 480px) {
  :root { --header-h: 100px; } /* 32px bar + 68px nav */
  .site-main { min-height: calc(100vh - 100px); }
}

/* ==================================================
   HERO BANNER SLIDER (Custom Vanilla JS — No Library)
   ================================================== */
.hero-section-full {
  width: 100%;
  position: relative;
  overflow: hidden;
  background: #000;
  margin-top: 0;
}

.hero-slider {
  position: relative;
  width: 100%;
  overflow: hidden;
}

/* Responsive visibility for PC vs Mobile sliders */
.pc-hero-slider {
  display: block;
}
.mobile-hero-slider {
  display: none;
}
@media screen and (max-width: 768px) {
  .pc-hero-slider {
    display: none !important;
  }
  .mobile-hero-slider {
    display: block !important;
  }
}

.hero-slide {
  display: none;
  width: 100%;
  position: relative;
  animation: heroFadeIn 0.9s ease-in-out;
}

.hero-slide.active {
  display: block;
}

@keyframes heroFadeIn {
  from { opacity: 0; transform: scale(1.015); }
  to   { opacity: 1; transform: scale(1); }
}

.hero-full-banner-img {
  width: 100%;
  height: auto;
  display: block;
  max-height: 100vh;
  object-fit: cover;
  border: none !important;
  outline: none !important;
}

/* ── MOBILE & TABLET: Edge-to-Edge Full-Width Tall Hero Slider ── */
@media (max-width: 768px) {
  /* Remove curve, make edge-to-edge full width, and increase top/bottom height */
  .hero-section-full {
    width: 100% !important;
    margin: 0 !important;
    border-radius: 0 !important;
    box-shadow: none !important;
    overflow: hidden !important;
    background: #000;
    border: none !important;
    outline: none !important;
    box-sizing: border-box !important;
  }

  .hero-slider,
  .hero-slide {
    width: 100% !important;
    height: 560px !important;
    min-height: 560px !important;
  }

  .hero-full-banner-img {
    width: 100% !important;
    height: 560px !important;
    min-height: 560px !important;
    max-height: none !important;
    object-fit: cover !important;
    object-position: center center !important;
    display: block !important;
    transform: none !important;
  }
}

@media (max-width: 480px) {
  /* Mobile: remove curve completely, make edge-to-edge full width, and increase top/bottom height dramatically */
  .hero-section-full {
    width: 100% !important;
    margin: 0 !important;
    border-radius: 0 !important;
    box-shadow: none !important;
    overflow: hidden !important;
    background: #000;
    border: none !important;
    outline: none !important;
    box-sizing: border-box !important;
  }

  .hero-slider,
  .hero-slide {
    width: 100% !important;
    height: 540px !important;
    min-height: 540px !important;
  }

  /* Large, majestic height from top and bottom without curve */
  .hero-full-banner-img {
    width: 100% !important;
    height: 540px !important;
    min-height: 540px !important;
    max-height: none !important;
    object-fit: cover !important;
    object-position: center center !important;
    display: block !important;
    transform: none !important;
  }
}

/* Dot indicators */
.hero-dots {
  position: absolute;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 0.6rem;
  z-index: 10;
}

.hero-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.45);
  cursor: pointer;
  transition: background 0.3s ease, transform 0.3s ease;
}

.hero-dot.active {
  background: var(--color-golden-wheat);
  transform: scale(1.3);
}

/* ==================================================
   ULTRA-PREMIUM POST-SLIDER BRAND TICKER BAR
   ================================================== */
.premium-feature-ticker {
  background: linear-gradient(135deg, #022213 0%, #064E2B 45%, #033D22 75%, #022213 100%);
  border-top: 2px solid rgba(217, 154, 22, 0.55);
  border-bottom: 2px solid rgba(217, 154, 22, 0.55);
  box-shadow: 0 10px 28px rgba(3, 61, 34, 0.22), inset 0 1px 12px rgba(217, 154, 22, 0.15);
  overflow: hidden;
  position: relative;
  width: 100%;
  padding: 1.15rem 0;
  margin-top: 1.75rem;
  z-index: 5;
}

/* Elegant dark-green edge fade out for luxury depth */
.premium-feature-ticker::before,
.premium-feature-ticker::after {
  content: '';
  position: absolute;
  top: 0;
  width: 100px;
  height: 100%;
  z-index: 2;
  pointer-events: none;
}
.premium-feature-ticker::before {
  left: 0;
  background: linear-gradient(90deg, #022213 0%, rgba(2, 34, 19, 0) 100%);
}
.premium-feature-ticker::after {
  right: 0;
  background: linear-gradient(270deg, #022213 0%, rgba(2, 34, 19, 0) 100%);
}

.ticker-track-container {
  width: 100%;
  overflow: hidden;
  display: flex;
}

.ticker-track {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  white-space: nowrap;
  will-change: transform;
  /* JS animation via requestAnimationFrame — continuous non-stop */
}

.ticker-item {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  font-family: var(--font-sans);
  font-size: 1rem;
  font-weight: 400;
  color: var(--color-white);
  letter-spacing: 0.3px;
  padding: 0 1.75rem;
}

.ticker-item strong {
  color: var(--color-golden-wheat);
  font-weight: 700;
  letter-spacing: 0.5px;
}

.ticker-divider {
  display: inline-flex;
  align-items: center;
  color: var(--color-golden-wheat);
  font-size: 0.75rem;
  opacity: 0.85;
  padding: 0 0.5rem;
}

@media (max-width: 768px) {
  .premium-feature-ticker {
    padding: 0.95rem 0;
    margin-top: 1.25rem;
    border-top-width: 1.5px;
    border-bottom-width: 1.5px;
  }
  .ticker-item {
    font-size: 0.92rem;
    padding: 0 1.2rem;
  }
}

/* ==================================================
   BUTTONS & CTAS
   ================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  padding: 0.65rem 1.4rem;
  font-family: var(--font-sans);
  font-size: 0.9rem;
  font-weight: 600;
  border-radius: 8px;
  cursor: pointer;
  transition: var(--transition-fast);
  border: 1.5px solid transparent;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.btn-primary {
  background: linear-gradient(135deg, var(--color-deep-green), var(--color-dark-green));
  color: var(--color-white);
  box-shadow: 0 4px 10px rgba(6, 78, 43, 0.15);
}

.btn-primary:hover {
  background: linear-gradient(135deg, var(--color-dark-green), #022615);
  transform: translateY(-2px);
  box-shadow: 0 8px 18px rgba(6, 78, 43, 0.25);
}

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

.btn-secondary:hover {
  background-color: var(--color-deep-green);
  color: var(--color-white);
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(6, 78, 43, 0.15);
}

.btn-gold {
  background: linear-gradient(135deg, var(--color-golden-wheat), var(--color-warm-gold));
  color: var(--color-white);
  box-shadow: 0 4px 10px rgba(200, 138, 18, 0.2);
}

.btn-gold:hover {
  background: linear-gradient(135deg, var(--color-warm-gold), #A8710B);
  transform: translateY(-2px);
  box-shadow: 0 8px 18px rgba(200, 138, 18, 0.3);
}

/* Compact Rectangular Product Card Buttons */
.pgc-actions .btn {
  border-radius: 8px !important;
  padding: 0.45rem 0.82rem !important;
  font-size: 0.82rem !important;
  height: 36px !important;
  line-height: 1 !important;
  box-shadow: 0 2px 4px rgba(0,0,0,0.05) !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 0.35rem !important;
}
.pgc-actions .btn:hover {
  transform: translateY(-1.5px) !important;
  box-shadow: 0 4px 8px rgba(0,0,0,0.12) !important;
}

/* ==================================================
   SECTION HEADINGS & EYEBROWS
   ================================================== */
.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 3.5rem auto;
}

.eyebrow {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--color-warm-gold);
  margin-bottom: 0.5rem;
  position: relative;
}

.eyebrow::before, .eyebrow::after {
  content: '✦';
  font-size: 0.75rem;
  margin: 0 0.5rem;
  color: var(--color-golden-wheat);
}

.section-title {
  font-size: 2.75rem;
  color: var(--color-dark-green);
  margin-bottom: 1rem;
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--text-muted);
}

/* ==================================================
   FULL-WIDTH HERO BANNER SLIDER SECTION
   ================================================== */
.hero-section-full {
  position: relative;
  width: 100%;
  overflow: hidden;
  background-color: var(--bg-off-white);
  margin-top: 85px; /* Offset for sticky header */
  border-bottom: 2px solid var(--color-golden-wheat);
}

.hero-section-full .hero-swiper {
  width: 100%;
  max-width: 100%;
  margin: 0 auto;
  padding: 0;
}

.hero-section-full .swiper-slide {
  width: 100%;
  height: auto;
  display: block;
  padding: 0;
  min-height: auto;
}

.hero-banner-link {
  display: block;
  width: 100%;
  position: relative;
  overflow: hidden;
}

.hero-full-banner-img {
  width: 100%;
  height: auto;
  max-height: 86vh;
  object-fit: cover;
  display: block;
  margin: 0 auto;
}

/* Swiper Controls Customization for Full Banner */
.hero-section-full .swiper-pagination {
  bottom: 25px !important;
  z-index: 20;
}

.hero-section-full .swiper-pagination-bullet {
  width: 14px;
  height: 14px;
  background: rgba(255, 255, 255, 0.7);
  opacity: 1;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.35);
  transition: var(--transition-fast);
}

.hero-section-full .swiper-pagination-bullet-active {
  width: 38px;
  border-radius: var(--radius-full);
  background: var(--color-golden-wheat);
  box-shadow: 0 2px 12px rgba(217, 154, 22, 0.7);
}

@media (max-width: 768px) {
  .hero-section-full {
    margin-top: 75px;
  }
  .hero-full-banner-img {
    max-height: 55vh;
  }
}

/* ==================================================
   PRODUCT INTRODUCTION / DETAILS SECTION
   ================================================== */
.product-intro-section {
  padding: 6rem 0;
  background-color: var(--bg-off-white);
  position: relative;
}

.product-intro-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 4rem;
  align-items: center;
}

.intro-image-container {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.intro-bg-shape {
  position: absolute;
  width: 85%;
  height: 85%;
  background: radial-gradient(circle, rgba(6, 78, 43, 0.12) 0%, rgba(88, 123, 37, 0.05) 60%, rgba(255, 255, 255, 0) 100%);
  border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
  z-index: 1;
  animation: organicMorph 10s ease-in-out infinite alternate;
}

.intro-gold-circle {
  position: absolute;
  width: 300px;
  height: 300px;
  border: 2px dashed var(--color-golden-wheat);
  border-radius: 50%;
  z-index: 1;
  opacity: 0.5;
  animation: spinSlow 30s linear infinite;
}

.intro-product-img {
  position: relative;
  z-index: 2;
  max-height: 550px;
  filter: drop-shadow(0 20px 30px rgba(6, 78, 43, 0.18));
}

.floating-promo-badge {
  position: absolute;
  background: var(--bg-warm-cream);
  border: 2px solid var(--color-warm-gold);
  color: var(--color-dark-green);
  padding: 0.6rem 1.2rem;
  border-radius: var(--radius-full);
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: 1rem;
  box-shadow: var(--shadow-md);
  z-index: 3;
}

.badge-top {
  top: 15%;
  left: 5%;
  animation: floatBadge 3.5s ease-in-out infinite alternate;
}

.badge-bottom {
  bottom: 15%;
  right: 5%;
  animation: floatBadge 4.5s ease-in-out infinite alternate 1s;
}

.intro-content {
  display: flex;
  flex-direction: column;
}

.intro-title {
  font-size: 2.8rem;
  color: var(--color-dark-green);
  margin-bottom: 0.5rem;
}

.intro-subtitle {
  font-family: var(--font-sans);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--color-olive-green);
  margin-bottom: 1.5rem;
}

.intro-desc {
  font-size: 1.1rem;
  color: var(--text-muted);
  margin-bottom: 2.5rem;
}

/* Feature Cards Grid */
.features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
  margin-bottom: 2.5rem;
}

.feature-card {
  background-color: var(--bg-warm-cream);
  border: 1px solid var(--border-cream);
  border-radius: var(--radius-md);
  padding: 1.25rem;
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  box-shadow: var(--shadow-sm);
  transition: var(--transition-fast);
}

.feature-card:hover {
  transform: translateY(-6px);
  border-color: var(--color-golden-wheat);
  box-shadow: var(--shadow-md);
}

.feature-icon-wrapper {
  width: 48px;
  height: 48px;
  min-width: 48px;
  border-radius: 50%;
  background: rgba(6, 78, 43, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-deep-green);
  font-size: 1.25rem;
  transition: var(--transition-fast);
}

.feature-card:hover .feature-icon-wrapper {
  background: var(--color-golden-wheat);
  color: var(--color-white);
  transform: scale(1.1);
}

.feature-text h4 {
  font-family: var(--font-sans);
  font-size: 1rem;
  font-weight: 600;
  color: var(--color-dark-green);
  margin-bottom: 0.2rem;
}

.feature-text p {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 0;
  line-height: 1.4;
}

/* ==================================================
   13 GRAINS INGREDIENT PREVIEW SECTION
   ================================================== */
.ingredients-section {
  padding: 5rem 0;
  background-color: var(--bg-warm-cream);
  border-top: 1px solid var(--border-cream);
  border-bottom: 1px solid var(--border-cream);
  position: relative;
}

.ingredients-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(170px, 1fr));
  gap: 1.5rem;
  margin-top: 3rem;
}

.ingredient-card {
  background: var(--bg-off-white);
  border: 1px solid var(--border-cream);
  border-radius: var(--radius-md);
  padding: 1.5rem 1rem;
  text-align: center;
  transition: var(--transition-fast);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.8rem;
  box-shadow: var(--shadow-sm);
}

.ingredient-card:hover {
  transform: translateY(-5px);
  border-color: var(--color-olive-green);
  background: var(--color-white);
  box-shadow: var(--shadow-md);
}

.ingredient-icon {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(88, 123, 37, 0.15), rgba(217, 154, 22, 0.15));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-deep-green);
  font-size: 1.4rem;
  transition: var(--transition-fast);
}

.ingredient-card:hover .ingredient-icon {
  background: linear-gradient(135deg, var(--color-deep-green), var(--color-olive-green));
  color: var(--color-white);
  transform: rotate(10deg);
}

.ingredient-name {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--color-dark-green);
}

/* ==================================================
   PROPRIETORS / CONTACT DETAILS SECTION
   ================================================== */
.proprietors-section {
  padding: 6rem 0;
  background: linear-gradient(135deg, var(--color-dark-green) 0%, var(--color-deep-green) 100%);
  color: var(--color-white);
  position: relative;
  overflow: hidden;
  border-top-left-radius: 80px;
  border-top-right-radius: 80px;
  margin-top: -30px;
  z-index: 5;
  box-shadow: 0 -15px 35px rgba(3, 61, 34, 0.25);
}

.proprietors-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: radial-gradient(rgba(217, 154, 22, 0.15) 1px, transparent 1px);
  background-size: 30px 30px;
  opacity: 0.4;
  pointer-events: none;
}

.proprietors-section .section-title {
  color: var(--bg-warm-cream);
}

.proprietors-section .section-subtitle {
  color: rgba(255, 255, 255, 0.8);
}

.proprietors-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2.5rem;
  max-width: 900px;
  margin: 0 auto 3.5rem auto;
}

.proprietor-card {
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius-lg);
  padding: 2.5rem 2rem;
  text-align: center;
  transition: var(--transition-smooth);
  position: relative;
  overflow: hidden;
}

.proprietor-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--color-golden-wheat), var(--color-warm-gold));
}

.proprietor-card:hover {
  transform: translateY(-8px);
  background: rgba(255, 255, 255, 0.12);
  border-color: var(--color-golden-wheat);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.proprietor-avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: rgba(217, 154, 22, 0.2);
  border: 2px solid var(--color-golden-wheat);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem auto;
  font-size: 2rem;
  color: var(--color-golden-wheat);
}

.proprietor-name {
  font-family: var(--font-serif);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--bg-warm-cream);
  margin-bottom: 0.3rem;
}

.proprietor-role {
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--color-golden-wheat);
  margin-bottom: 1.5rem;
  display: block;
}

.proprietor-phone {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background: rgba(255, 255, 255, 0.1);
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius-full);
  color: var(--color-white);
  font-weight: 600;
  font-size: 1.1rem;
  border: 1px solid rgba(255, 255, 255, 0.15);
  transition: var(--transition-fast);
}

.proprietor-phone:hover {
  background: var(--color-golden-wheat);
  color: var(--color-dark-green);
  border-color: var(--color-golden-wheat);
  transform: scale(1.05);
}

/* Brand Contact Info Bar */
.brand-contact-bar {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 2rem;
  max-width: 1000px;
  margin: 0 auto;
  padding: 2rem;
  background: rgba(0, 0, 0, 0.2);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.contact-info-item {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  color: var(--bg-warm-cream);
  font-size: 1rem;
}

.contact-info-item i {
  color: var(--color-golden-wheat);
  font-size: 1.2rem;
}

.contact-info-item a:hover {
  color: var(--color-golden-wheat);
  text-decoration: underline;
}

/* ==================================================
   OUR PRODUCTS PAGE STYLES
   ================================================== */
.page-hero {
  background: linear-gradient(135deg, var(--color-deep-green) 0%, var(--color-dark-green) 100%);
  color: var(--color-white);
  padding: 9.5rem 0 4.5rem 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 30px;
  background: var(--bg-off-white);
  border-top-left-radius: 40px;
  border-top-right-radius: 40px;
}

.page-hero .section-title {
  color: var(--bg-warm-cream);
}

.products-showcase-section {
  padding: 4rem 0 7rem 0;
  background-color: var(--bg-off-white);
}

.product-showcase-card {
  background: var(--bg-warm-cream);
  border: 1px solid var(--border-cream);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 3rem;
  padding: 3rem;
  max-width: 1050px;
  margin: 0 auto;
  transition: var(--transition-smooth);
}

.product-showcase-card:hover {
  box-shadow: var(--shadow-lg);
  border-color: var(--color-golden-wheat);
}

.showcase-image-col {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: radial-gradient(circle, rgba(88, 123, 37, 0.08) 0%, rgba(255, 255, 255, 0) 70%);
  border-radius: var(--radius-md);
  padding: 2rem;
  position: relative;
}

.showcase-main-img {
  max-height: 450px;
  filter: drop-shadow(0 15px 25px rgba(6, 78, 43, 0.18));
  transition: var(--transition-smooth);
}

.product-showcase-card:hover .showcase-main-img {
  transform: scale(1.05) translateY(-5px);
}

.showcase-details-col {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.product-badge {
  display: inline-block;
  background: var(--color-deep-green);
  color: var(--color-white);
  padding: 0.3rem 0.9rem;
  border-radius: var(--radius-full);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 1px;
  margin-bottom: 1rem;
  width: fit-content;
}

.showcase-title {
  font-size: 2.5rem;
  color: var(--color-dark-green);
  margin-bottom: 0.4rem;
}

.showcase-subtitle {
  font-size: 1.1rem;
  color: var(--color-olive-green);
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.showcase-desc {
  color: var(--text-muted);
  margin-bottom: 2rem;
  font-size: 1.05rem;
}

.showcase-features-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-bottom: 2.5rem;
}

.showcase-feature-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-weight: 600;
  color: var(--text-charcoal);
}

.showcase-feature-item i {
  color: var(--color-warm-gold);
  font-size: 1.1rem;
}

.showcase-actions {
  display: flex;
  gap: 1.25rem;
  flex-wrap: wrap;
}

/* ==================================================
   FLOATING WHATSAPP BUTTON & TOAST NOTIFICATION
   ================================================== */
.floating-whatsapp {
  position: fixed;
  bottom: 25px;
  right: 25px;
  width: 62px;
  height: 62px;
  background-color: var(--color-whatsapp);
  color: var(--color-white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.2rem;
  box-shadow: 0 8px 20px rgba(37, 211, 102, 0.4);
  z-index: 999;
  cursor: pointer;
  transition: var(--transition-fast);
  animation: pulseWhatsApp 2s infinite;
}

.floating-whatsapp:hover {
  transform: scale(1.1) rotate(8deg);
  background-color: #1ebd5b;
  box-shadow: 0 12px 28px rgba(37, 211, 102, 0.6);
}

.whatsapp-tooltip {
  position: absolute;
  right: 75px;
  background-color: var(--text-charcoal);
  color: var(--color-white);
  padding: 0.5rem 1rem;
  border-radius: var(--radius-sm);
  font-size: 0.85rem;
  font-weight: 500;
  white-space: nowrap;
  pointer-events: none;
  opacity: 0;
  transform: translateX(10px);
  transition: var(--transition-fast);
}

.floating-whatsapp:hover .whatsapp-tooltip {
  opacity: 1;
  transform: translateX(0);
}

/* Toast Notification */
.toast-container {
  position: fixed;
  bottom: 100px;
  right: 25px;
  z-index: 1000;
  pointer-events: none;
}

.toast {
  background: var(--color-dark-green);
  color: var(--color-white);
  padding: 1rem 1.5rem;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  border-left: 4px solid var(--color-golden-wheat);
  display: flex;
  align-items: center;
  gap: 0.8rem;
  font-size: 0.95rem;
  font-weight: 500;
  opacity: 0;
  transform: translateY(20px);
  transition: var(--transition-fast);
  pointer-events: auto;
}

.toast.show {
  opacity: 1;
  transform: translateY(0);
}

.toast i {
  color: var(--color-golden-wheat);
  font-size: 1.25rem;
}

/* ==================================================
   ANIMATIONS
   ================================================== */
@keyframes floatImage {
  0% { transform: translateY(0px) rotate(0deg); }
  100% { transform: translateY(-15px) rotate(1.5deg); }
}

@keyframes floatBadge {
  0% { transform: translateY(0px); }
  100% { transform: translateY(-10px); }
}

@keyframes pulseGlow {
  0% { transform: scale(0.95); opacity: 0.6; }
  100% { transform: scale(1.08); opacity: 0.9; }
}

@keyframes organicMorph {
  0% { border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%; }
  50% { border-radius: 60% 40% 30% 70% / 50% 60% 40% 60%; }
  100% { border-radius: 50% 50% 60% 40% / 60% 40% 50% 50%; }
}

@keyframes spinSlow {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

@keyframes pulseWhatsApp {
  0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7); }
  70% { box-shadow: 0 0 0 15px rgba(37, 211, 102, 0); }
  100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

/* Scroll Reveal Classes */
.reveal-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1), transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-on-scroll.revealed {
  opacity: 1;
  transform: translateY(0);
}

/* Respect Reduced Motion */
@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;
  }
}

/* ==================================================
   RESPONSIVE DESIGN BREAKPOINTS
   ================================================== */
/* Large Desktop (1440px) and down handled by max-width */

/* Laptop (1200px) */
@media (max-width: 1200px) {
  .hero-title { font-size: 3.2rem; }
  .section-title { font-size: 2.4rem; }
  .product-intro-grid { gap: 2.5rem; }
}

/* Tablet (992px) */
@media (max-width: 992px) {
  .swiper-slide {
    flex-direction: column;
    text-align: center;
    gap: 2.5rem;
    padding: 2rem 0;
  }
  
  .hero-content {
    max-width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  
  .hero-actions, .hero-chips {
    justify-content: center;
  }
  
  .product-intro-grid {
    grid-template-columns: 1fr;
    gap: 3.5rem;
    text-align: center;
  }
  
  .features-grid {
    text-align: left;
  }
  
  .proprietors-grid {
    grid-template-columns: 1fr;
    max-width: 500px;
  }
  
  .product-showcase-card {
    grid-template-columns: 1fr;
    gap: 2.5rem;
    padding: 2rem;
  }
}

/* Mobile (768px) */
@media (max-width: 768px) {
  .hero-title { font-size: 2.5rem; }
  .section-title { font-size: 2rem; }
  
  .features-grid {
    grid-template-columns: 1fr;
  }
  
  .showcase-features-list {
    grid-template-columns: 1fr;
  }
  
  .brand-contact-bar {
    flex-direction: column;
    align-items: center;
    gap: 1.2rem;
  }
  
  .floating-badge {
    display: none; /* Hide floating badges on mobile to avoid clutter */
  }
  
  .proprietors-section {
    border-top-left-radius: 40px;
    border-top-right-radius: 40px;
  }
}

/* Small Mobile (480px) and (375px) */
@media (max-width: 480px) {
  .container { padding: 0 1.25rem; }
  .hero-title { font-size: 2.1rem; }
  .hero-product-img { max-height: 380px; }
  .btn { width: 100%; justify-content: center; }
  .hero-actions { width: 100%; flex-direction: column; }
  .showcase-actions { width: 100%; flex-direction: column; }
  
  .floating-whatsapp {
    width: 54px;
    height: 54px;
    font-size: 1.8rem;
    bottom: 20px;
    right: 20px;
  }
}

/* ==================================================
   CART SLIDE-IN PANEL
   ================================================== */

/* Overlay */
.cart-overlay {
  position: fixed;
  inset: 0;
  background: rgba(3, 61, 34, 0.35);
  backdrop-filter: blur(4px);
  z-index: 1100;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s ease, visibility 0.35s ease;
}
.cart-overlay.open {
  opacity: 1;
  visibility: visible;
}

/* Cart Panel — Desktop: slides from right */
.cart-panel {
  position: fixed;
  top: 0;
  right: 0;
  width: 420px;
  max-width: 100vw;
  height: 100%;
  background: var(--bg-warm-cream);
  z-index: 1200;
  display: flex;
  flex-direction: column;
  box-shadow: -8px 0 40px rgba(3, 61, 34, 0.18);
  transform: translateX(100%);
  transition: transform 0.42s cubic-bezier(0.16, 1, 0.3, 1);
  border-left: 1px solid var(--border-cream);
}
.cart-panel.open {
  transform: translateX(0);
}

/* Cart Panel Header */
.cart-panel-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem 1.75rem;
  border-bottom: 1px solid var(--border-cream);
  background: var(--color-dark-green);
  flex-shrink: 0;
}
.cart-panel-title {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  color: var(--bg-warm-cream);
  margin: 0;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}
.cart-close-btn {
  background: rgba(255,255,255,0.12);
  border: none;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  color: white;
  font-size: 1.1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease;
}
.cart-close-btn:hover {
  background: rgba(255,255,255,0.25);
}

/* Cart Body */
.cart-panel-body {
  flex: 1;
  overflow-y: auto;
  padding: 1.25rem 1.75rem;
}
.cart-loading {
  text-align: center;
  color: var(--text-muted);
  padding: 3rem 0;
  font-size: 1rem;
}

/* Cart Item */
.cart-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 0;
  border-bottom: 1px solid var(--border-cream);
  animation: cartItemIn 0.3s ease;
}
@keyframes cartItemIn {
  from { opacity: 0; transform: translateX(12px); }
  to   { opacity: 1; transform: translateX(0); }
}
.cart-item-img {
  width: 72px;
  height: 72px;
  object-fit: cover;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border-cream);
  flex-shrink: 0;
  background: white;
}
.cart-item-info {
  flex: 1;
  min-width: 0;
}
.cart-item-name {
  font-family: var(--font-serif);
  font-size: 1rem;
  font-weight: 700;
  color: var(--color-dark-green);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  margin-bottom: 0.2rem;
}
.cart-item-sub {
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-bottom: 0.35rem;
}
.cart-item-price {
  font-size: 1rem;
  font-weight: 800;
  color: var(--color-warm-gold);
}
.cart-item-remove {
  background: none;
  border: 1px solid var(--border-cream);
  border-radius: 50%;
  width: 30px;
  height: 30px;
  color: var(--text-muted);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  flex-shrink: 0;
  transition: all 0.2s ease;
}
.cart-item-remove:hover {
  background: #fef2f2;
  border-color: #fca5a5;
  color: #dc2626;
}

/* Cart Quantity Controls */
.cart-item-right {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  flex-shrink: 0;
}

.cart-qty-ctrl {
  display: flex;
  align-items: center;
  border: 1.5px solid var(--border-cream);
  border-radius: var(--radius-full);
  overflow: hidden;
  background: var(--bg-warm-cream);
  gap: 0;
}

.cart-qty-btn {
  background: none;
  border: none;
  width: 30px;
  height: 30px;
  font-size: 1rem;
  font-weight: 700;
  color: var(--color-dark-green);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease;
  flex-shrink: 0;
}

.cart-qty-btn:hover {
  background: var(--color-golden-wheat);
  color: white;
}

.cart-qty-num {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--color-dark-green);
  min-width: 24px;
  text-align: center;
  padding: 0 2px;
}

/* Empty Cart State */
.cart-empty {
  text-align: center;
  padding: 3.5rem 1rem;
}
.cart-empty i {
  font-size: 3.5rem;
  color: var(--border-cream);
  margin-bottom: 1rem;
  display: block;
}
.cart-empty p {
  color: var(--text-muted);
  font-size: 1rem;
  margin-bottom: 1.25rem;
}

/* Cart Footer */
.cart-panel-footer {
  padding: 1.25rem 1.75rem 1.75rem;
  border-top: 1px solid var(--border-cream);
  background: white;
  flex-shrink: 0;
}
.cart-total-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--color-dark-green);
}

/* Mobile: slides from bottom */
@media (max-width: 768px) {
  .cart-panel {
    top: auto;
    bottom: 0;
    right: 0;
    left: 0;
    width: 100%;
    height: 88vh;
    border-left: none;
    border-top: 1px solid var(--border-cream);
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
    transform: translateY(100%);
    box-shadow: 0 -8px 40px rgba(3, 61, 34, 0.2);
    transition: transform 0.42s cubic-bezier(0.16, 1, 0.3, 1);
  }
  .cart-panel.open {
    transform: translateY(0);
  }
}

/* ==================================================
   FULL SITE MOBILE RESPONSIVE OVERRIDES
   ================================================== */

/* ---- Tablet: 992px ---- */
@media (max-width: 992px) {

  /* Products Catalog Grid — 2 columns on tablet */
  .catalog-grid {
    grid-template-columns: repeat(2, 1fr) !important;
  }

  /* Product Detail — stack image above info */
  .product-detail-grid {
    grid-template-columns: 1fr !important;
    gap: 2rem !important;
    padding: 2rem !important;
  }

  /* Unstick gallery on tablet */
  .product-gallery-col {
    position: static !important;
  }

  /* Product detail image shorter on tablet */
  .product-detail-grid #main-detail-image {
    min-height: 340px !important;
    max-height: 480px !important;
  }

  /* Page hero padding reduction */
  .page-hero {
    padding: 8rem 0 3.5rem 0 !important;
  }
}

/* ---- Mobile: 768px ---- */
@media (max-width: 768px) {

  /* ── Global ── */
  .container {
    padding: 0 1.25rem;
  }

  .section-title {
    font-size: 2rem !important;
  }

  .section-subtitle {
    font-size: 1rem !important;
  }

  /* ── Page Hero (Products & Detail pages) ── */
  .page-hero {
    padding: 7.5rem 0 3rem 0 !important;
  }

  .page-hero .section-title {
    font-size: 1.8rem !important;
  }

  /* ── Products Catalog ── */
  .catalog-grid {
    grid-template-columns: 1fr !important;
    gap: 1.5rem !important;
  }

  .products-catalog-section {
    padding: 2.5rem 0 !important;
  }

  /* Product card image height on mobile */
  .product-grid-card img {
    min-height: 260px !important;
    max-height: 340px !important;
  }

  /* ── Product Detail Page ── */
  .product-detail-section {
    padding: 2.5rem 0 !important;
  }

  .product-detail-grid {
    grid-template-columns: 1fr !important;
    gap: 1.5rem !important;
    padding: 1.25rem !important;
  }

  .product-gallery-col {
    position: static !important;
  }

  /* Reduce main product image height on mobile */
  #main-detail-image {
    min-height: 280px !important;
    max-height: 420px !important;
  }

  /* Thumbnail row on mobile */
  .thumb-btn {
    width: 68px !important;
    height: 68px !important;
  }

  /* Product name heading on mobile */
  .product-info-col h2 {
    font-size: 1.8rem !important;
  }

  /* Add to cart button full width on mobile */
  .add-to-cart-btn-detail {
    width: 100% !important;
    min-width: unset !important;
    justify-content: center !important;
  }

  /* Qty + cart row stacks on mobile */
  .product-info-col [style*="display: flex"][style*="align-items: center"][style*="flex-wrap: wrap"] {
    flex-direction: column !important;
    align-items: stretch !important;
  }

  /* ── Home Page: Product Intro Section ── */
  .product-intro-grid {
    grid-template-columns: 1fr !important;
    gap: 2rem !important;
    text-align: center !important;
  }

  .intro-image-container {
    max-width: 320px;
    margin: 0 auto;
  }

  /* Features grid: 1 col */
  .features-grid {
    grid-template-columns: 1fr !important;
    gap: 1rem !important;
  }

  /* Ingredients grid: 2 col on mobile */
  .ingredients-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 1rem !important;
  }

  /* Proprietors grid: 1 col */
  .proprietors-grid {
    grid-template-columns: 1fr !important;
    max-width: 420px !important;
    margin-left: auto !important;
    margin-right: auto !important;
  }

  /* Proprietors section border radius reduce */
  .proprietors-section {
    border-top-left-radius: 40px !important;
    border-top-right-radius: 40px !important;
    padding: 4rem 0 !important;
  }

  /* Section header */
  .section-header {
    padding: 0 0.5rem;
  }

  /* Brand contact bar */
  .brand-contact-bar {
    flex-direction: column !important;
    align-items: center !important;
    gap: 1rem !important;
    text-align: center !important;
  }

  /* Floating badges on mobile: hide */
  .floating-promo-badge,
  .floating-badge {
    display: none !important;
  }

  /* ── Footer ── */
  .footer-grid {
    grid-template-columns: 1fr !important;
    gap: 2rem !important;
  }

  /* ── Buttons ── */
  .btn {
    font-size: 0.9rem !important;
    padding: 0.8rem 1.5rem !important;
  }
}

/* ---- Small Mobile: 480px ---- */
@media (max-width: 480px) {

  .container {
    padding: 0 1rem;
  }

  /* Page hero */
  .page-hero {
    padding: 7rem 0 2.5rem 0 !important;
  }

  .page-hero .section-title {
    font-size: 1.5rem !important;
  }

  /* Product detail heading */
  .product-info-col h2 {
    font-size: 1.5rem !important;
  }

  /* Price font on small mobile */
  .product-info-col [style*="2.2rem"] {
    font-size: 1.75rem !important;
  }

  /* Product image on tiny screen */
  #main-detail-image {
    min-height: 220px !important;
    max-height: 320px !important;
  }

  /* Ingredients wrap smaller */
  .ingredients-grid {
    grid-template-columns: repeat(2, 1fr) !important;
  }

  /* Ingredient card text */
  .ingredient-name {
    font-size: 0.95rem !important;
  }

  /* Product catalog image */
  .product-grid-card img {
    min-height: 200px !important;
    max-height: 280px !important;
  }

  /* Thumbnail row scrollable on very small screens */
  .thumb-btn {
    width: 58px !important;
    height: 58px !important;
  }

  /* Toast notification */
  .toast {
    width: calc(100vw - 2rem) !important;
    left: 1rem !important;
    right: 1rem !important;
    bottom: 1.25rem !important;
    font-size: 0.88rem !important;
  }

  /* WhatsApp button */
  .floating-whatsapp {
    width: 50px !important;
    height: 50px !important;
    font-size: 1.6rem !important;
    bottom: 16px !important;
    right: 16px !important;
  }
}

/* ── Global Products Catalog Card Styles ── */
.catalog-grid             { display: grid; grid-template-columns: repeat(auto-fill, minmax(340px, 1fr)); gap: 2.5rem; }
.product-grid-card        { background: var(--bg-warm-cream); border: 1px solid var(--border-cream); border-radius: var(--radius-md); overflow: hidden; box-shadow: var(--shadow-sm); display: flex; flex-direction: column; transition: var(--transition-fast); }
.product-grid-card:hover  { transform: translateY(-5px); box-shadow: var(--shadow-md); border-color: var(--color-golden-wheat); }
.pgc-img-link             { display: block; position: relative; background: white; overflow: hidden; text-decoration: none; }
.pgc-weight-badge         { position: absolute; top: 1rem; right: 1rem; background: var(--color-golden-wheat); color: white; font-size: 0.75rem; font-weight: 700; padding: 0.35rem 0.85rem; border-radius: var(--radius-full); z-index: 10; box-shadow: var(--shadow-sm); }
.pgc-img                  { width: 100%; height: 380px; object-fit: contain; display: block; padding: 1rem; background: white; transition: transform 0.4s ease; }
.product-grid-card:hover .pgc-img { transform: scale(1.04); }
.pgc-body                 { padding: 1.75rem; display: flex; flex-direction: column; flex: 1; justify-content: space-between; }
.pgc-title                { font-family: var(--font-serif); font-size: 1.6rem; color: var(--color-dark-green); margin-bottom: 0.35rem; transition: color 0.2s; text-decoration: none; display: block; }
.pgc-title:hover          { color: var(--color-golden-wheat); }
.pgc-subtitle             { font-size: 0.85rem; color: var(--color-warm-gold); font-weight: 600; margin-bottom: 1rem; }
.pgc-desc                 { font-size: 0.95rem; color: var(--text-muted); line-height: 1.6; margin-bottom: 1.5rem; display: -webkit-box; -webkit-line-clamp: 3; line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; }
.pgc-footer               { border-top: 1px solid var(--border-cream); padding-top: 1.25rem; display: flex; align-items: center; justify-content: space-between; gap: 1rem; flex-wrap: wrap; }
.pgc-price-label          { font-size: 0.75rem; color: var(--text-muted); display: block; text-transform: uppercase; font-weight: 600; }
.pgc-price                { font-size: 1.45rem; font-weight: 800; color: var(--color-dark-green); }
.pgc-actions              { display: flex; gap: 0.6rem; flex: 1; justify-content: flex-end; }

@media (max-width: 992px) {
  .catalog-grid { grid-template-columns: repeat(2, 1fr); gap: 1.75rem; }
}
@media (max-width: 640px) {
  .catalog-grid { grid-template-columns: 1fr; gap: 1.25rem; }
  .pgc-img { height: 280px; }
  .pgc-body { padding: 1.25rem; }
  .pgc-title { font-size: 1.35rem; }
  .pgc-footer { flex-direction: column; align-items: stretch; }
  .pgc-actions { justify-content: stretch; }
}

/* ==========================================================================
   ULTIMATE MOBILE & TABLET HERO BANNER OVERRIDE
   Guarantees 100% edge-to-edge width without curved borders, and large height
   ========================================================================== */
@media screen and (max-width: 768px) {
  section.hero-section-full,
  div.hero-slider,
  div.hero-slide {
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
    border-radius: 0 !important;
    box-shadow: none !important;
    border: none !important;
    outline: none !important;
    overflow: hidden !important;
    height: 560px !important;
    min-height: 560px !important;
  }

  img.hero-full-banner-img {
    width: 100% !important;
    max-width: 100% !important;
    height: 560px !important;
    min-height: 560px !important;
    max-height: none !important;
    object-fit: cover !important;
    object-position: center center !important;
    display: block !important;
    margin: 0 !important;
    border-radius: 0 !important;
    transform: none !important;
  }
}

@media screen and (max-width: 480px) {
  section.hero-section-full,
  div.hero-slider,
  div.hero-slide {
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
    border-radius: 0 !important;
    box-shadow: none !important;
    border: none !important;
    outline: none !important;
    overflow: hidden !important;
    height: 550px !important;
    min-height: 550px !important;
  }

  img.hero-full-banner-img {
    width: 100% !important;
    max-width: 100% !important;
    height: 550px !important;
    min-height: 550px !important;
    max-height: none !important;
    object-fit: cover !important;
    object-position: center center !important;
    display: block !important;
    margin: 0 !important;
    transform: none !important;
  }
}

/* ==================================================
   FULLSCREEN COOKING PRELOADER (LOTTIE ANIMATION)
   ================================================== */
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: var(--bg-warm-cream);
  z-index: 999999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.65s cubic-bezier(0.4, 0, 0.2, 1), visibility 0.65s cubic-bezier(0.4, 0, 0.2, 1);
}

#preloader.loaded {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.preloader-content {
  text-align: center;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.preloader-title {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--color-dark-green);
  letter-spacing: 2.5px;
  margin-top: 0.5rem;
}

.preloader-subtitle {
  font-family: var(--font-sans);
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--color-warm-gold);
  margin-top: 4px;
  letter-spacing: 0.5px;
}
