/* ============================================
   Bee Elite — Main Stylesheet
   Pure HTML & CSS · No frameworks
   ============================================ */

*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --honey-gold: #e8a317;
  --honey-amber: #f5b82e;
  --honey-deep: #c47f0a;
  --honey-red: #c0392b;
  --brown-dark: #1a0f08;
  --brown-mid: #5c3d2e;
  --brown-text: #2c1810;
  --white: #ffffff;
  --cream: #fff8e7;
  --cream-panel: #faf6ee;
  --peach-soft: #f8ddd0;
  --font-display: 'Bebas Neue', Impact, sans-serif;
  --font-body: 'Barlow', system-ui, sans-serif;
  --font-cursive: 'Great Vibes', cursive;
  --header-h: 88px;
  --header-offset: calc(var(--header-h) + 1.5rem);
  --text-shadow: 0 2px 12px rgba(26, 15, 8, 0.55), 0 1px 3px rgba(26, 15, 8, 0.4);
  --text-shadow-strong: 0 3px 18px rgba(26, 15, 8, 0.7), 0 1px 4px rgba(26, 15, 8, 0.5);
}

html {
  scroll-behavior: smooth;
  overflow-x: clip; /* iOS Safari: prevent horizontal swipe gap without locking vertical scroll */
  touch-action: manipulation; /* Prevents double-tap zoom */
  -webkit-text-size-adjust: 100%; /* Prevents text size adjustment on orientation change */
}

body {
  font-family: var(--font-body);
  color: var(--brown-text);
  background: var(--brown-dark);
  max-width: 100vw; /* Hard cap — prevents any child from blowing out width */
  -webkit-font-smoothing: antialiased;
  touch-action: manipulation; /* Prevents double-tap zoom */
  overscroll-behavior: none; /* Prevents bounce/overscroll */
}

.site-shell {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  text-decoration: none;
  color: inherit;
}

.svg-filters {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
  pointer-events: none;
}

.img-knockout {
  filter: url(#remove-black);
}

/* --- Header --- */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 0 clamp(1rem, 3vw, 2.5rem);
}

.header__bar {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 1.5rem;
  height: var(--header-h);
  margin-top: 0.75rem;
  padding: 0 clamp(1rem, 3vw, 2rem);
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: 16px;
  box-shadow: 0 8px 32px rgba(26, 15, 8, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.4);
}

.header__logo {
  display: flex;
  align-items: center;
  gap: 12px;
  justify-self: start;
}

.header__logo-img {
  width: 78px;
  height: 78px;
  border-radius: 50%;
  object-fit: contain;
  background: var(--white);
  padding: 3px;
  flex-shrink: 0;
  box-shadow: 0 2px 10px rgba(26, 15, 8, 0.12);
}

.header__brand {
  display: flex;
  flex-direction: column;
  gap: 1px;
}

.header__brand-name {
  font-family: var(--font-cursive);
  font-size: 1.45rem;
  font-weight: 700;
  color: var(--brown-dark);
  letter-spacing: 0.01em;
  line-height: 1;
}

.header__brand-name em {
  font-style: normal;
  font-family: var(--font-cursive);
  font-size: 1.5rem;
  color: var(--honey-gold);
  font-weight: 700;
  letter-spacing: 0.02em;
}

.header__brand-tag {
  font-size: 0.68rem;
  font-weight: 600;
  color: var(--honey-deep);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.header__toggle {
  display: none;
}

.header__burger {
  display: none;
}

.header__nav {
  display: flex;
  align-items: center;
  gap: clamp(1rem, 2.5vw, 2rem);
  justify-self: center;
}

.header__link {
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--brown-mid, #5c3d2e);
  text-transform: capitalize;
  letter-spacing: 0.02em;
  position: relative;
  padding: 0.5rem 0.2rem; /* Better touch target */
  transition: color 0.25s ease;
}

.header__link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--honey-red);
  border-radius: 2px;
  transition: width 0.3s ease;
}

.header__link:hover,
.header__link--active {
  color: var(--honey-red);
}

.header__link:hover::after,
.header__link--active::after {
  width: 100%;
}

.header__actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  justify-self: end;
}

/* ============================================
   Mobile Header Bar (Honey Hut Style)
   ============================================ */

.header__mobile-bar {
  display: none;
}

/* Mobile Header - Hidden on Desktop */
@media (max-width: 1024px) {
  .header__bar {
    display: none;
  }

  .header__mobile-bar {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    padding: 0.5rem 1rem;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 4px 20px rgba(26, 15, 8, 0.08);
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    border-radius: 0 0 16px 16px;
  }

  .header__mobile-burger {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    cursor: pointer;
    color: var(--brown-dark);
    transition: transform 0.2s ease;
    flex-shrink: 0;
    position: absolute;
    left: 0.75rem;
  }

  .header__mobile-burger:hover {
    transform: scale(1.1);
  }

  .header__mobile-burger svg {
    width: 24px;
    height: 24px;
  }

  .header__mobile-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    justify-content: center;
  }

  .header__mobile-logo-img {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    object-fit: contain;
    background: var(--white);
    padding: 2px;
    flex-shrink: 0;
    box-shadow: 0 2px 8px rgba(26, 15, 8, 0.1);
  }

  .header__mobile-brand {
    font-family: var(--font-cursive);
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--brown-dark);
    letter-spacing: 0.01em;
    line-height: 1;
  }

  .header__mobile-brand em {
    font-style: normal;
    font-family: var(--font-cursive);
    font-size: 1.4rem;
    color: var(--honey-gold);
    font-weight: 700;
    letter-spacing: 0.02em;
  }

}

/* ============================================
   Slide-out Menu Panel
   ============================================ */

.header__menu-panel {
  position: fixed;
  top: 0;
  left: -100%;
  width: 85%;
  max-width: 320px;
  height: 100vh;
  background: var(--brown-dark);
  z-index: 200;
  transition: left 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  overflow-y: auto;
  padding: 1.5rem;
  box-shadow: 4px 0 24px rgba(0, 0, 0, 0.3);
}

.header__menu-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 2rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(232, 163, 23, 0.2);
}

.header__menu-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.header__menu-logo-img {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: contain;
  background: var(--white);
  padding: 2px;
  flex-shrink: 0;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.header__menu-brand {
  font-family: var(--font-cursive);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--honey-gold);
  letter-spacing: 0.01em;
  line-height: 1;
}

.header__menu-brand em {
  font-style: normal;
  font-family: var(--font-cursive);
  font-size: 1.55rem;
  color: var(--honey-gold);
  font-weight: 700;
  letter-spacing: 0.02em;
}

.header__menu-close {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  cursor: pointer;
  color: var(--cream);
  transition: transform 0.2s ease;
}

.header__menu-close:hover {
  transform: rotate(90deg);
}

.header__menu-close svg {
  width: 24px;
  height: 24px;
}

.header__menu-nav {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.header__menu-link {
  display: block;
  padding: 1rem 0.75rem;
  color: var(--cream);
  font-size: 1.1rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  border-bottom: 1px solid rgba(232, 163, 23, 0.1);
  transition: all 0.25s ease;
}

.header__menu-link:hover {
  color: var(--honey-gold);
  padding-left: 1.25rem;
  background: rgba(232, 163, 23, 0.05);
}

.header__menu-link--active {
  color: var(--honey-gold);
  font-weight: 700;
}

.header__menu-divider {
  height: 1px;
  background: rgba(232, 163, 23, 0.2);
  margin: 0.5rem 0;
}

.header__menu-social {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(232, 163, 23, 0.2);
}

.header__menu-social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: rgba(232, 163, 23, 0.1);
  border-radius: 50%;
  color: var(--cream);
  transition: all 0.25s ease;
}

.header__menu-social-link:hover {
  background: var(--honey-gold);
  color: var(--brown-dark);
  transform: translateY(-3px);
}

.header__menu-social-link svg {
  width: 20px;
  height: 20px;
}

/* Menu Overlay */
.header__menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.6);
  z-index: 150;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

/* Open State */
.header:has(#nav-toggle:checked) .header__menu-panel {
  left: 0;
}

.header:has(#nav-toggle:checked) .header__menu-overlay {
  opacity: 1;
  visibility: visible;
}

.header:has(#nav-toggle:checked) .header__menu-panel {
  aria-hidden: false;
}

/* Hide mobile burger when menu is open */
.header:has(#nav-toggle:checked) .header__mobile-burger {
  opacity: 0;
  pointer-events: none;
}

/* ============================================
   Hero Section
   ============================================ */
.hero {
  position: relative;
  height: 100vh;
  min-height: 560px;
  overflow: hidden;
  max-width: 100%; /* Contain slide translateX animations within hero bounds */
}

.hero__bg {
  position: absolute;
  inset: 0;
  background: url('images/hero/hero-desktop-1920x720.webp') center center / cover no-repeat;
  z-index: 0;
}

.hero__bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(20, 10, 3, 0.42);
}

/* --- Slider --- */
.hero__slider {
  position: relative;
  z-index: 2;
  min-height: 100vh;
  padding-top: var(--header-offset);
}

.hero__input {
  display: none;
}

.hero__slide {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: clamp(1rem, 4vw, 3rem);
  padding: calc(var(--header-offset) + 2rem) clamp(1.25rem, 5vw, 5rem) 3rem;
  opacity: 0;
  visibility: hidden;
  transform: translateX(30px);
  transition: opacity 0.8s ease, transform 0.8s ease, visibility 0.8s;
  pointer-events: auto;
}

/* Auto-advance */
@keyframes heroSlide1 {
  0%, 28%   { opacity: 1; visibility: visible; transform: translateX(0); }
  33%, 100% { opacity: 0; visibility: hidden; transform: translateX(-30px); }
}

@keyframes heroSlide2 {
  0%, 28%   { opacity: 0; visibility: hidden; transform: translateX(30px); }
  33%, 61%  { opacity: 1; visibility: visible; transform: translateX(0); }
  66%, 100% { opacity: 0; visibility: hidden; transform: translateX(-30px); }
}

@keyframes heroSlide3 {
  0%, 61%  { opacity: 0; visibility: hidden; transform: translateX(30px); }
  66%, 94% { opacity: 1; visibility: visible; transform: translateX(0); }
  100%     { opacity: 0; visibility: hidden; transform: translateX(-30px); }
}

.hero__slide--1 { animation: heroSlide1 12s ease infinite; }
.hero__slide--2 { animation: heroSlide2 12s ease infinite; }
.hero__slide--3 { animation: heroSlide3 12s ease infinite; }

/* Manual selection */
.hero__slider:has(#slide-1:checked) .hero__slide { animation: none; }
.hero__slider:has(#slide-2:checked) .hero__slide { animation: none; }
.hero__slider:has(#slide-3:checked) .hero__slide { animation: none; }

#slide-1:checked ~ .hero__slide--1,
#slide-2:checked ~ .hero__slide--2,
#slide-3:checked ~ .hero__slide--3 {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
  pointer-events: auto;
  z-index: 3;
}

#slide-1:checked ~ .hero__slide--2,
#slide-1:checked ~ .hero__slide--3,
#slide-2:checked ~ .hero__slide--1,
#slide-2:checked ~ .hero__slide--3,
#slide-3:checked ~ .hero__slide--1,
#slide-3:checked ~ .hero__slide--2 {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

/* --- Hero Content (Left) — Chai Masthi text style --- */
.hero__content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0;
}

.hero__welcome {
  font-size: clamp(0.6rem, 1.8vw, 1.1rem);
  font-weight: 500;
  color: var(--cream);
  letter-spacing: 0.06em;
  text-shadow: var(--text-shadow);
  margin-bottom: 1rem;
  animation: fadeUp 0.7s ease both;
}

.hero__title {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 5.5vw, 4.5rem);
  font-weight: 400;
  line-height: 0.95;
  color: var(--white);
  letter-spacing: 0.02em;
  text-shadow: var(--text-shadow-strong);
  margin-bottom: 1.25rem;
}

.hero__title span {
  display: block;
  animation: fadeUp 0.7s ease both;
}

.hero__title span:nth-child(1) { animation-delay: 0.1s; }
.hero__title span:nth-child(2) { animation-delay: 0.2s; }
.hero__title span:nth-child(3) { animation-delay: 0.3s; }

.hero__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.95rem 2.4rem;
  background: linear-gradient(135deg, var(--honey-red), #9e2a2b);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: 8px;
  box-shadow: 0 6px 20px rgba(192, 57, 43, 0.35);
  transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
  margin-bottom: 1.5rem;
  animation: fadeUp 0.7s 0.4s ease both;
}

.hero__btn:hover {
  background: linear-gradient(135deg, #a93226, #7a1b1b);
  transform: translateY(-4px);
  box-shadow: 0 12px 28px rgba(192, 57, 43, 0.45);
}

.hero__subtitle {
  font-family: var(--font-display);
  font-size: clamp(0.8rem, 2.8vw, 2.2rem);
  font-weight: 400;
  line-height: 1;
  color: var(--honey-amber);
  letter-spacing: 0.03em;
  text-shadow: var(--text-shadow-strong);
  opacity: 0.92;
}

.hero__subtitle span {
  display: block;
}

@media (min-width: 1025px) and (max-height: 760px) {
  .hero__slide {
    padding-top: calc(var(--header-offset) + 1rem);
    padding-bottom: 2rem;
  }

  .hero__welcome {
    margin-bottom: 0.6rem;
  }

  .hero__title {
    font-size: clamp(1.35rem, 4.8vw, 3.8rem);
    line-height: 1;
    margin-bottom: 0.85rem;
  }

  .hero__btn {
    padding: 0.8rem 2rem;
    margin-bottom: 1rem;
  }

  .hero__subtitle {
    font-size: clamp(0.8rem, 2.35vw, 1.85rem);
    line-height: 1.04;
  }
}

@media (min-width: 1025px) and (max-height: 600px) {
  .hero__slide {
    padding-top: calc(var(--header-offset) + 0.5rem);
    padding-bottom: 1.25rem;
  }

  .hero__welcome {
    font-size: clamp(0.58rem, 1.4vw, 0.95rem);
    margin-bottom: 0.45rem;
  }

  .hero__title {
    font-size: clamp(1.25rem, 4.2vw, 3.1rem);
    margin-bottom: 0.65rem;
  }

  .hero__btn {
    padding: 0.7rem 1.65rem;
    font-size: 0.82rem;
    margin-bottom: 0.75rem;
  }

  .hero__subtitle {
    font-size: clamp(0.75rem, 2vw, 1.5rem);
  }
}

/* --- Hero Media (Right) — Chai Masthi product showcase --- */
.hero__media {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  min-height: 0;
  padding-right: clamp(2rem, 6vw, 5rem);
}

.hero__main-img {
  width: clamp(110px, 38vw, 520px);
  max-height: 72vh;
  object-fit: contain;
  mix-blend-mode: screen;
  filter: drop-shadow(0 16px 32px rgba(26, 15, 8, 0.25));
  animation: heroImgFloat 5s ease-in-out infinite;
}

.hero__slide--2 .hero__main-img {
  width: clamp(95px, 32vw, 420px);
}

/* --- Thumbnail Nav — Chai Masthi side thumbs --- */
.hero__thumbs {
  position: absolute;
  right: clamp(1rem, 3vw, 2.5rem);
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.hero__thumb {
  display: block;
  width: clamp(40px, 9vw, 72px);
  height: clamp(40px, 9vw, 72px);
  border-radius: 12px;
  overflow: hidden;
  cursor: pointer;
  border: 3px solid rgba(255, 255, 255, 0.35);
  box-shadow: 0 4px 16px rgba(26, 15, 8, 0.3);
  transition: border-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
  background: rgba(26, 15, 8, 0.25);
  backdrop-filter: blur(4px);
}

.hero__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero__thumb:hover {
  border-color: var(--honey-gold);
  transform: scale(1.08);
}

#slide-1:checked ~ .hero__thumbs label[for="slide-1"],
#slide-2:checked ~ .hero__thumbs label[for="slide-2"],
#slide-3:checked ~ .hero__thumbs label[for="slide-3"] {
  border-color: var(--honey-gold);
  box-shadow: 0 0 0 2px var(--honey-gold), 0 6px 20px rgba(232, 163, 23, 0.4);
  transform: scale(1.1);
}

/* Active thumb during auto-play */
@keyframes thumbActive1 {
  0%, 28%  { border-color: var(--honey-gold); box-shadow: 0 0 0 2px var(--honey-gold), 0 6px 20px rgba(232, 163, 23, 0.4); transform: scale(1.1); }
  33%, 100% { border-color: rgba(255, 255, 255, 0.35); box-shadow: 0 4px 16px rgba(26, 15, 8, 0.3); transform: scale(1); }
}

@keyframes thumbActive2 {
  0%, 28%  { border-color: rgba(255, 255, 255, 0.35); transform: scale(1); }
  33%, 61%  { border-color: var(--honey-gold); box-shadow: 0 0 0 2px var(--honey-gold), 0 6px 20px rgba(232, 163, 23, 0.4); transform: scale(1.1); }
  66%, 100% { border-color: rgba(255, 255, 255, 0.35); transform: scale(1); }
}

@keyframes thumbActive3 {
  0%, 61%  { border-color: rgba(255, 255, 255, 0.35); transform: scale(1); }
  66%, 94%  { border-color: var(--honey-gold); box-shadow: 0 0 0 2px var(--honey-gold), 0 6px 20px rgba(232, 163, 23, 0.4); transform: scale(1.1); }
  100%     { border-color: rgba(255, 255, 255, 0.35); transform: scale(1); }
}

.hero__slider:not(:has(:checked)) .hero__thumbs label:nth-child(1) { animation: thumbActive1 12s ease infinite; }
.hero__slider:not(:has(:checked)) .hero__thumbs label:nth-child(2) { animation: thumbActive2 12s ease infinite; }
.hero__slider:not(:has(:checked)) .hero__thumbs label:nth-child(3) { animation: thumbActive3 12s ease infinite; }

.hero__slider:has(:checked) .hero__thumbs label { animation: none; }

/* --- Bottom dots --- */
.hero__dots {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  gap: 10px;
}

.hero__dot {
  display: block;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
  cursor: pointer;
  border: 2px solid transparent;
  transition: all 0.3s ease;
}

.hero__dot:hover {
  background: rgba(255, 255, 255, 0.7);
}

#slide-1:checked ~ .hero__dots label[for="slide-1"],
#slide-2:checked ~ .hero__dots label[for="slide-2"],
#slide-3:checked ~ .hero__dots label[for="slide-3"] {
  background: var(--honey-gold);
  width: 32px;
  border-radius: 100px;
  border-color: var(--white);
}

@keyframes dotActive1 {
  0%, 28%  { background: var(--honey-gold); width: 32px; border-radius: 100px; }
  33%, 100% { background: rgba(255, 255, 255, 0.4); width: 12px; border-radius: 50%; }
}

@keyframes dotActive2 {
  0%, 28%  { background: rgba(255, 255, 255, 0.4); width: 12px; }
  33%, 61%  { background: var(--honey-gold); width: 32px; border-radius: 100px; }
  66%, 100% { background: rgba(255, 255, 255, 0.4); width: 12px; border-radius: 50%; }
}

@keyframes dotActive3 {
  0%, 61%  { background: rgba(255, 255, 255, 0.4); width: 12px; }
  66%, 94%  { background: var(--honey-gold); width: 32px; border-radius: 100px; }
  100%     { background: rgba(255, 255, 255, 0.4); width: 12px; border-radius: 50%; }
}

.hero__slider:not(:has(:checked)) .hero__dots label:nth-child(1) { animation: dotActive1 12s ease infinite; }
.hero__slider:not(:has(:checked)) .hero__dots label:nth-child(2) { animation: dotActive2 12s ease infinite; }
.hero__slider:not(:has(:checked)) .hero__dots label:nth-child(3) { animation: dotActive3 12s ease infinite; }

.hero__slider:has(:checked) .hero__dots label { animation: none; }

/* --- Animations --- */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes heroImgFloat {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-14px); }
}

/* --- About Page Hero --- */
.page-hero {
  padding: calc(var(--header-offset) + 1.5rem) clamp(1.25rem, 5vw, 3rem) clamp(2.5rem, 5vw, 3.5rem);
  background:
    radial-gradient(ellipse 70% 80% at 50% 0%, rgba(232, 163, 23, 0.14) 0%, transparent 70%),
    var(--cream);
  text-align: center;
}

.page-hero__label {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--honey-gold);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 0.65rem;
}

.page-hero__title {
  font-family: var(--font-display);
  font-size: clamp(2.75rem, 6vw, 4.25rem);
  font-weight: 400;
  color: var(--brown-dark);
  letter-spacing: 0.04em;
  line-height: 1.05;
  margin-bottom: 1rem;
}

.page-hero__text {
  max-width: 36rem;
  margin: 0 auto;
  font-size: clamp(1rem, 1.6vw, 1.1rem);
  line-height: 1.75;
  color: var(--brown-mid);
}

.page-hero--about,
.page-hero--products,
.page-hero--gallery,
.page-hero--contact {
  position: relative;
  min-height: clamp(220px, 26vw, 340px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding-top: calc(var(--header-offset) + 1rem);
  padding-bottom: clamp(2rem, 4vw, 3rem);
  background:
    linear-gradient(180deg, rgba(26, 15, 8, 0.2) 0%, rgba(26, 15, 8, 0.45) 100%),
    var(--page-hero-bg) center center / cover no-repeat;
}

.page-hero--about {
  --page-hero-bg: url('images/banners/about-banner-background-1584x396.jpg');
}

.page-hero--products {
  --page-hero-bg: url('images/banners/products-banner-background-1584x396.jpg');
}

.page-hero--gallery {
  --page-hero-bg: url('images/gallery/gallery-page-bg.jpg');
}

.page-hero--contact {
  --page-hero-bg: url('images/banners/contact-banner-background-1584x396.jpg');
}

.page-hero--about .page-hero__label,
.page-hero--products .page-hero__label,
.page-hero--gallery .page-hero__label,
.page-hero--contact .page-hero__label {
  color: var(--honey-amber);
  text-shadow: var(--text-shadow);
}

.page-hero--about .page-hero__title,
.page-hero--products .page-hero__title,
.page-hero--gallery .page-hero__title,
.page-hero--contact .page-hero__title {
  color: var(--white);
  text-shadow: var(--text-shadow-strong);
}

.page-hero--about .page-hero__text,
.page-hero--products .page-hero__text,
.page-hero--gallery .page-hero__text,
.page-hero--contact .page-hero__text {
  color: rgba(255, 255, 255, 0.92);
  text-shadow: var(--text-shadow);
}

.about--page {
  padding-top: clamp(2.5rem, 5vw, 4rem);
}

/* --- About Section --- */
.about {
  position: relative;
  z-index: 10;
  background:
    radial-gradient(ellipse 60% 50% at 85% 0%, rgba(232, 163, 23, 0.08) 0%, transparent 60%),
    radial-gradient(ellipse 50% 50% at 0% 100%, rgba(255, 214, 120, 0.1) 0%, transparent 55%),
    var(--white);
  padding: clamp(4.5rem, 7vw, 6.5rem) clamp(1.25rem, 5vw, 4rem);
  scroll-margin-top: var(--header-offset);
}

.about__inner {
  max-width: 1140px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: clamp(2.5rem, 6vw, 5rem);
  align-items: center;
}

.about__visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 0;
  min-height: clamp(320px, 38vw, 440px);
  padding: clamp(1rem, 2vw, 1.5rem) clamp(1rem, 3vw, 2rem);
}

.about__glow {
  position: absolute;
  inset: 8% 5%;
  background:
    radial-gradient(ellipse 70% 60% at 50% 55%, rgba(232, 163, 23, 0.16) 0%, transparent 72%),
    radial-gradient(ellipse 45% 35% at 20% 30%, rgba(255, 214, 120, 0.12) 0%, transparent 70%),
    radial-gradient(ellipse 40% 30% at 80% 70%, rgba(255, 214, 120, 0.1) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}

.about__img-wrap {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: clamp(300px, 34vw, 420px);
  display: flex;
  align-items: center;
  justify-content: center;
}

.about__img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
  object-position: center;
  filter: url(#remove-black) saturate(1.35) contrast(1.06) drop-shadow(0 14px 28px rgba(232, 163, 23, 0.22));
  animation: heroImgFloat 5.5s ease-in-out infinite;
}

.about__content {
  position: relative;
  z-index: 2;
  min-width: 0;
}

.about__label {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.82rem;
  font-weight: 800;
  color: var(--honey-gold);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 0.9rem;
}

.about__label::before {
  content: "";
  width: clamp(24px, 4vw, 40px);
  height: 2px;
  background: var(--honey-gold);
  border-radius: 2px;
}

.about__title-wrap {
  display: inline-flex;
  align-items: center;
  gap: clamp(0.5rem, 1.5vw, 1.25rem);
  margin-bottom: 1.75rem;
}

.about__title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 3.85rem);
  font-weight: 400;
  color: var(--brown-dark);
  letter-spacing: 0.04em;
  line-height: 1;
  margin-bottom: 0;
}

.about__title-bee {
  width: clamp(84px, 12vw, 130px);
  height: auto;
  flex-shrink: 0;
  margin-top: -0.35em;
  filter: url(#remove-black)
    drop-shadow(0 8px 16px rgba(232, 163, 23, 0.35))
    drop-shadow(0 2px 4px rgba(26, 15, 8, 0.2));
  animation: beeFloat 4s ease-in-out infinite;
  transform-origin: center;
  pointer-events: none;
}

.about__text {
  font-size: clamp(0.98rem, 1.4vw, 1.08rem);
  line-height: 1.8;
  color: var(--brown-mid);
  margin-bottom: 2.25rem;
}

.about__cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
  align-items: stretch;
}

.about__card {
  position: relative;
  padding: 2rem 1.75rem;
  background: var(--cream-panel, #faf6ee);
  border: 1px solid rgba(232, 163, 23, 0.12);
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(26, 15, 8, 0.02);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  flex-direction: column;
}

.about__card:hover {
  transform: translateY(-6px);
  border-color: rgba(232, 163, 23, 0.5);
  background: var(--white);
  box-shadow: 0 20px 40px rgba(232, 163, 23, 0.12);
}

.about__card--highlight {
  border: 1px solid var(--honey-gold);
  background: var(--white);
  box-shadow: 0 6px 24px rgba(232, 163, 23, 0.08);
}

.about__card--highlight:hover {
  box-shadow: 0 22px 48px rgba(232, 163, 23, 0.16);
  border-color: var(--honey-amber);
}

.about__card-title {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--brown-dark);
  margin-bottom: 0.8rem;
}

.about__card-icon {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  color: var(--honey-gold);
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.about__card:hover .about__card-icon {
  transform: rotate(15deg) scale(1.15);
}

.about__card-text {
  font-size: 0.92rem;
  line-height: 1.7;
  color: var(--brown-mid);
  flex-grow: 1;
}

.about__btn {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.95rem 2rem;
  background: linear-gradient(135deg, var(--honey-gold), var(--honey-amber));
  color: var(--brown-dark);
  font-size: 0.9rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: 8px;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 6px 24px rgba(232, 163, 23, 0.22);
}

.about__btn:hover {
  background: linear-gradient(135deg, var(--honey-amber), #df9b00);
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(232, 163, 23, 0.32);
}

.about__btn-arrow {
  font-size: 1.2rem;
  line-height: 1;
  transition: transform 0.25s ease;
}

.about__btn:hover .about__btn-arrow {
  transform: translateX(5px);
}

@keyframes beeFloat {
  0%, 100% { transform: translateY(0) rotate(-4deg); }
  25%      { transform: translateY(-8px) rotate(2deg); }
  50%      { transform: translateY(-14px) rotate(5deg); }
  75%      { transform: translateY(-6px) rotate(1deg); }
}

/* --- Video Showcase (Honey Twigs shoppable reel style) --- */
.video-showcase {
  position: relative;
  z-index: 10;
  background: var(--cream);
  padding: clamp(4.5rem, 7vw, 6rem) 0 clamp(4rem, 6vw, 5.5rem);
  scroll-margin-top: var(--header-offset);
}

.video-showcase__inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 clamp(1rem, 3vw, 2rem);
}

.video-showcase__header {
  text-align: center;
  margin-bottom: clamp(1.75rem, 4vw, 2.5rem);
}

.video-showcase__label {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--honey-gold);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}

.video-showcase__title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.5vw, 3rem);
  font-weight: 400;
  color: var(--brown-dark);
  letter-spacing: 0.04em;
  line-height: 1.1;
}

.video-showcase__carousel {
  position: relative;
  display: block;
}

.video-showcase__arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border: none;
  border-radius: 50%;
  background: var(--white);
  color: var(--brown-dark);
  box-shadow: 0 4px 18px rgba(26, 15, 8, 0.12);
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease, opacity 0.2s ease;
}

.video-showcase__arrow svg {
  width: 22px;
  height: 22px;
}

.video-showcase__arrow--prev {
  left: 10px;
}

.video-showcase__arrow--next {
  right: 10px;
}

.video-showcase__arrow:hover:not(:disabled) {
  background: var(--honey-gold);
  transform: translateY(-50%) scale(1.08);
  box-shadow: 0 6px 22px rgba(232, 163, 23, 0.35);
}

.video-showcase__arrow:disabled {
  opacity: 0.35;
  cursor: not-allowed;
  transform: translateY(-50%);
}

.video-showcase__track {
  width: 100%;
  display: flex;
  gap: clamp(0.75rem, 2vw, 1.25rem);
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding: 0.5rem 0.25rem 1rem;
}

.video-showcase__track::-webkit-scrollbar {
  display: none;
}

.video-showcase__card {
  position: relative;
  flex: 0 0 calc((100% - 3.75rem) / 4);
  min-width: calc((100% - 3.75rem) / 4);
  scroll-snap-align: start;
  border-radius: 32px;
  overflow: hidden;
  background: var(--brown-dark);
  box-shadow: 0 8px 32px rgba(26, 15, 8, 0.14);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.video-showcase__card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(26, 15, 8, 0.22);
}

.video-showcase__media {
  position: relative;
  aspect-ratio: 9 / 16;
  background: var(--brown-dark);
}



/* Play Button Overlay */
.video-showcase__play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 40px;
  height: 40px;
  color: var(--white);
  pointer-events: none;
  z-index: 3;
  opacity: 1;
  visibility: visible;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.4));
}

.video-showcase__play-btn svg {
  width: 100%;
  height: 100%;
}

/* Hide play button when video is playing */
.video-showcase__card.is-playing .video-showcase__play-btn {
  opacity: 0;
  visibility: hidden;
}

.video-showcase__media--embed {
  overflow: hidden;
}

.video-showcase__embed {
  display: block;
  width: 100%;
  height: 100%;
  border: none;
  object-fit: cover;
}

.video-showcase__yt-launch {
  display: block;
  width: 100%;
  height: 100%;
  padding: 0;
  border: none;
  background: var(--brown-dark);
  cursor: pointer;
  position: relative;
}

.video-showcase__yt-thumb {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.video-showcase__yt-play {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}

.video-showcase__yt-play svg {
  width: clamp(52px, 18%, 72px);
  height: auto;
  filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.35));
  transition: transform 0.2s ease;
}

.video-showcase__yt-launch:hover .video-showcase__yt-play svg {
  transform: scale(1.08);
}

.video-showcase__video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.video-showcase__mute {
  position: absolute;
  right: 0.85rem;
  bottom: 0.85rem;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border: none;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.92);
  color: var(--brown-dark);
  cursor: pointer;
  opacity: 0;
  transform: scale(0.9);
  transition: opacity 0.2s ease, transform 0.2s ease, background 0.2s ease;
  z-index: 2;
}

.video-showcase__card:hover .video-showcase__mute,
.video-showcase__card:focus-within .video-showcase__mute,
.video-showcase__mute:focus-visible {
  opacity: 1;
  transform: scale(1);
}

.video-showcase__mute:hover {
  background: var(--white);
}

.video-showcase__mute-icon {
  width: 18px;
  height: 18px;
}

.video-showcase__mute-icon--unmuted {
  display: none;
}

.video-showcase__mute.is-unmuted .video-showcase__mute-icon--muted {
  display: none;
}

.video-showcase__mute.is-unmuted .video-showcase__mute-icon--unmuted {
  display: block;
}

.video-showcase__shop {
  position: absolute;
  top: 1rem;
  left: 1rem;
  z-index: 2;
  padding: 0.45rem 1.1rem;
  background: rgba(255, 255, 255, 0.95);
  color: var(--brown-dark);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  border-radius: 999px;
  box-shadow: 0 2px 12px rgba(26, 15, 8, 0.12);
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.video-showcase__shop:hover {
  background: var(--honey-gold);
  color: var(--brown-dark);
  transform: scale(1.04);
}

/* --- Process Banner --- */
.process-banner {
  position: relative;
  z-index: 10;
  width: 100%;
  background: var(--white);
  padding: 0;
  margin: 0;
}

.process-banner__inner {
  width: 100%;
  max-width: none;
  margin: 0;
}

.process-banner__img {
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
  border-radius: 0;
  box-shadow: none;
}

/* --- About Us Banner --- */
.about-us-banner {
  position: relative;
  z-index: 10;
  width: 100%;
  background: var(--white);
  padding: 0;
  margin: 0;
  overflow: hidden;
}

.about-us-banner__inner {
  width: 100%;
  max-width: 100%;
  margin: 0 auto;
  overflow: hidden;
}

.about-us-banner__img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}

.about-us-banner:hover .about-us-banner__img {
  transform: scale(1.015);
}

/* --- Homepage Banner --- */
.homepage-banner {
  position: relative;
  z-index: 10;
  width: 100%;
  background: var(--cream-panel);
  padding: 0;
  margin: 0;
  overflow: hidden;
  border-top: 1px solid rgba(232, 163, 23, 0.12);
  border-bottom: 1px solid rgba(232, 163, 23, 0.12);
  transition: border-color 0.3s ease;
}

.homepage-banner:hover {
  border-color: var(--honey-gold);
}

.homepage-banner__inner {
  width: 100%;
  max-width: 100%;
  margin: 0 auto;
  overflow: hidden;
}

.homepage-banner__img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}

.homepage-banner:hover .homepage-banner__img {
  transform: scale(1.015);
}

/* --- Popular Items Section --- */
/* ============================================
   Popular Items — Premium Grid (Light Theme)
   ============================================ */

.popular-items {
  position: relative;
  z-index: 10;
  background:
    radial-gradient(ellipse 70% 55% at 50% -5%, rgba(232, 163, 23, 0.12) 0%, transparent 60%),
    radial-gradient(ellipse 45% 40% at 90% 100%, rgba(255, 214, 120, 0.1) 0%, transparent 55%),
    var(--cream);
  padding: clamp(5rem, 8vw, 7rem) clamp(1.25rem, 4vw, 3rem);
  overflow: hidden;
}

/* Subtle dot texture overlay */
.popular-items::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(232,163,23,0.07) 1px, transparent 1px);
  background-size: 32px 32px;
  pointer-events: none;
  z-index: 0;
}

.popular-items__inner {
  position: relative;
  z-index: 1;
  max-width: 1280px;
  margin: 0 auto;
}

/* --- Header --- */
.popular-items__header {
  text-align: center;
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
}

.popular-items__label {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--honey-deep);
  margin-bottom: 0.9rem;
}

.popular-items__title {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5.5vw, 4rem);
  font-weight: 400;
  color: var(--brown-dark);
  letter-spacing: 0.04em;
  line-height: 1.05;
  margin-bottom: 1rem;
}

.popular-items__title em {
  font-style: normal;
  color: var(--honey-gold);
}

.popular-items__subtitle {
  font-size: clamp(0.95rem, 1.5vw, 1.05rem);
  color: var(--brown-mid);
  line-height: 1.7;
  max-width: 38rem;
  margin: 0 auto;
}

/* --- 4-Column Grid --- */
.popular-items__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(1rem, 2vw, 1.5rem);
  align-items: start;
}

/* --- Card Base --- */
.popular-items__card {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  background: var(--white);
  border: 1px solid rgba(232, 163, 23, 0.18);
  box-shadow: 0 4px 20px rgba(26, 15, 8, 0.06);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1),
              box-shadow 0.4s cubic-bezier(0.16, 1, 0.3, 1),
              border-color 0.3s ease;
}

.popular-items__card:hover {
  transform: translateY(-10px);
  box-shadow: 0 24px 56px rgba(26, 15, 8, 0.12), 0 0 36px rgba(232, 163, 23, 0.1);
  border-color: rgba(232, 163, 23, 0.5);
}

/* Featured card */
.popular-items__card--featured {
  border-color: var(--honey-gold);
  background: var(--white);
  box-shadow: 0 6px 28px rgba(232, 163, 23, 0.15);
}

.popular-items__card--featured:hover {
  box-shadow: 0 28px 60px rgba(26, 15, 8, 0.14), 0 0 48px rgba(232, 163, 23, 0.18);
}

/* --- Card Link --- */
.popular-items__card-link {
  display: flex;
  flex-direction: column;
  height: 100%;
  text-decoration: none;
}

/* --- Badge --- */
.popular-items__badge {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 4;
  padding: 0.3rem 0.85rem;
  border-radius: 100px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  background: var(--cream);
  color: var(--honey-deep);
  border: 1px solid rgba(232, 163, 23, 0.4);
}

.popular-items__badge--featured {
  background: linear-gradient(135deg, var(--honey-gold), var(--honey-amber));
  color: var(--brown-dark);
  border: none;
}

.popular-items__badge--gifting {
  background: var(--honey-red);
  color: #fff;
  border: none;
}

.popular-items__badge--hot {
  background: var(--honey-red);
  color: #fff;
  border: none;
}

/* --- Card Media --- */
.popular-items__card-media {
  position: relative;
  aspect-ratio: 3 / 4;
  background: linear-gradient(160deg, #fffdf8 0%, #f5edd8 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem 1rem;
  overflow: hidden;
}

.popular-items__card-media::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 50% at 50% 100%, rgba(232,163,23,0.1) 0%, transparent 70%);
  pointer-events: none;
}

.popular-items__card-media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  filter: drop-shadow(0 10px 24px rgba(26, 15, 8, 0.15)) drop-shadow(0 4px 8px rgba(232,163,23,0.12));
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  z-index: 1;
}

.popular-items__card:hover .popular-items__card-media img {
  transform: scale(1.06) translateY(-4px);
}

/* --- Card Footer --- */
.popular-items__card-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 1.1rem 1.25rem;
  background: var(--white);
  border-top: 1px solid rgba(232, 163, 23, 0.15);
  margin-top: auto;
}

.popular-items__card-name {
  display: block;
  font-size: clamp(0.95rem, 1.4vw, 1.05rem);
  font-weight: 700;
  color: var(--brown-dark);
  line-height: 1.2;
  margin-bottom: 0.2rem;
}

.popular-items__card-desc {
  display: block;
  font-size: 0.75rem;
  color: var(--brown-mid);
  font-weight: 500;
  letter-spacing: 0.02em;
}

.popular-items__card-arrow {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--cream);
  color: var(--honey-deep);
  border: 1px solid rgba(232, 163, 23, 0.3);
  transition: background 0.25s ease, transform 0.3s ease, color 0.25s ease, border-color 0.25s ease;
}

.popular-items__card-arrow svg {
  width: 16px;
  height: 16px;
}

.popular-items__card:hover .popular-items__card-arrow {
  background: var(--honey-gold);
  color: var(--brown-dark);
  transform: translateX(3px);
  border-color: var(--honey-gold);
}

/* --- Bottom CTA Row --- */
.popular-items__cta-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  margin-top: clamp(2.5rem, 4vw, 3.5rem);
  padding: 1.75rem 2.5rem;
  background: var(--white);
  border: 1px solid rgba(232, 163, 23, 0.22);
  border-radius: 16px;
  box-shadow: 0 4px 16px rgba(26, 15, 8, 0.05);
}

.popular-items__cta-text {
  font-size: clamp(0.95rem, 1.5vw, 1.05rem);
  color: var(--brown-mid);
  font-weight: 500;
  line-height: 1.5;
}

.popular-items__view-all {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  flex-shrink: 0;
  padding: 0.85rem 2.25rem;
  background: linear-gradient(135deg, var(--honey-gold), var(--honey-amber));
  color: var(--brown-dark);
  font-size: 0.88rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-radius: 100px;
  transition: transform 0.3s ease, box-shadow 0.3s ease, filter 0.3s ease;
  box-shadow: 0 6px 24px rgba(232, 163, 23, 0.3);
  white-space: nowrap;
}

.popular-items__view-all:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 36px rgba(232, 163, 23, 0.45);
  filter: brightness(1.06);
}

/* --- Trending Now Section --- */
.trending-now {
  position: relative;
  z-index: 10;
  background: var(--cream);
  padding: clamp(4rem, 7vw, 6rem) clamp(1rem, 3vw, 2.5rem);
  scroll-margin-top: var(--header-offset);
}

.trending-now__inner {
  max-width: 1280px;
  margin: 0 auto;
}

.trending-now__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: clamp(2rem, 4vw, 3rem);
}

.trending-now__title {
  font-family: var(--font-display);
  font-size: clamp(2.25rem, 5vw, 3.5rem);
  font-weight: 400;
  color: var(--brown-dark);
  letter-spacing: 0.04em;
  line-height: 1.05;
}

.trending-now__show-more {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--honey-deep);
  transition: color 0.2s ease, transform 0.2s ease;
  white-space: nowrap;
}

.trending-now__show-more:hover {
  color: var(--honey-red);
  transform: translateX(3px);
}

.trending-now__show-more svg {
  width: 18px;
  height: 18px;
  transition: transform 0.2s ease;
}

.trending-now__show-more:hover svg {
  transform: translateX(3px);
}

.trending-now__carousel {
  position: relative;
}

.trending-now__arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border: none;
  border-radius: 50%;
  background: var(--white);
  color: var(--brown-dark);
  box-shadow: 0 4px 18px rgba(26, 15, 8, 0.12);
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease, opacity 0.2s ease;
}

.trending-now__arrow svg {
  width: 22px;
  height: 22px;
}

.trending-now__arrow--prev {
  left: -22px;
}

.trending-now__arrow--next {
  right: -22px;
}

.trending-now__arrow:hover:not(:disabled) {
  background: var(--honey-gold);
  transform: translateY(-50%) scale(1.08);
  box-shadow: 0 6px 22px rgba(232, 163, 23, 0.35);
}

.trending-now__arrow:disabled {
  opacity: 0.35;
  cursor: not-allowed;
  transform: translateY(-50%);
}

.trending-now__track {
  width: 100%;
  display: flex;
  gap: clamp(1rem, 2vw, 1.5rem);
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding: 0.5rem 0.25rem 1rem;
}

.trending-now__track::-webkit-scrollbar {
  display: none;
}

.trending-now__card-link {
  flex: 0 0 calc((100% - 4.5rem) / 4);
  min-width: calc((100% - 4.5rem) / 4);
  scroll-snap-align: start;
  display: block;
  text-decoration: none;
  color: inherit;
}

.trending-now__card {
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
  background: var(--white);
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(232, 163, 23, 0.18);
  box-shadow: 0 4px 20px rgba(26, 15, 8, 0.06);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1),
              box-shadow 0.4s cubic-bezier(0.16, 1, 0.3, 1),
              border-color 0.3s ease;
}

.trending-now__card:hover {
  transform: translateY(-10px);
  box-shadow: 0 24px 56px rgba(26, 15, 8, 0.12), 0 0 36px rgba(232, 163, 23, 0.1);
  border-color: rgba(232, 163, 23, 0.5);
}

.trending-now__media {
  position: relative;
  aspect-ratio: 1 / 1.05;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  overflow: hidden;
}

.trending-now__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  z-index: 1;
}

.trending-now__card:hover .trending-now__media img {
  transform: scale(1.06);
}

.trending-now__discount {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 4;
  padding: 0.35rem 0.75rem;
  border-radius: 8px;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  background: var(--honey-red);
  color: var(--white);
  box-shadow: 0 2px 8px rgba(192, 57, 43, 0.25);
}

.trending-now__rating {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 4;
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 700;
  background: var(--white);
  color: var(--brown-dark);
  box-shadow: 0 2px 10px rgba(26, 15, 8, 0.1);
  border: 1px solid rgba(232, 163, 23, 0.25);
}

.trending-now__star {
  color: var(--honey-gold);
  font-size: 0.85rem;
}

.trending-now__body {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.65rem;
  padding: 1.25rem 1.25rem 1.5rem;
  background: var(--white);
}

.trending-now__name {
  font-size: clamp(1rem, 1.4vw, 1.15rem);
  font-weight: 700;
  color: var(--brown-dark);
  line-height: 1.25;
}

.trending-now__price {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  flex-wrap: wrap;
  font-size: 1rem;
  font-weight: 700;
  color: var(--brown-dark);
}

.trending-now__old-price {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--brown-mid);
  text-decoration: line-through;
  opacity: 0.75;
}

.trending-now__buy {
  width: calc(100% - 1.5rem);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.9rem 1.5rem;
  background: var(--brown-dark);
  color: var(--white);
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  border-radius: 999px;
  transition: background 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
  margin: 0.5rem auto 0;
  box-shadow: 0 4px 14px rgba(26, 15, 8, 0.12);
}

.trending-now__buy:hover {
  background: var(--honey-gold);
  color: var(--brown-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(232, 163, 23, 0.35);
}

@media (max-width: 1024px) {
  .trending-now__card-link {
    flex: 0 0 calc((100% - 3 * 12px) / 4);
    min-width: calc((100% - 3 * 12px) / 4);
  }

  .trending-now__arrow {
    width: 38px;
    height: 38px;
  }

  .trending-now__arrow--prev {
    left: 8px;
  }

  .trending-now__arrow--next {
    right: 8px;
  }
}

@media (max-width: 768px) {
  .trending-now__card-link {
    flex: 0 0 calc(85% - 6px);
    min-width: calc(85% - 6px);
    scroll-snap-align: start;
  }

  .trending-now__track {
    gap: 12px;
    padding: 0.5rem 1rem 1rem;
    scroll-padding-inline: 1rem;
  }

  .trending-now__header {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 0 1rem;
  }

  .trending-now__title {
    font-size: clamp(1.85rem, 8vw, 2.5rem);
  }

  .trending-now__show-more {
    font-size: 0.85rem;
  }

  .trending-now__arrow {
    width: 34px;
    height: 34px;
  }

  .trending-now__arrow svg {
    width: 18px;
    height: 18px;
  }

  .trending-now__arrow--prev {
    left: 4px;
  }

  .trending-now__arrow--next {
    right: 4px;
  }

  .trending-now__body {
    padding: 1rem 1rem 1.25rem;
    gap: 0.5rem;
  }

  .trending-now__name {
    font-size: 0.95rem;
  }

  .trending-now__price {
    font-size: 0.95rem;
    gap: 0.45rem;
  }

  .trending-now__old-price {
    font-size: 0.8rem;
  }

  .trending-now__buy {
    width: calc(100% - 1rem);
    padding: 0.8rem 1.25rem;
    font-size: 0.82rem;
  }
}

@media (max-width: 480px) {
  .trending-now {
    padding: 2.5rem 0;
  }

  .trending-now__card {
    border-radius: 14px;
  }

  .trending-now__discount,
  .trending-now__rating {
    top: 8px;
    font-size: 0.6rem;
    padding: 0.2rem 0.5rem;
  }

  .trending-now__discount {
    left: 8px;
  }

  .trending-now__rating {
    right: 8px;
  }

  .trending-now__star {
    font-size: 0.75rem;
  }
}

/* --- Testimonials Section --- */
.testimonials {
  position: relative;
  z-index: 10;
  overflow: hidden;
  background:
    radial-gradient(ellipse 80% 55% at 50% 0%, rgba(232, 163, 23, 0.12) 0%, transparent 70%),
    var(--cream);
  padding: clamp(5rem, 8vw, 7rem) clamp(1rem, 3vw, 2.5rem);
  scroll-margin-top: var(--header-offset);
}

.testimonials__decor {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.testimonials__honeycomb {
  position: absolute;
  inset: 0;
  opacity: 0.14;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='56' height='100' viewBox='0 0 56 100'%3E%3Cg fill='none' stroke='%23e8a317' stroke-width='1.2'%3E%3Cpath d='M14 2 L42 2 L56 26 L42 50 L14 50 L0 26 Z'/%3E%3Cpath d='M14 50 L42 50 L56 74 L42 98 L14 98 L0 74 Z'/%3E%3C/g%3E%3C/svg%3E");
  background-size: 56px 100px;
}

.testimonials__drip {
  position: absolute;
  width: clamp(90px, 12vw, 140px);
  height: clamp(120px, 16vw, 180px);
  border-radius: 45% 45% 50% 50%;
  background: linear-gradient(180deg, rgba(245, 184, 46, 0.55) 0%, rgba(232, 163, 23, 0.15) 72%, transparent 100%);
}

.testimonials__drip--left {
  top: -2rem;
  left: -1.5rem;
}

.testimonials__drip--right {
  top: -1.5rem;
  right: -1rem;
  transform: scaleX(-1);
}

.testimonials__inner {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
}

.testimonials__header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto clamp(2.5rem, 5vw, 3.5rem);
}

.testimonials__title-wrap {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: clamp(0.5rem, 1.5vw, 1rem);
  margin-bottom: 0.85rem;
}

.testimonials__title-bee {
  width: clamp(52px, 8vw, 84px);
  height: auto;
  filter: url(#remove-black) drop-shadow(0 6px 14px rgba(26, 15, 8, 0.18));
  animation: beeFloat 4s ease-in-out infinite;
}

.testimonials__label {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--honey-gold);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}

.testimonials__title {
  font-family: var(--font-display);
  font-size: clamp(2.25rem, 5vw, 3.25rem);
  font-weight: 400;
  color: var(--brown-dark);
  letter-spacing: 0.03em;
  line-height: 1.05;
  margin-bottom: 0;
}

.testimonials__subtitle {
  font-size: clamp(0.95rem, 1.5vw, 1.05rem);
  line-height: 1.7;
  color: var(--brown-mid);
}

.testimonials__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(1rem, 2vw, 1.5rem);
  align-items: stretch;
}

.testimonials__card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  padding: clamp(1.5rem, 3vw, 2rem);
  background:
    linear-gradient(180deg, rgba(255, 248, 231, 0.65) 0%, var(--white) 38%),
    var(--white);
  border: 1px solid rgba(232, 163, 23, 0.16);
  border-radius: 16px;
  box-shadow: 0 8px 28px rgba(26, 15, 8, 0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  overflow: hidden;
}

.testimonials__card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--honey-gold), var(--honey-amber), var(--honey-gold));
}

.testimonials__badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  display: inline-flex;
  align-items: center;
  padding: 0.35rem 0.75rem;
  background: var(--brown-dark);
  color: var(--white);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-radius: 999px;
  z-index: 1;
}

.testimonials__card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 44px rgba(26, 15, 8, 0.08);
}

.testimonials__card--featured {
  border: 2px solid var(--honey-gold);
  box-shadow: 0 10px 32px rgba(232, 163, 23, 0.15);
  padding-top: clamp(2.25rem, 4vw, 2.75rem);
}

.testimonials__stars {
  color: var(--honey-gold);
  font-size: 1rem;
  letter-spacing: 0.12em;
  line-height: 1;
}

.testimonials__quote {
  position: relative;
  flex: 1;
  padding-left: 1.35rem;
  font-size: clamp(0.95rem, 1.4vw, 1.02rem);
  line-height: 1.75;
  color: var(--brown-text);
  font-style: italic;
}

.testimonials__quote::before {
  content: '“';
  position: absolute;
  top: -0.35rem;
  left: 0;
  font-family: Georgia, serif;
  font-size: 2.4rem;
  line-height: 1;
  color: var(--honey-gold);
  font-style: normal;
}

.testimonials__author {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding-top: 0.25rem;
  border-top: 1px solid rgba(26, 15, 8, 0.08);
}

.testimonials__avatar {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--honey-gold), var(--honey-amber));
  color: var(--brown-dark);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.04em;
}

.testimonials__name {
  display: block;
  font-size: 0.95rem;
  font-weight: 700;
  font-style: normal;
  color: var(--brown-dark);
}

.testimonials__role {
  font-size: 0.82rem;
  color: var(--brown-mid);
  margin-top: 0.15rem;
}

/* --- Footer --- */
.site-footer {
  position: relative;
  z-index: 10;
  background: var(--brown-dark);
  color: rgba(255, 255, 255, 0.88);
  padding: clamp(4rem, 8vw, 6rem) clamp(1rem, 3vw, 2.5rem) 0;
}

.site-footer__inner {
  max-width: 1200px;
  margin: 0 auto;
}

.site-footer__top {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, minmax(0, 1fr));
  gap: clamp(2rem, 4vw, 3rem);
  padding-bottom: clamp(2rem, 4vw, 3rem);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.site-footer__logo {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.site-footer__logo-img {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  object-fit: contain;
  background: var(--white);
  padding: 3px;
  flex-shrink: 0;
}

.site-footer__brand-name {
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1;
}

.site-footer__brand-name em {
  font-style: normal;
  color: var(--honey-gold);
}

.site-footer__tagline {
  max-width: 22rem;
  font-size: 0.92rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.72);
}

.site-footer__heading {
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--honey-gold);
  margin-bottom: 1.1rem;
}

.site-footer__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.site-footer__list a {
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.92rem;
  transition: color 0.2s ease;
}

.site-footer__list a:hover {
  color: var(--honey-gold);
}

.site-footer__contact li {
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.78);
}

.site-footer__social {
  display: flex;
  gap: 0.65rem;
  margin-top: 1.25rem;
}

.site-footer__social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.12);
  transition: background 0.25s ease, color 0.25s ease, transform 0.25s ease;
}

.site-footer__social-link svg {
  width: 17px;
  height: 17px;
}

.site-footer__social-link:hover {
  background: var(--honey-gold);
  color: var(--brown-dark);
  transform: translateY(-2px);
}

.site-footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  padding: 1.35rem 0 1.75rem;
}

.site-footer__copy {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.55);
}

.site-footer__legal {
  display: flex;
  gap: 1.25rem;
}

.site-footer__legal a {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.55);
  transition: color 0.2s ease;
}

.site-footer__legal a:hover {
  color: var(--honey-gold);
}

.site-footer__watermark {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0;
  border: none;
  background: transparent;
  color: rgba(255, 255, 255, 0.5);
  font: inherit;
  font-size: 0.78rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  cursor: pointer;
  transition: color 0.2s ease, opacity 0.2s ease;
}

.site-footer__watermark strong {
  color: rgba(255, 255, 255, 0.72);
  font-weight: 800;
  transition: color 0.2s ease;
}

.site-footer__watermark:hover,
.site-footer__watermark:focus-visible {
  color: rgba(255, 255, 255, 0.86);
}

.site-footer__watermark:hover strong,
.site-footer__watermark:focus-visible strong {
  color: var(--honey-gold);
}

.enabled-brains-modal-open {
  overflow: hidden;
}

.enabled-brains-modal {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: grid;
  place-items: center;
  padding: clamp(1rem, 4vw, 2rem);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.22s ease;
}

.enabled-brains-modal.is-open {
  opacity: 1;
  pointer-events: auto;
}

.enabled-brains-modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(5px);
}

.enabled-brains-modal__dialog {
  position: relative;
  z-index: 1;
  width: min(100%, 480px);
  overflow: hidden;
  border-radius: 24px;
  background: var(--cream-panel);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.35);
  transform: translateY(16px) scale(0.98);
  transition: transform 0.22s ease;
}

.enabled-brains-modal.is-open .enabled-brains-modal__dialog {
  transform: translateY(0) scale(1);
}

.enabled-brains-modal__header {
  position: relative;
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.25rem 1.35rem;
  background: var(--brown-dark);
  color: var(--white);
}

.enabled-brains-modal__logo {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  object-fit: contain;
  background: var(--white);
  padding: 0.45rem;
  filter: brightness(1.05);
}

.enabled-brains-modal__eyebrow {
  margin-bottom: 0.2rem;
  color: var(--honey-gold);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.enabled-brains-modal__title {
  color: var(--white);
  font-size: clamp(1.35rem, 5vw, 1.85rem);
  line-height: 1.1;
}

.enabled-brains-modal__close {
  position: absolute;
  top: 0.85rem;
  right: 0.85rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
  font-size: 1.4rem;
  line-height: 1;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease;
}

.enabled-brains-modal__close:hover,
.enabled-brains-modal__close:focus-visible {
  background: var(--honey-gold);
  color: var(--brown-dark);
  transform: rotate(90deg);
}

.enabled-brains-modal__body {
  padding: clamp(1.25rem, 5vw, 1.75rem);
}

.enabled-brains-modal__copy {
  color: var(--brown-text);
  font-size: 1rem;
  line-height: 1.7;
}

.enabled-brains-modal__copy strong {
  color: var(--brown-dark);
}

.enabled-brains-modal__actions {
  display: grid;
  gap: 0.75rem;
  margin-top: 1.35rem;
}

.enabled-brains-modal__action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  min-height: 48px;
  padding: 0.8rem 1rem;
  border-radius: 999px;
  font-size: 0.92rem;
  font-weight: 800;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.enabled-brains-modal__action:hover,
.enabled-brains-modal__action:focus-visible {
  transform: translateY(-2px);
}

.enabled-brains-modal__action--primary {
  background: linear-gradient(135deg, var(--honey-gold), var(--honey-amber));
  color: var(--brown-dark);
  box-shadow: 0 8px 24px rgba(232, 163, 23, 0.32);
}

.enabled-brains-modal__action--ghost {
  background: var(--white);
  color: var(--brown-dark);
  border: 1px solid rgba(26, 15, 8, 0.1);
}

.enabled-brains-modal__action--whatsapp {
  background: rgba(37, 211, 102, 0.12);
  color: #128c4a;
  border: 1px solid rgba(37, 211, 102, 0.28);
}

.enabled-brains-modal__action--whatsapp svg {
  width: 22px;
  height: 22px;
  color: #25d366;
}

/* --- Gallery Page --- */
.gallery {
  background: var(--cream-panel);
  padding: 0 clamp(1rem, 3vw, 2.5rem) clamp(4rem, 7vw, 5.5rem);
}

.gallery__inner {
  max-width: 1280px;
  margin: 0 auto;
}

/* Auto-fill grid: adding a new card is just adding a new <article> */
.gallery__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: clamp(1rem, 2vw, 1.5rem);
  padding-top: clamp(2rem, 4vw, 3rem);
}

/* Card */
.gallery__card {
  background: var(--white);
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(26, 15, 8, 0.07);
  box-shadow: 0 4px 20px rgba(26, 15, 8, 0.07);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery__card:hover {
  transform: translateY(-5px);
  box-shadow: 0 14px 40px rgba(26, 15, 8, 0.13);
}

/* Image area — fixed 4:3 ratio keeps all cards the same height */
.gallery__card-media {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--cream);
}

.gallery__card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.gallery__card:hover .gallery__card-media img {
  transform: scale(1.06);
}

/* Category tag badge */
.gallery__card-tag {
  position: absolute;
  top: 0.75rem;
  left: 0.75rem;
  padding: 0.25rem 0.7rem;
  background: var(--honey-gold);
  color: var(--brown-dark);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-radius: 999px;
  pointer-events: none;
}

/* Text area */
.gallery__card-body {
  padding: 1rem 1.15rem 1.1rem;
  border-top: 1px solid rgba(26, 15, 8, 0.06);
}

.gallery__card-title {
  font-size: 0.97rem;
  font-weight: 700;
  color: var(--brown-dark);
  line-height: 1.3;
}

.gallery__card-sub {
  font-size: 0.8rem;
  color: var(--brown-mid);
  margin-top: 0.2rem;
}

/* --- YouTube Section (Gallery page) --- */
.youtube-section {
  background: var(--white);
  padding: clamp(3.5rem, 6vw, 5rem) clamp(1rem, 3vw, 2.5rem);
  scroll-margin-top: var(--header-offset);
}

.youtube-section__inner {
  max-width: 1280px;
  margin: 0 auto;
}

.youtube-section__header {
  text-align: center;
  margin-bottom: clamp(1.75rem, 4vw, 2.5rem);
}

.youtube-section__label {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--honey-gold);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}

.youtube-section__title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.5vw, 3rem);
  font-weight: 400;
  color: var(--brown-dark);
  letter-spacing: 0.04em;
  line-height: 1.1;
}

.youtube-section__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: clamp(1rem, 2vw, 1.5rem);
}

.youtube-section__card {
  background: var(--white);
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(26, 15, 8, 0.07);
  box-shadow: 0 4px 20px rgba(26, 15, 8, 0.07);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.youtube-section__card:hover {
  transform: translateY(-5px);
  box-shadow: 0 14px 40px rgba(26, 15, 8, 0.13);
}

.youtube-section__media {
  position: relative;
  display: block;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: var(--brown-dark);
}

.youtube-section__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.youtube-section__card:hover .youtube-section__media img {
  transform: scale(1.06);
}

.youtube-section__play {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(26, 15, 8, 0.22);
  transition: background 0.3s ease;
  pointer-events: none;
}

.youtube-section__play svg {
  width: clamp(48px, 12%, 64px);
  height: auto;
  color: var(--white);
  filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.35));
  transition: transform 0.2s ease;
}

.youtube-section__media:hover .youtube-section__play {
  background: rgba(26, 15, 8, 0.14);
}

.youtube-section__media:hover .youtube-section__play svg {
  transform: scale(1.08);
}

.youtube-section__body {
  padding: 1rem 1.15rem 1.1rem;
  border-top: 1px solid rgba(26, 15, 8, 0.06);
}

.youtube-section__card-title {
  font-size: 0.97rem;
  font-weight: 700;
  color: var(--brown-dark);
  line-height: 1.3;
}

.youtube-section__link {
  display: inline-block;
  margin-top: 0.35rem;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--honey-gold);
  text-decoration: none;
  transition: color 0.2s ease;
}

.youtube-section__link:hover {
  color: var(--honey-amber);
  text-decoration: underline;
}

@media (max-width: 640px) {
  .youtube-section__grid {
    grid-template-columns: 1fr;
  }
}

/* --- Products Page --- */
.products {
  background: var(--cream-panel);
  padding: 0 clamp(1rem, 3vw, 2.5rem) clamp(4rem, 7vw, 5.5rem);
}

.products__filter-input {
  display: none;
}

.products__inner {
  max-width: 1280px;
  margin: 0 auto;
}

/* Filter bar */
.products__filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  padding: clamp(1.75rem, 4vw, 2.5rem) 0 clamp(1.5rem, 3vw, 2rem);
}

.products__filter-btn {
  padding: 0.5rem 1.35rem;
  border-radius: 999px;
  border: 1.5px solid rgba(26, 15, 8, 0.14);
  background: var(--white);
  color: var(--brown-mid);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  cursor: pointer;
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
  user-select: none;
}

.products__filter-btn:hover {
  border-color: var(--honey-gold);
  color: var(--brown-dark);
}

/* Active filter button */
.products:has(#pf-all:checked)     .products__filter-btn[for="pf-all"],
.products:has(#pf-natural:checked) .products__filter-btn[for="pf-natural"],
.products:has(#pf-infused:checked) .products__filter-btn[for="pf-infused"],
.products:has(#pf-gifting:checked) .products__filter-btn[for="pf-gifting"],
.products:has(#pf-combo:checked)   .products__filter-btn[for="pf-combo"] {
  background: var(--honey-gold);
  border-color: var(--honey-gold);
  color: var(--brown-dark);
  box-shadow: 0 4px 14px rgba(232, 163, 23, 0.35);
}

/* Hide cards that don't match the active filter */
.products:has(#pf-natural:checked) .products__card-link:not([data-category="natural"]),
.products:has(#pf-infused:checked) .products__card-link:not([data-category="infused"]),
.products:has(#pf-gifting:checked) .products__card-link:not([data-category="gifting"]),
.products:has(#pf-combo:checked)   .products__card-link:not([data-category="combo"]) {
  display: none;
}

/* Auto-fill grid: adding a card just works */
.products__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: clamp(1rem, 2vw, 1.5rem);
}

/* Card link wrapper */
.products__card-link {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
}

/* Card */
.products__card {
  display: flex;
  flex-direction: column;
  background: var(--white);
  border: 1px solid rgba(26, 15, 8, 0.07);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(26, 15, 8, 0.07);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.products__card:hover {
  transform: translateY(-5px);
  box-shadow: 0 14px 40px rgba(26, 15, 8, 0.12);
}

.products__card--featured {
  border: 2px solid var(--honey-gold);
  box-shadow: 0 4px 20px rgba(232, 163, 23, 0.18);
}

/* Image area — consistent 4:3 ratio, fills like Trending Now */
.products__media {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
}

.products__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.products__card:hover .products__media img {
  transform: scale(1.05);
}

/* Badge (category / bestseller) */
.products__badge {
  position: absolute;
  top: 0.8rem;
  left: 0.8rem;
  padding: 0.28rem 0.75rem;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  border-radius: 999px;
  pointer-events: none;
}

.products__badge--natural   { background: #d4edda; color: #1a5c2a; }
.products__badge--infused   { background: #fff3cd; color: #7a5200; }
.products__badge--gifting   { background: #f8d7da; color: #7a1c24; }
.products__badge--combo     { background: #d1ecf1; color: #0c4a55; }
.products__badge--bestseller{ background: var(--honey-gold); color: var(--brown-dark); }

/* Wishlist button */
.products__wish {
  position: absolute;
  top: 0.8rem;
  right: 0.8rem;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: none;
  background: rgba(255, 255, 255, 0.92);
  color: var(--brown-mid);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0;
  transform: scale(0.85);
  transition: opacity 0.2s ease, transform 0.2s ease, color 0.2s ease, background 0.2s ease;
  box-shadow: 0 2px 8px rgba(26, 15, 8, 0.12);
}

.products__wish svg {
  width: 16px;
  height: 16px;
}

.products__card:hover .products__wish {
  opacity: 1;
  transform: scale(1);
}

.products__wish:hover {
  color: var(--honey-red);
  background: var(--white);
}

/* Body */
.products__body {
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: 0.55rem;
  padding: 1.15rem 1.25rem 1.25rem;
}

.products__name {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--brown-dark);
  line-height: 1.3;
}

.products__desc {
  flex: 1;
  font-size: 0.85rem;
  line-height: 1.65;
  color: var(--brown-mid);
}

/* Star rating */
.products__rating {
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.products__stars {
  color: var(--honey-gold);
  font-size: 0.85rem;
  letter-spacing: 0.06em;
  line-height: 1;
}

.products__rating-count {
  font-size: 0.78rem;
  color: var(--brown-mid);
}

/* Price & Buy button */
.products__price {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  flex-wrap: wrap;
  font-size: 1rem;
  font-weight: 700;
  color: var(--brown-dark);
}

.products__old-price {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--brown-mid);
  text-decoration: line-through;
  opacity: 0.75;
}

.products__buy {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 1.5rem;
  margin-top: 0.35rem;
  background: var(--brown-dark);
  color: var(--white);
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  border-radius: 999px;
  transition: background 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease, color 0.25s ease;
  box-shadow: 0 4px 14px rgba(26, 15, 8, 0.12);
}

.products__card-link:hover .products__buy {
  background: var(--honey-gold);
  color: var(--brown-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(232, 163, 23, 0.35);
}

/* --- Contact Page --- */
.contact {
  position: relative;
  background:
    radial-gradient(ellipse 80% 60% at 20% 40%, rgba(232, 163, 23, 0.12) 0%, transparent 60%),
    radial-gradient(ellipse 60% 80% at 80% 70%, rgba(255, 214, 120, 0.15) 0%, transparent 55%),
    var(--cream);
  padding: clamp(3rem, 6vw, 5rem) clamp(1rem, 3vw, 2.5rem) clamp(5rem, 8vw, 7rem);
  overflow: hidden;
}

.contact__decor {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.contact__honeycomb {
  position: absolute;
  inset: -20%;
  background-image: radial-gradient(circle, rgba(232, 163, 23, 0.07) 2px, transparent 2.5px);
  background-size: 36px 36px;
  opacity: 0.7;
  transform: rotate(12deg);
}

.contact__blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  opacity: 0.3;
  pointer-events: none;
}

.contact__blob--1 {
  width: clamp(260px, 40vw, 420px);
  height: clamp(260px, 40vw, 420px);
  background: var(--honey-gold);
  top: -10%;
  right: -8%;
}

.contact__blob--2 {
  width: clamp(220px, 35vw, 360px);
  height: clamp(220px, 35vw, 360px);
  background: var(--honey-amber);
  bottom: -8%;
  left: -6%;
}

.contact__inner {
  position: relative;
  z-index: 1;
  max-width: 1160px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  grid-template-areas:
    "header header"
    "info form";
  gap: clamp(2rem, 4vw, 3rem);
  align-items: start;
}

.contact__header {
  grid-area: header;
  text-align: center;
  max-width: 640px;
  margin: 0 auto clamp(1.5rem, 3vw, 2.5rem);
}

.contact__label {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--honey-gold);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 0.6rem;
}

.contact__title {
  font-family: var(--font-display);
  font-size: clamp(2.25rem, 5vw, 3.25rem);
  font-weight: 400;
  color: var(--brown-dark);
  letter-spacing: 0.04em;
  line-height: 1.05;
  margin-bottom: 0.75rem;
}

.contact__subtitle {
  font-size: clamp(1rem, 1.5vw, 1.15rem);
  line-height: 1.7;
  color: var(--brown-mid);
}

.contact__info {
  grid-area: info;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  align-content: start;
}

.contact__card {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  padding: 1.5rem 1.25rem;
  background: var(--white);
  border: 1px solid rgba(232, 163, 23, 0.18);
  border-radius: 16px;
  box-shadow: 0 6px 24px rgba(26, 15, 8, 0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.contact__card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(26, 15, 8, 0.1);
  border-color: rgba(232, 163, 23, 0.35);
}

.contact__card-icon {
  width: 46px;
  height: 46px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: rgba(232, 163, 23, 0.12);
  color: var(--honey-deep);
  margin-bottom: 0.3rem;
}

.contact__card-icon svg {
  width: 22px;
  height: 22px;
}

.contact__card-title {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--brown-dark);
  margin-bottom: 0.15rem;
}

.contact__card p {
  font-size: 0.95rem;
  line-height: 1.55;
  color: var(--brown-mid);
}

.contact__card a {
  color: var(--brown-mid);
  transition: color 0.2s ease;
}

.contact__card a:hover {
  color: var(--honey-gold);
}

.contact__card--whatsapp {
  grid-column: 1 / -1;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.25rem 1.5rem;
  background: linear-gradient(135deg, #e8f5e9 0%, #d4edda 100%);
  border-color: rgba(37, 211, 102, 0.25);
  color: #1b5e20;
}

.contact__card--whatsapp .contact__card-icon {
  background: #25d366;
  color: var(--white);
  flex-shrink: 0;
}

.contact__card--whatsapp .contact__card-title {
  color: #1b5e20;
}

.contact__card--whatsapp p {
  color: #2e7d32;
}

.contact__whatsapp-text {
  flex: 1;
}

.contact__whatsapp-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.5rem;
  background: #25d366;
  color: var(--white);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  border-radius: 999px;
  text-decoration: none;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
  box-shadow: 0 4px 14px rgba(37, 211, 102, 0.35);
  flex-shrink: 0;
}

.contact__whatsapp-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(37, 211, 102, 0.45);
  background: #1ebd56;
}

.contact__form {
  grid-area: form;
  padding: clamp(1.75rem, 3vw, 2.5rem);
  background: var(--white);
  border: 1px solid rgba(26, 15, 8, 0.08);
  border-radius: 20px;
  box-shadow: 0 12px 40px rgba(26, 15, 8, 0.08);
}

.contact__form-head {
  margin-bottom: 1.5rem;
}

.contact__form-title {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  color: var(--brown-dark);
  letter-spacing: 0.03em;
  margin-bottom: 0.4rem;
}

.contact__form-text {
  font-size: 0.95rem;
  color: var(--brown-mid);
  line-height: 1.6;
}

.contact__field {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  margin-bottom: 1.15rem;
}

.contact__field label {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--brown-dark);
  letter-spacing: 0.03em;
}

.contact__field input,
.contact__field select,
.contact__field textarea {
  width: 100%;
  padding: 0.9rem 1.1rem;
  border: 1.5px solid rgba(26, 15, 8, 0.1);
  border-radius: 10px;
  background: var(--cream);
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--brown-dark);
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.contact__field input::placeholder,
.contact__field textarea::placeholder {
  color: var(--brown-mid);
  opacity: 0.7;
}

.contact__field input:focus,
.contact__field select:focus,
.contact__field textarea:focus {
  outline: none;
  border-color: var(--honey-gold);
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(232, 163, 23, 0.12);
}

.contact__field textarea {
  resize: vertical;
  min-height: 120px;
}

.contact__submit {
  width: 100%;
  padding: 1rem 1.5rem;
  border: none;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--honey-gold), var(--honey-amber));
  color: var(--brown-dark);
  font-family: var(--font-body);
  font-size: 0.92rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease, filter 0.3s ease;
  box-shadow: 0 6px 20px rgba(232, 163, 23, 0.3);
  margin-top: 0.25rem;
}

.contact__submit:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 28px rgba(232, 163, 23, 0.45);
  filter: brightness(1.05);
}

/* Contact responsive */
@media (max-width: 1024px) {
  .contact__inner {
    grid-template-columns: 1fr;
    grid-template-areas:
      "header"
      "info"
      "form";
  }

  .contact__info {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 640px) {
  .contact__info {
    grid-template-columns: 1fr;
  }

  .contact__card--whatsapp {
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
  }

  .contact__whatsapp-btn {
    width: 100%;
  }
}

/* --- Mobile / Tablet: same desktop layout, scaled (Chai Masthi style) --- */
@media (max-width: 1024px) {
  :root {
    --header-h: 68px;
    --header-offset: calc(var(--header-h) + 0.75rem);
  }

  .header {
    padding: 0;
  }

  .header::before {
    content: '';
    display: block;
    height: 4px;
    background: linear-gradient(90deg, var(--honey-gold), var(--honey-amber));
  }

  .site-shell {
    padding-top: calc(var(--header-h) + 4px);
  }

  .hero {
    /* svh accounts for mobile browser chrome; vh is the fallback */
    height: calc(100vh - var(--header-h) - 4px);
    min-height: calc(100vh - var(--header-h) - 4px);
    max-height: calc(100vh - var(--header-h) - 4px);
    height: calc(100svh - var(--header-h) - 4px);
    min-height: calc(100svh - var(--header-h) - 4px);
    max-height: calc(100svh - var(--header-h) - 4px);
  }

  .hero__bg {
    background: url('images/hero/hero-tablet-1280x960.webp') center center / cover no-repeat;
  }

  .hero__bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(20, 10, 3, 0.50);
  }

  .hero__slider {
    min-height: 100%;
    height: 100%;
    padding-top: 0;
  }

  /* Clean up Hero Typography for Mobile */
  .hero__welcome {
    font-size: 0.85rem;
    letter-spacing: 0.15em;
    margin-bottom: 0.5rem;
  }

  .hero__title {
    font-size: clamp(1.75rem, 8vw, 2.25rem);
    text-align: center;
    line-height: 1.05;
    margin-bottom: 1.25rem;
  }

  .hero__subtitle {
    display: none; /* Hide secondary subtitle on mobile to drastically reduce clutter */
  }

  .hero__btn {
    margin-bottom: 0;
  }

  /* Header is offset by .site-shell on mobile, so the slide only needs a
     small top padding (not the full header offset) to stay centered. */
  .hero__slide {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: calc(var(--header-offset) + 1rem) 1.25rem 3.5rem; /* Prevent header overlap */
  }

  .hero__content {
    display: flex;
    flex-direction: column;
    align-items: center; /* Center the text and button */
    z-index: 2;
  }

  /* Show the floating elements below the text on mobile */
  .hero__media {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 2rem;
    height: auto; /* Fixes the 100% height bug pushing text out */
    flex: 0 0 auto;
    z-index: 1;
    pointer-events: none;
    padding: 0;
  }

  .hero__main-img {
    max-height: 40vh; /* Ensure it fits nicely with the text */
    width: auto;
    max-width: 80vw;
    opacity: 1;
    filter: drop-shadow(0 12px 32px rgba(26, 15, 8, 0.4));
  }
  
  /* Hide side thumbnails on mobile to prevent clutter */
  .hero__thumbs {
    display: none;
  }

  /* About: normal stacked mobile layout */
  .about__inner {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .about__visual {
    min-height: clamp(280px, 50vw, 400px);
  }

  .about__img-wrap {
    max-width: min(340px, 80vw);
  }

  .video-showcase__card {
    flex: 0 0 calc((100% - 3 * 12px) / 4);
    min-width: calc((100% - 3 * 12px) / 4);
    border-radius: 20px;
  }

  .video-showcase__arrow {
    width: 38px;
    height: 38px;
    transform: translateY(-50%);
  }

  .video-showcase__arrow:hover:not(:disabled) {
    transform: translateY(-50%) scale(1.08);
  }

  .video-showcase__arrow:disabled {
    transform: translateY(-50%);
  }

  /* Improved tablet layout for grids */
  .testimonials__grid {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 1.25rem;
    padding-bottom: 1rem;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  .testimonials__grid::-webkit-scrollbar {
    display: none;
  }
  .testimonials__card {
    flex: 0 0 calc(50% - 0.6rem);
    min-width: 300px;
    scroll-snap-align: start;
  }

  .popular-items__grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .popular-items__cta-row {
    flex-direction: column;
    text-align: center;
    gap: 1rem;
    padding: 1.5rem;
  }
}

@media (max-width: 1024px) and (max-height: 520px) {
  .hero__slide {
    padding: 0.75rem 1.25rem 1.25rem;
  }

  .hero__welcome,
  .hero__media {
    display: none;
  }

  .hero__title {
    font-size: clamp(1.35rem, 7vw, 2rem);
    margin-bottom: 0.75rem;
  }

  .hero__btn {
    padding: 0.7rem 1.4rem;
    font-size: 0.78rem;
  }
}

@media (max-width: 768px) {
  .about__cards {
    grid-template-columns: 1fr;
    gap: 1.25rem;
    margin-bottom: 1.75rem;
  }

  .video-showcase__card {
    flex: 0 0 calc((100% - 12px) / 2);
    min-width: calc((100% - 12px) / 2);
  }
}

@media (max-width: 600px) {
  /* Portrait mobile banner */
  .hero__bg {
    background: url('images/hero/hero-mobile-1080x1440.webp') center center / cover no-repeat;
  }

  .site-footer__top {
    grid-template-columns: 1fr;
    gap: 1.75rem;
  }

  .site-footer__bottom {
    flex-direction: column;
    align-items: flex-start;
  }

  .contact__inner {
    grid-template-columns: 1fr;
  }

  .contact__info {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  :root {
    --header-h: 60px;
    --header-offset: calc(var(--header-h) + 0.5rem);
  }

  .header__logo-img {
    width: 52px;
    height: 52px;
  }

  .header__brand-name {
    font-size: 1rem;
  }

  .about {
    padding: 3rem 1.25rem;
  }

  .about__visual {
    min-height: auto;
    padding: 1.5rem 1rem;
  }

  .about__img-wrap {
    max-width: min(300px, 88vw);
  }

  .about__title-wrap {
    flex-wrap: wrap;
  }

  .about__title {
    font-size: clamp(2rem, 10vw, 2.75rem);
  }

  .about__title-bee {
    width: clamp(72px, 19vw, 104px);
    margin-top: -0.2em;
  }

  .about__text {
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
  }

  .about__cards {
    grid-template-columns: 1fr;
    gap: 1rem;
    margin-bottom: 1.5rem;
  }

  .about__card {
    padding: 1.15rem 1rem;
  }

  .about__btn {
    width: 100%;
    justify-content: center;
  }

  .video-showcase {
    padding: 2.75rem 0 2.25rem;
  }

  .video-showcase__inner {
    padding: 0;
  }

  .video-showcase__header {
    padding: 0 1.25rem;
    margin-bottom: 1.35rem;
  }

  .video-showcase__label {
    font-size: 0.78rem;
    letter-spacing: 0.06em;
  }

  .video-showcase__title {
    max-width: 20rem;
    margin: 0 auto;
    font-size: clamp(1.8rem, 8.4vw, 2.2rem);
    line-height: 1.05;
  }

  .video-showcase__carousel {
    display: block;
    padding: 0;
  }

  .video-showcase__arrow {
    display: flex;
    width: 32px;
    height: 32px;
    transform: translateY(-50%);
  }

  .video-showcase__arrow svg {
    width: 16px;
    height: 16px;
  }

  .video-showcase__arrow--prev {
    left: 4px;
  }

  .video-showcase__arrow--next {
    right: 4px;
  }

  .video-showcase__arrow:hover:not(:disabled) {
    transform: translateY(-50%) scale(1.05);
  }

  .video-showcase__arrow:disabled {
    transform: translateY(-50%);
  }

  .video-showcase__track {
    width: 100%;
    margin: 0;
    padding: 0.5rem 8px 2rem;
    gap: 8px;
    scroll-padding-inline: 8px;
  }

  .video-showcase__card {
    flex: 0 0 calc((100% - 24px) / 2);
    min-width: calc((100% - 24px) / 2);
    border-radius: 20px;
    box-shadow: 0 8px 24px rgba(26, 15, 8, 0.12);
  }

  .video-showcase__shop {
    display: none;
  }

  .video-showcase__mute {
    display: none;
  }

  .video-showcase__play-btn {
    width: 26px;
    height: 26px;
  }

  .process-banner {
    padding: 0;
  }

  /* Gallery & Product cards: 2 columns on mobile */
  .gallery__grid,
  .products__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.85rem;
  }

  .products__desc {
    display: none; /* Hide descriptions to keep cards compact */
  }
  
  .products__name,
  .gallery__card-title {
    font-size: 0.85rem;
  }
  
  .products__body,
  .gallery__card-body {
    padding: 0.75rem 0.85rem 0.85rem;
  }

  .products__badge {
    font-size: 0.58rem;
    padding: 0.2rem 0.5rem;
  }

  .contact__inner {
    grid-template-columns: 1fr;
  }

  .popular-items__layout {
    grid-template-columns: 1fr;
  }

  .popular-items__cta {
    min-height: auto;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 1.25rem;
    padding: 1.5rem 1.25rem;
  }

  .popular-items__grid {
    grid-template-columns: 1fr 1fr;
  }

  .testimonials__grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .testimonials {
    padding: 3rem 1.25rem;
  }

  .testimonials__drip {
    opacity: 0.55;
  }

  .testimonials__title-wrap {
    flex-wrap: wrap;
  }

  .site-footer__top {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }

  .site-footer__brand {
    grid-column: 1 / -1;
  }
}

/* --- WhatsApp Floating Widget --- */
.whatsapp-widget {
  position: fixed;
  bottom: 1.75rem;
  right: 1.75rem;
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  background: #25D366;
  color: var(--white);
  border-radius: 50%;
  box-shadow: 0 6px 24px rgba(37, 211, 102, 0.45);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  text-decoration: none;
}

.whatsapp-widget:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 32px rgba(37, 211, 102, 0.6);
  color: var(--white);
}

.whatsapp-widget__icon {
  width: 32px;
  height: 32px;
  flex-shrink: 0;
}

@media (max-width: 480px) {
  .whatsapp-widget {
    width: 50px;
    height: 50px;
    bottom: 1.25rem;
    right: 1.25rem;
  }

  .whatsapp-widget__icon {
    width: 28px;
    height: 28px;
  }
}

/* Fullscreen Mobile Video Modal Overlay */
.video-modal {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.95);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.video-modal.is-active {
  opacity: 1;
  pointer-events: auto;
  visibility: visible;
}

.video-modal__close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  background: none;
  border: none;
  color: var(--white);
  font-size: 2.5rem;
  cursor: pointer;
  z-index: 1010;
  line-height: 1;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s ease, opacity 0.2s ease;
  opacity: 0.85;
}

.video-modal__close:hover {
  transform: scale(1.1);
  opacity: 1;
}

.video-modal__content {
  width: 100%;
  height: 100%;
  max-width: 480px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
}

.video-modal__video {
  width: 100%;
  height: auto;
  max-height: 85vh;
  border-radius: 20px;
  box-shadow: 0 10px 45px rgba(0, 0, 0, 0.6);
  background: #000;
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .hero__slide--1 {
    opacity: 1;
    visibility: visible;
    transform: none;
    position: relative;
  }

  .hero__slide--2,
  .hero__slide--3 {
    display: none;
  }
}

/* ==========================================================================
   BENTO BOX ABOUT SECTION
   ========================================================================== */

.bento-about {
  padding: 4rem 0;
  background-color: var(--white);
  overflow: hidden;
  position: relative;
}

.bento-about--page {
  padding-top: 4rem;
}

.bento-grid {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: minmax(150px, auto);
  gap: 1.5rem;
  /* 
    Desktop Layout Areas:
    Story takes 2 cols, 2 rows
    Visual takes 2 cols, 4 rows
    Mission takes 2 cols, 1 row (stacked)
    Vision takes 2 cols, 1 row (stacked)
  */
  grid-template-areas:
    "story story visual visual"
    "story story  visual visual"
    "mission  mission vision vision"
    "mission mission vision  vision ";
}

/* Homepage variant: story + visual only (Mission/Vision stay on About page) */
.bento-grid--home {
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: auto;
  grid-template-areas:
    " visual story";
  align-items: stretch;
  gap: 1.5rem;
}

.bento-tile {
  border-radius: 24px;
  padding: 2rem;
  position: relative;
  overflow: hidden;
  transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1), box-shadow 0.4s ease;
}

.bento-tile:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

/* --- Story Tile --- */
.bento-tile--story {
  grid-area: story;
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(ellipse 90% 70% at 100% 0%, rgba(232, 163, 23, 0.1) 0%, transparent 55%),
    radial-gradient(ellipse 70% 60% at 0% 100%, rgba(255, 214, 120, 0.12) 0%, transparent 55%),
    var(--cream-panel);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  box-shadow: inset 0 0 0 1px rgba(0,0,0,0.03);
  padding: 2rem;
}


.bento-label {
  font-family: var(--font-secondary);
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--honey-gold);
  margin-bottom: 1rem;
}

.bento-title-wrap {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
}

.bento-title {
  font-family: var(--font-primary);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 700;
  line-height: 1.1;
  color: var(--brown-dark);
  display: inline-block;
  padding-bottom: 0.1em;
  background: linear-gradient(90deg, var(--honey-gold), var(--honey-amber)) no-repeat left bottom / 100% 0.18em;
  border-radius: 4px;
}

.bento-title-bee {
  width: 48px;
  height: 48px;
  object-fit: contain;
  animation: float 4s ease-in-out infinite;
}

.bento-text {
  font-family: var(--font-secondary);
  font-size: 0.95rem;
  line-height: 1.5;
  color: var(--brown-light);
  margin-bottom: 0.5rem;
  max-width: 480px;
}

.bento-kicker {
  font-family: var(--font-secondary);
  font-size: clamp(1rem, 1.8vw, 1.2rem);
  font-weight: 800;
  line-height: 1.35;
  color: var(--brown-dark);
  margin: -0.25rem 0 0.75rem;
  max-width: 520px;
}

.bento-text--compact {
  margin-bottom: 1rem;
}

.bento-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 2rem;
  background-color: var(--brown-dark);
  color: var(--white);
  border-radius: 100px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.bento-btn:hover {
  background-color: var(--honey-gold);
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(222, 165, 20, 0.3);
}

/* Story tile extras */
.bento-benefits {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem 0.75rem;
  margin-bottom: 1rem;
}

.bento-benefit {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--brown-dark);
  background: var(--white);
  padding: 0.5rem 0.85rem;
  border-radius: 999px;
  box-shadow: 0 2px 8px rgba(26, 15, 8, 0.06);
  border: 1px solid rgba(232, 163, 23, 0.15);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.bento-benefit:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(232, 163, 23, 0.15);
  border-color: rgba(232, 163, 23, 0.35);
}

.bento-benefit-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--honey-gold);
  box-shadow: 0 0 0 3px rgba(232, 163, 23, 0.15);
  flex-shrink: 0;
}

/* --- Visual Tile --- */
.bento-tile--visual {
  grid-area: visual;
  background: transparent;
  box-shadow: none;
  border-radius: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  overflow: hidden;
}

.bento-img {
  position: relative;
  z-index: 1;
  width: auto;
  height: auto;
  max-width: 115%;
  max-height: 100%;
  object-fit: contain;
  transition: transform 0.5s ease;
}

.bento-tile--visual:hover .bento-img {
  transform: scale(1.03);
}

.bento-visual-badge {
  position: absolute;
  top: 1rem;
  right: 0.5rem;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.15rem;
  padding: 0.75rem 1rem;
  background: var(--white);
  border-radius: 14px;
  box-shadow: 0 10px 28px rgba(26, 15, 8, 0.14);
  border: 1px solid rgba(232, 163, 23, 0.2);
  text-align: center;
  min-width: 120px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.bento-tile--visual:hover .bento-visual-badge {
  transform: translateY(-4px);
  box-shadow: 0 14px 36px rgba(26, 15, 8, 0.18);
}

.bento-visual-badge__text {
  font-size: 0.9rem;
  font-weight: 800;
  color: var(--honey-deep);
  letter-spacing: 0.03em;
}

.bento-visual-badge__sub {
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--brown-mid);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

/* --- Mission Tile --- */
/*.bento-tile--mission {
  grid-area: mission;
  background-color: var(--brown-dark);
  color: var(--white);
  display: flex;
  flex-direction: column;
  justify-content: center;
}*/
.bento-tile--mission {
    grid-area: mission;
    position: relative;
    overflow: hidden;
    color: var(--white);
    display: flex;
    flex-direction: column;
    justify-content: center;

    /* Glossy premium background */
    background:
        radial-gradient(circle at 20% 15%, rgba(255,255,255,.18), transparent 35%),
        radial-gradient(circle at 80% 85%, rgba(255,190,90,.12), transparent 40%),
        linear-gradient(145deg,
            #5d3a14 0%,
            #4a2c0e 20%,
            #2d1706 55%,
            #1b0d03 100%);
    border: 1px solid rgba(255,255,255,.08);
    border-radius: 28px;
    box-shadow:
        inset 0 1px 0 rgba(255,255,255,.15),
        inset 0 -20px 40px rgba(0,0,0,.18),
        0 18px 45px rgba(43,23,6,.25);
}

.bento-card-title {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-family: var(--font-primary);
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.bento-card-title svg {
  width: 28px;
  height: 28px;
  color: var(--honey-gold);
}

.bento-card-text {
  font-size: 0.95rem;
  line-height: 1.6;
  opacity: 0.9;
}

/* --- Vision Tile --- */
.bento-tile--vision {
  grid-area: vision;
  background: linear-gradient(135deg, var(--honey-gold), var(--honey-amber));
  color: var(--brown-dark);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.bento-tile--vision .bento-card-title svg {
  color: var(--brown-dark);
}

.bento-tile--vision .bento-card-text {
  color: rgba(62, 39, 35, 0.9);
}


/* --- Flavors Section --- */
.flavors-section {
  position: relative;
  z-index: 5;
  background-color: var(--cream);
  overflow: visible;
  padding: clamp(1.25rem, 2.5vw, 2rem) 0;
  scroll-margin-top: var(--header-offset);
}

.flavors-section__wave-top {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 40px;
  transform: translateY(-98%);
  z-index: 10;
  pointer-events: none;
}

.flavors-section__wave-top svg {
  width: 100%;
  height: 100%;
  display: block;
}

.flavors-section__wave-bottom {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 40px;
  transform: translateY(98%);
  z-index: 10;
  pointer-events: none;
}

.flavors-section__wave-bottom svg {
  width: 100%;
  height: 100%;
  display: block;
}

.flavors-section__wave-accent {
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 100%;
  height: 14px;
  z-index: 9;
  pointer-events: none;
  opacity: 0.85;
}

.flavors-section__wave-accent svg {
  width: 100%;
  height: 100%;
  display: block;
}

/* Background Decorations */
.flavors-section__bg-decor {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  overflow: hidden;
}

.flavors-section__flower {
  position: absolute;
  width: clamp(180px, 22vw, 300px);
  height: clamp(180px, 22vw, 300px);
  color: rgba(232, 163, 23, 0.06);
}

.flavors-section__flower--left {
  left: -80px;
  top: 15%;
  transform: rotate(-15deg);
}

.flavors-section__flower--right {
  right: -80px;
  bottom: 15%;
  transform: rotate(35deg);
}

.flavors-section__hex-decor {
  position: absolute;
  width: 36px;
  height: 36px;
  background-color: var(--honey-amber);
  opacity: 0.12;
  border-radius: 50%;
}

.flavors-section__hex-decor--left {
  left: 10%;
  bottom: 12%;
  transform: rotate(15deg);
}

.flavors-section__hex-decor--right {
  right: 12%;
  top: 10%;
  transform: rotate(-25deg);
}

/* Content Container */
.flavors-section__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
  position: relative;
  z-index: 2;
}

.flavors-section__header {
  text-align: center;
  margin-bottom: clamp(1rem, 2vw, 1.75rem);
}

.flavors-section__label {
  font-family: var(--font-cursive);
  font-size: clamp(1.4rem, 2.8vw, 2rem);
  color: var(--honey-gold);
  margin-bottom: 1.1rem;
  line-height: 1.2;
}

.flavors-section__title {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: clamp(1.4rem, 0.5vw, 2rem);
  color: var(--brown-dark);
  letter-spacing: 0.01em;
  line-height: 1.2;
}

/* Gallery & Carousel */
.flavors-section__carousel {
  position: relative;
  width: 100%;
}

.flavors-section__track-wrapper {
  /*overflow: hidden;
  padding: 1rem 0;*/
}

.flavors-section__track {
  display: flex;
  gap: clamp(1rem, 2vw, 1.75rem);
  will-change: transform;
}

/* Card Styling */
.flavors-section__card {
  flex: 0 0 calc(25% - (3 * clamp(1rem, 2vw, 1.75rem)) / 4);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.flavors-section__hex-wrapper {
  width: 100%;
  max-width: 220px;
  aspect-ratio: 1;
  position: relative;
  transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.flavors-section__hex-shape {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background-color: var(--white);
  overflow: hidden;
  border: 4px solid var(--white);
  box-shadow: 0 8px 24px rgba(26, 15, 8, 0.08);
  transition: box-shadow 0.4s ease, border-color 0.4s ease;
}

.flavors-section__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 25%;
  transition: transform 0.6s ease;
}

.flavors-section__card-title {
  margin-top: 1rem;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--brown-dark);
  letter-spacing: 0.01em;
  transition: color 0.3s ease;
}

/* Interactive States */
.flavors-section__card:hover .flavors-section__hex-wrapper {
  transform: translateY(-6px) scale(1.02);
}

.flavors-section__card:hover .flavors-section__hex-shape {
  box-shadow: 0 14px 28px rgba(232, 163, 23, 0.25);
  border-color: rgba(232, 163, 23, 0.2);
}

.flavors-section__card:hover .flavors-section__img {
  transform: scale(1.04);
}

.flavors-section__card:hover .flavors-section__card-title {
  color: var(--honey-gold);
}


/* Responsive Grid / Carousel Layouts */
@media (min-width: 1024px) {
  .flavors-section__carousel {
    position: relative;
    padding: 0 4rem;
  }
  
  .flavors-section__track-wrapper {
    width: calc(100% + 6rem);
    margin-left: -3rem;
    margin-right: -3rem;
  }
}

@media (max-width: 1023px) {
  .flavors-section__card {
    flex: 0 0 calc(50% - clamp(1rem, 2vw, 1.75rem) / 2);
  }
  
  .flavors-section__track-wrapper {
    width: calc(100% + 3rem);
    margin-left: -1.5rem;
    margin-right: -1.5rem;
  }
}

@media (max-width: 580px) {
  .flavors-section__card {
    flex: 0 0 100%;
  }
  
  .flavors-section__track-wrapper {
    width: calc(100% + 2rem);
    margin-left: -1rem;
    margin-right: -1rem;
  }
}

/* --- Product Detail Page --- */
.product-detail {
  background: var(--cream);
  padding: calc(var(--header-offset) + 2rem) clamp(1rem, 3vw, 2.5rem) clamp(4rem, 7vw, 6rem);
}

.product-detail__inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
}

.product-detail__media {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  background: transparent;
  box-shadow: 0 8px 32px rgba(26, 15, 8, 0.08);
}

.product-detail__media img {
  width: 100%;
  height: auto;
  aspect-ratio: 1 / 1.05;
  object-fit: cover;
  display: block;
}

.product-detail__info {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  padding-top: 1rem;
}

.product-detail__name {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.5rem);
  color: var(--brown-dark);
  line-height: 1.05;
  letter-spacing: 0.04em;
}

.product-detail__rating {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--honey-gold);
  font-weight: 800;
  font-size: 1rem;
}

.product-detail__price {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--brown-dark);
}

.product-detail__old-price {
  text-decoration: line-through;
  color: var(--brown-mid);
  font-size: 1.1rem;
  font-weight: 500;
  opacity: 0.75;
}

.product-detail__desc {
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--brown-mid);
  max-width: 540px;
}

.product-detail__features {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  list-style: none;
  padding: 0;
}

.product-detail__features li {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.95rem;
  color: var(--brown-text);
}

.product-detail__features li::before {
  content: "✓";
  display: flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--honey-gold);
  color: var(--brown-dark);
  font-size: 0.75rem;
  font-weight: 800;
  flex-shrink: 0;
}

.product-detail__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 0.5rem;
}

.product-detail__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 2.5rem;
  background: var(--brown-dark);
  color: var(--white);
  border-radius: 999px;
  font-weight: 700;
  letter-spacing: 0.04em;
  transition: background 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
  box-shadow: 0 4px 14px rgba(26, 15, 8, 0.12);
}

.product-detail__btn:hover {
  background: var(--honey-gold);
  color: var(--brown-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(232, 163, 23, 0.35);
}

.product-detail__back {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 1.5rem;
  color: var(--honey-deep);
  font-weight: 700;
  border-radius: 999px;
  transition: background 0.2s ease, color 0.2s ease;
}

.product-detail__back:hover {
  background: rgba(232, 163, 23, 0.12);
  color: var(--brown-dark);
}

@media (max-width: 768px) {
  .product-detail__inner {
    grid-template-columns: 1fr;
  }

  .product-detail__info {
    padding-top: 0;
  }
}

/* --- Responsive Adjustments --- */
@media (max-width: 1024px) {
  .bento-grid {
    grid-template-columns: repeat(3, 1fr);
    grid-template-areas:
      "story story"
      "visual visual"
      "mission mission"
      "vision vision";
    grid-auto-rows: auto;
  }

  .bento-grid--home {
    grid-template-columns: 1fr;
    grid-template-areas:
      "visual"
      "story";
  }
  
  .bento-tile--visual {
    min-height: 400px;
  }
}

@media (max-width: 768px) {
  .bento-about {
    padding: 2rem 0;
  }

  .bento-grid {
    grid-template-columns: 1fr;
    grid-template-areas:
      "story"
      "visual"
      "mission"
      "vision";
    gap: 1rem;
  }

  .bento-grid--home {
    grid-template-columns: 1fr;
    grid-template-areas:
      "visual"
      "story";
  }

  .bento-tile {
    padding: 2rem;
    border-radius: 24px;
  }

  .bento-tile--visual {
    min-height: 300px;
  }

  .bento-title {
    font-size: 2.25rem;
  }

  .bento-benefits {
    gap: 0.6rem 0.75rem;
  }

  .bento-benefit {
    font-size: 0.85rem;
    padding: 0.45rem 0.7rem;
  }

  .bento-visual-badge {
    /*bottom: 1.25rem;*/
    right: 1rem;
    padding: 0.6rem 0.85rem;
    min-width: 100px;
  }

  .bento-visual-badge__text {
    font-size: 0.82rem;
  }

}
