/* ==========================================================================
   SHA BHABOOTMAL SONS — SBS Dry Fruits
   Design tokens: Ivory / Champagne Gold / Soft Beige
   Display: Fraunces  |  Body: Manrope
   ========================================================================== */

:root {
  /* -- surfaces -- */
  --ivory: #FBF6EC;
  --ivory-deep: #F5EEDD;
  --white: #FFFFFF;
  --beige: #EFE4CB;
  --beige-deep: #E6D7B4;

  /* -- gold family -- */
  --gold: #B4863A;
  --gold-bright: #C9A046;
  --gold-pale: #E3CE9B;
  --gold-deep: #7C5A24;
  --gold-deepest: #5C3D1F;
  --gold-line: rgba(124, 90, 36, 0.28);
  --gold-line-soft: rgba(124, 90, 36, 0.14);
  --gold-line-rich: rgba(92, 61, 31, 0.32);

  /* -- shadows (luxury depth) -- */
  --shadow-light: 0 4px 12px rgba(43, 32, 21, 0.08);
  --shadow-medium: 0 12px 32px rgba(43, 32, 21, 0.16);
  --shadow-deep: 0 24px 48px rgba(43, 32, 21, 0.24);
  --shadow-inner: inset 0 2px 8px rgba(43, 32, 21, 0.06);

  /* -- ink & signature -- */
  --ink: #2B2015;
  --ink-soft: #5A4A38;
  --ink-faint: #8A7A64;
  --seal: #7C2E23;
  --seal-deep: #5E211A;

  /* -- type -- */
  --f-display: "Fraunces", "Iowan Old Style", Georgia, serif;
  /* Fraunces' rarely-used WONK + SOFT axes — the quirky swashed 'g', softened
     terminals and optical sizing give the headings a voice that isn't the
     stock serif every other site ships with */
  --f-display-vars: "SOFT" 14, "WONK" 1;
  --f-body: "Manrope", -apple-system, "Segoe UI", sans-serif;

  /* -- rhythm -- */
  --edge: clamp(1.5rem, 5vw, 5rem);
  --section-pad: clamp(2rem, 4vw, 4rem);
  --radius: 2px;
  --ease: cubic-bezier(.16, .8, .24, 1);
  --ease-soft: cubic-bezier(.4, 0, .2, 1);
}

/* ---------------------------------- reset --------------------------------- */
*,
*::before,
*::after {
  box-sizing: border-box;
}

/* transparent WebP/JPEG-switching wrapper — the actual img keeps its own
   layout classes and CSS, this just removes <picture> from the box tree */
picture {
  display: contents;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  background: var(--ivory);
  color: var(--ink);
  font-family: var(--f-body);
  font-size: 16px;
  line-height: 1.75;
  letter-spacing: 0.3px;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img,
svg {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

h1,
h2,
h3,
h4,
p,
figure {
  margin: 0;
}

button {
  font-family: inherit;
  cursor: pointer;
}

input,
textarea,
select {
  font-family: inherit;
  font-size: 1rem;
}

::selection {
  background: var(--gold-pale);
  color: var(--seal-deep);
}

:focus-visible {
  outline: 2px solid var(--seal);
  outline-offset: 3px;
}

@media (prefers-reduced-motion: reduce) {

  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }

  .timeline-fill--horizontal {
    width: 100% !important;
  }
}

/* ===== PERFORMANCE OPTIMIZATION ===== */
/* GPU acceleration for smooth animations */
* {
  will-change: auto;
}

.reveal,
[class*="animate"],
button,
a:hover,
input:focus {
  will-change: transform, opacity;
  transform: translateZ(0);
  backface-visibility: hidden;
  perspective: 1000px;
}

/* Optimize heavy animations */
.preloader-seal {
  will-change: transform, opacity;
}

/* Reduce shadow complexity for performance */
@supports (filter: drop-shadow(0 0 0 transparent)) {
  .site-header.scrolled .bar {
    filter: drop-shadow(0 12px 30px rgba(43, 32, 21, 0.15));
    box-shadow: none;
  }
}

/* Optimize scrolling performance */
html {
  scroll-behavior: smooth;
  scroll-snap-type: y proximity;
}

/* body {} */

/* Image loading optimization */
img[loading="lazy"] {
  content-visibility: auto;
}

/* Form performance */
input,
textarea,
select {
  contain: layout style;
}

/* Throttle expensive properties */
/* .site-header {} */

/* Disable transitions on mobile for better performance */
@media (max-width: 768px) {
  button svg {
    transition: none;
  }

  .site-header.scrolled .bar {
    transition: background 0.3s;
  }

  /* Fix header overflow on mobile */
  .site-header {
    padding-left: var(--edge);
    padding-right: var(--edge);
    overflow: hidden;
  }

  .site-header .bar {
    max-width: 100%;
    border-radius: 12px;
  }
}

/* subtle paper/marble grain applied globally */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 2000;
  opacity: 0.035;
  mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='180'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* ------------------------------- typography -------------------------------- */
.eyebrow {
  font-family: 'Playfair Display', 'EB Garamond', 'Crimson Text', serif;
  font-size: 2.5rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-deep);
  display: inline-flex;
  align-items: center;
  gap: 0.65em;
  font-style: italic;
}

.eyebrow::before {
  content: "";
  width: 26px;
  height: 1px;
  background: transparent;
}

.section-head {
  max-width: 46rem;
  margin-bottom: clamp(2.5rem, 5vw, 4.5rem);
}

.section-head.center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.section-title {
  font-family: var(--f-display);
  font-weight: 600;
  font-style: normal;
  font-size: clamp(2.1rem, 4vw, 3.4rem);
  line-height: 1.12;
  color: var(--ink);
  margin-top: 0.6em;
  letter-spacing: -0.01em;
  text-shadow: 0 2px 4px rgba(255, 255, 255, 0.4);
}

.section-title em {
  font-style: italic;
  font-weight: 500;
  color: var(--gold-deep);
}

.section-sub {
  margin-top: 1.1rem;
  font-size: 1.02rem;
  color: var(--ink-soft);
  max-width: 38rem;
  line-height: 1.7;
}

.section-head.center .section-sub {
  margin-left: auto;
  margin-right: auto;
}

.rule-gold {
  width: 64px;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), transparent);
}

.center .rule-gold {
  margin: 0 auto;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

/* ----------------------------------- layout -------------------------------- */
.wrap {
  max-width: 1120px;
  margin-inline: auto;
  padding-inline: clamp(1.5rem, 5vw, 2.5rem);
}

section {
  position: relative;
}

.band {
  padding-block: var(--section-pad);
}

/* Product page section spacing optimization */
.pp-section.band {
  padding-block: clamp(1.5rem, 3vw, 2.5rem);
}

/* Tablet: Improve padding for text alignment */
@media (max-width: 1024px) and (min-width: 769px) {
  .wrap {
    max-width: 1000px;
    padding-inline: clamp(1.2rem, 5vw, 2.2rem);
  }

  /* Tablet spacing optimization */
  .band {
    margin-bottom: 0 !important;
    margin-top: 0 !important;
    padding-block: 1.5rem !important;
  }

  .quick-grid {
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 1rem !important;
  }

  .quick-tile {
    gap: 0.875rem !important;
  }

  .quick-tile-media {
    aspect-ratio: 4/5 !important;
  }

  /* Tablet button sizing - touch targets 48px minimum */
  .btn,
  button,
  .cta-button,
  [role="button"],
  .quick-tile,
  .p-card {
    min-height: 48px !important;
  }

  .quick-tile-name {
    font-size: 0.9rem !important;
    font-weight: 600 !important;
  }
}

/* Mobile: Reduce section padding - SIMPLE approach */
@media (max-width: 768px) {
  .band {
    padding-block: 1rem !important;
    margin-bottom: 0 !important;
    margin-top: 0 !important;
  }

  .band:first-of-type {
    padding-top: 0.5rem !important;
    padding-bottom: 1rem !important;
    margin-top: 0 !important;
  }

  article>.band:first-child {
    margin-top: 0 !important;
  }

  /* Hero section: show carousel but not excessive - 180px is compact but shows products */
  section#home {
    height: 180px !important;
    min-height: 180px !important;
    margin-top: 0 !important;
    margin-bottom: 1rem !important;
    padding: 0 !important;
    overflow: hidden !important;
  }


  /* Compact "Shop by Category" section on mobile */
  .quick-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 12px !important;
  }

  .quick-tile {
    height: auto !important;
    max-height: none !important;
    min-height: 0 !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    text-align: center !important;
    padding: 8px 4px !important;
  }

  .quick-tile-media {
    height: 85px !important;
    max-height: 85px !important;
    margin-bottom: 6px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    flex-shrink: 0 !important;
    background: transparent !important;
  }

  .quick-tile-media img {
    max-height: 70px !important;
    max-width: 70px !important;
    width: auto !important;
    height: auto !important;
    object-fit: contain !important;
    display: block !important;
    margin: 0 auto !important;
  }

  /* Product name on mobile - fully visible, crisp and legible */
  .quick-tile-name {
    font-size: 13px !important;
    font-weight: 700 !important;
    letter-spacing: 1.2px !important;
    text-transform: uppercase !important;
    color: #2D231F !important;
    line-height: 1.4 !important;
    margin-top: 4px !important;
    margin-bottom: 4px !important;
    height: auto !important;
    min-height: fit-content !important;
    max-height: none !important;
    flex-shrink: 0 !important;
    overflow: visible !important;
    white-space: normal !important;
    display: block !important;
    text-align: center !important;
    width: 100% !important;
    padding: 0 4px !important;
  }

  .quick-tile-bio {
    font-size: 11px !important;
    line-height: 1.35 !important;
    color: #8C7E75 !important;
    text-align: center !important;
    max-width: 170px !important;
    margin: 0 auto !important;
    flex-shrink: 0 !important;
    height: auto !important;
    overflow: visible !important;
  }

  /* Reduce excessive whitespace in Quality Journey section on mobile */
  .quality-journey {
    padding-top: 0.75rem !important;
    padding-bottom: 0.75rem !important;
  }

  .quality-journey .section-head {
    margin-bottom: 1.2rem !important;
    padding-top: 0 !important;
  }

  .quality-journey .timeline--horizontal .t-item {
    padding-block: 0.8rem !important;
    margin-bottom: 0.5rem !important;
  }
}

/* Extra small mobile (440px and below) - Hero carousel optimization */
@media (max-width: 440px) {

  .hero-carousel-wrapper,
  .carousel-container {
    height: auto !important;
    min-height: 180px !important;
  }

  .carousel-slides-wrapper {
    height: auto !important;
    min-height: 180px !important;
  }

  .carousel-slide {
    height: auto !important;
    min-height: 180px !important;
  }
}

.band--beige {
  background: linear-gradient(135deg, var(--beige) 0%, var(--beige-deep) 100%);
  position: relative;
}

.band--beige::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 120% 60% at 80% 20%, rgba(201, 160, 70, 0.08), transparent);
  pointer-events: none;
}

.band--ivory-deep {
  background: linear-gradient(155deg, var(--ivory-deep) 0%, var(--ivory) 100%);
  position: relative;
}

.band--ivory-deep::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 100% 50% at 30% 80%, rgba(124, 90, 36, 0.06), transparent);
  pointer-events: none;
}

/* Scroll-triggered reveal animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(24px) translateZ(0);
  }

  to {
    opacity: 1;
    transform: translateY(0) translateZ(0);
  }
}

@keyframes fadeInScale {
  from {
    opacity: 0;
    transform: scale(0.94) translateZ(0);
  }

  to {
    opacity: 1;
    transform: scale(1) translateZ(0);
  }
}

.reveal {
  opacity: 0;
  transform: translateY(24px) translateZ(0);
  transition: opacity 1.2s var(--ease), transform 1.2s var(--ease);
  transition-delay: calc(var(--i, 0) * 100ms);
  will-change: opacity, transform;
}

.reveal.in {
  opacity: 1;
  transform: translateY(0) translateZ(0);
  animation: fadeInUp 1.2s var(--ease) forwards;
}

/* Variant: scale animation for product cards */
.reveal.card {
  transform: scale(0.94) translateZ(0);
}

.reveal.card.in {
  animation: fadeInScale 1.2s var(--ease) forwards;
}

/* buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 1rem 2.1rem;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border: 1px solid transparent;
  transition: all 0.45s var(--ease-soft);
  white-space: nowrap;
}

.btn-gold {
  background: linear-gradient(135deg, var(--gold-bright), var(--gold));
  color: var(--white);
  box-shadow: var(--shadow-deep);
  position: relative;
}

.btn-gold::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 30% 30%, rgba(255, 255, 255, 0.2), transparent);
  pointer-events: none;
  border-radius: inherit;
}

.btn-gold:hover {
  background: linear-gradient(135deg, var(--gold-deepest), var(--gold-deep));
  box-shadow: var(--shadow-deep);
  transform: translateY(-4px);
}

.btn-ghost {
  background: transparent;
  border-color: var(--gold-line);
  color: var(--ink);
}

.btn-ghost:hover {
  border-color: var(--gold-deep);
  background: rgba(124, 90, 36, 0.08);
  color: var(--gold-deep);
  transform: translateY(-2px);
}

.btn svg {
  width: 14px;
  height: 14px;
  transition: transform 0.4s var(--ease-soft);
}

.btn:hover svg {
  transform: translateX(4px);
}

/* seal mark, reused everywhere */
.seal-mark {
  display: block;
}

.seal-mark .ring {
  animation: none;
}

.seal-mark text {
  font-family: var(--f-body);
}

/* =========================================================================
   PRELOADER
   ========================================================================= */
/* ===== GSAP PRELOADER OVERLAY ===== */
.loader-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 9999;
  background: #F9F6EE;
  display: flex;
  align-items: center;
  justify-content: center;
  will-change: transform;
  backface-visibility: hidden;
  transform: translateZ(0);
}

.loader-overlay.hidden {
  pointer-events: none;
  display: none;
}

.loader-container {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  position: relative;
  z-index: 1;
}

.loader-logo {
  width: clamp(120px, 35vw, 280px);
  height: clamp(120px, 35vw, 280px);
  object-fit: contain;
  transform-origin: center;
  opacity: 0;
  transform: scale(1.2) translateZ(0);
  will-change: opacity, transform;
  backface-visibility: hidden;
}

/* Prevent body scroll during preloader */
body.loader-active {
  overflow: hidden !important;
  height: auto;
}

/* Ensure body scrolling is enabled */
body {
  overflow-x: hidden;
  overflow-y: auto;
}

/* Ensure body and main flow from top */
body,
main {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: stretch;
  min-height: auto;
  height: auto;
}

/* Reset header positioning */
.site-header {
  margin-top: 0;
  padding-top: 1rem;
}

/* Mobile header/navbar positioning */
@media screen and (max-width: 768px) {
  .site-header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    margin: 0;
    padding: 12px 16px;
    z-index: 100;
  }

  .site-header .bar {
    border-radius: 8px;
  }
}

/* Fix hero and section spacing */
.hero,
.carousel-container {
  margin-top: 0;
  padding-top: 0;
}

/* Add spacing between sections */
.showcase-mood {
  margin-bottom: 1.5rem;
}

.band {
  margin-bottom: 1rem;
  margin-top: 1rem;
  padding-block: 2rem;
}

/* Logo animation for mobile and tablet on page load */
@media screen and (max-width: 1024px) {
  .loader-logo {
    animation: logoFadeInScale 0.8s var(--ease) forwards;
  }
}

/* Fallback for non-JS */
@media (prefers-reduced-motion: reduce) {
  .loader-overlay {
    animation: none;
  }

  .loader-logo {
    opacity: 1;
    transform: scale(1);
    animation: none;
  }
}

#preloader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: var(--ivory);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.8s var(--ease-soft), visibility 0.8s;
}

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

.preloader-seal {
  width: clamp(180px, 42vw, 300px);
  height: clamp(180px, 42vw, 300px);
  object-fit: contain;
  transform-origin: center;
  animation: stampIn 1.6s var(--ease) infinite;
}

@keyframes stampIn {
  0% {
    transform: scale(0.4);
    opacity: 0;
  }

  35% {
    transform: scale(1.08);
    opacity: 1;
  }

  50% {
    transform: scale(0.97);
  }

  65% {
    transform: scale(1);
  }

  85%,
  100% {
    transform: scale(1);
    opacity: 1;
  }
}

/* Logo entrance animation for mobile/tablet */
@keyframes logoFadeInScale {
  0% {
    opacity: 0;
    transform: scale(0.7) translateZ(0);
  }

  50% {
    opacity: 1;
  }

  100% {
    opacity: 1;
    transform: scale(1) translateZ(0);
  }
}

/* =========================================================================
   HEADER
   ========================================================================= */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 900;
  padding: 1.6rem var(--edge) 0;
  transition: padding 0.5s var(--ease-soft);
}

.site-header .bar {
  max-width: 1560px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(1rem, 2.5vw, 2.4rem);
  padding: 0.85rem 1.4rem 0.85rem 1.1rem;
  border: 1px solid transparent;
  border-radius: 999px;
  transition: all 0.5s var(--ease-soft);
}

.site-header.scrolled {
  padding-top: 0.9rem;
}

.site-header.scrolled .bar {
  background: var(--ivory);
  border-color: var(--gold-line-soft);
  box-shadow: 0 12px 30px -18px rgba(43, 32, 21, 0.35);
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  flex: 0 0 auto;
  min-width: 0;
}

.brand .mark {
  width: 78px;
  height: 78px;
  flex-shrink: 0;
}

.brand .mark path,
.brand .mark circle,
.brand .mark text {
  transition: opacity 0.4s;
}

.logo-img {
  object-fit: contain;
}

.brand-name {
  line-height: 1.2;
  padding-left: 0.85rem;
  border-left: 1px solid var(--gold-line);
}

.brand-name .top {
  display: block;
  font-family: var(--f-display);
  font-weight: 500;
  font-style: italic;
  /* scales with the bar so the wordmark never runs into the nav */
  font-size: clamp(1.25rem, 1.55vw, 1.75rem);
  line-height: 1;
  letter-spacing: 0.01em;
  text-transform: none;
  white-space: nowrap;
  color: var(--ink);
}

.brand-name .bottom {
  display: block;
  font-family: var(--f-body);
  font-size: 0.74rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-deep);
  margin-top: 3px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2.1rem;
}

.nav-links a {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink);
  position: relative;
  padding: 0.3rem 0;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: -2px;
  height: 1px;
  background: currentColor;
  transition: right 0.4s var(--ease-soft);
}

.nav-links a:hover::after {
  right: 0;
}

.header-cta {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.header-cta .btn {
  padding: 0.6rem 1.2rem;
  font-size: 0.75rem;
}

/* products dropdown (desktop) */
.nav-item {
  position: relative;
  display: flex;
  align-items: center;
}

/* Invisible hover bridge to prevent dropdown from closing */
.nav-item::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  height: 1.5rem;
  pointer-events: auto;
  z-index: 9998;
}

.nav-drop-trigger {
  display: flex !important;
  align-items: center;
  gap: 0.35rem;
}

.nav-drop-trigger .chev {
  width: 11px;
  height: 11px;
  transition: transform 0.35s var(--ease-soft);
}

.nav-item:hover .nav-drop-trigger .chev,
.nav-item:focus-within .nav-drop-trigger .chev {
  transform: rotate(180deg);
}

.nav-dropdown {
  /* top starts flush against the trigger (no gap) so the mouse never crosses
     dead space with no hoverable element under it on the way to the panel —
     the 1.1rem visual gap instead lives inside .nav-dropdown-inner's offset,
     which keeps this element's (and therefore .nav-item's) :hover unbroken */
  position: absolute;
  top: calc(100% + 1.5rem);
  left: 50%;
  transform: translateX(-50%);
  width: 460px;
  opacity: 0;
  visibility: hidden;
  pointer-events: auto;
  transition: opacity 0.35s var(--ease-soft), visibility 0.35s;
  z-index: 9999;
}

.nav-dropdown-inner {
  margin-top: 1.1rem;
  background: var(--white);
  border: 1px solid var(--gold-line);
  box-shadow: 0 30px 60px -24px rgba(43, 32, 21, 0.35);
  padding: 1.6rem 1.8rem 1.3rem;
  transform: translateY(8px);
  transition: transform 0.35s var(--ease-soft);
}

.nav-item:hover .nav-dropdown,
.nav-item:focus-within .nav-dropdown {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.nav-item:hover .nav-dropdown .nav-dropdown-inner,
.nav-item:focus-within .nav-dropdown .nav-dropdown-inner {
  transform: translateY(0);
}

.nav-dropdown-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  column-gap: 1.4rem;
  row-gap: 0.85rem;
}

.nav-dropdown-grid a {
  font-family: var(--f-body);
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0;
  text-transform: none;
  color: var(--ink-soft);
  padding: 0;
  transition: color 0.3s;
}

.nav-dropdown-grid a::after {
  display: none;
}

.nav-dropdown-grid a:hover {
  color: var(--gold-deep);
}

.nav-dropdown-viewall {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 1.4rem;
  padding-top: 1.1rem;
  border-top: 1px solid var(--gold-line-soft);
  font-size: 0.72rem !important;
  font-weight: 700 !important;
  letter-spacing: 0.1em !important;
  text-transform: uppercase !important;
  color: var(--gold-deep) !important;
}

.nav-dropdown-viewall svg {
  width: 11px;
  height: 11px;
  transition: transform 0.35s var(--ease-soft);
}

.nav-dropdown-viewall:hover svg {
  transform: translateX(4px);
}

.nav-dropdown-viewall::after {
  display: none;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  background: none;
  border: none;
}

.nav-toggle span,
.nav-toggle span::before,
.nav-toggle span::after {
  content: "";
  display: block;
  width: 20px;
  height: 1.5px;
  background: currentColor;
  position: relative;
  transition: all 0.35s var(--ease-soft);
}

.nav-toggle span::before {
  position: absolute;
  top: -6px;
}

.nav-toggle span::after {
  position: absolute;
  top: 6px;
}

.nav-toggle.open span {
  background: transparent;
}

.nav-toggle.open span::before {
  top: 0;
  transform: rotate(45deg);
}

.nav-toggle.open span::after {
  top: 0;
  transform: rotate(-45deg);
}

.nav-toggle {
  color: var(--ink);
}

/* keep header legible when the mobile drawer (ivory bg) is open over a transparent hero */
.site-header:has(+ .mobile-drawer.open) .brand-name .top {
  color: var(--ink);
}

.site-header:has(+ .mobile-drawer.open) .brand-name .bottom {
  color: var(--gold-deep);
}

.site-header:has(+ .mobile-drawer.open) .nav-toggle {
  color: var(--ink);
}

/* the drawer scrolls its own content behind this fixed header (page scroll is frozen
   while it's open) — force the opaque pill background so scrolled drawer text/links
   never show through, regardless of the main page's own scroll position */
body:has(.mobile-drawer.open) {
  overflow: hidden !important;
  height: 100vh !important;
}

.site-header:has(+ .mobile-drawer.open) .bar {
  background: rgba(251, 246, 236, 0.97);
  backdrop-filter: blur(14px) saturate(1.2);
  -webkit-backdrop-filter: blur(14px) saturate(1.2);
  border-color: var(--gold-line-soft);
  box-shadow: 0 12px 30px -18px rgba(43, 32, 21, 0.35);
}

/* =========================================================================
   HERO
   ========================================================================= */
.hero {
  display: block;
}

.hero-scroll {
  display: none !important;
}

.hero::before {
  /* marble veining + luxury dry fruits pattern */
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.6;
  background-image:
    linear-gradient(115deg, transparent 40%, rgba(124, 90, 36, 0.05) 41%, transparent 43%),
    linear-gradient(65deg, transparent 55%, rgba(124, 90, 36, 0.045) 56%, transparent 58%),
    linear-gradient(20deg, transparent 30%, rgba(201, 160, 70, 0.07) 31%, transparent 33%);
  mix-blend-mode: multiply;
  pointer-events: none;
}

.hero::after {
  /* ambient light sweep — slow drifting highlight for a lit, cinematic feel */
  content: "";
  position: absolute;
  inset: -10%;
  background: radial-gradient(ellipse 40% 30% at 30% 30%, rgba(255, 251, 240, 0.55), transparent 70%);
  opacity: 0.8;
  pointer-events: none;
  z-index: 1;
  animation: heroLightSweep 16s ease-in-out infinite;
}

@keyframes heroLightSweep {

  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }

  50% {
    transform: translate(6%, 4%) scale(1.15);
  }
}

.hero-floaters {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  overflow: hidden;
}

.hero-floater {
  position: absolute;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201, 160, 70, 0.35), rgba(201, 160, 70, 0) 70%);
  filter: blur(1px);
  animation: heroFloat 9s ease-in-out infinite;
}

.hero-floater.f1 {
  width: 14px;
  height: 14px;
  top: 22%;
  left: 12%;
  animation-duration: 10s;
  animation-delay: 0s;
}

.hero-floater.f2 {
  width: 9px;
  height: 9px;
  top: 64%;
  left: 18%;
  animation-duration: 8s;
  animation-delay: 1.2s;
}

.hero-floater.f3 {
  width: 12px;
  height: 12px;
  top: 30%;
  left: 86%;
  animation-duration: 11s;
  animation-delay: 0.6s;
}

.hero-floater.f4 {
  width: 7px;
  height: 7px;
  top: 70%;
  left: 80%;
  animation-duration: 9s;
  animation-delay: 2s;
}

@keyframes heroFloat {

  0%,
  100% {
    transform: translateY(0) translateX(0);
    opacity: 0.55;
  }

  50% {
    transform: translateY(-22px) translateX(6px);
    opacity: 1;
  }
}

.hero-inner {
  display: none !important;
  visibility: hidden !important;
  height: 0 !important;
  max-height: 0 !important;
  width: 0 !important;
  overflow: hidden !important;
  padding: 0 !important;
  margin: 0 !important;
  position: absolute !important;
  left: -9999px !important;
  z-index: -9999 !important;
}

/* Hide CASCADE, stats, and hampers/gifting sections */
.cascade-section {
  display: none !important;
}

/* Hide Google rating badge */
.google-badge {
  display: none !important;
}

.hampers {
  display: none !important;
}

.stats-strip,
[class*="stats"],
.stat-box,
.band.stat {
  display: none !important;
}

.hero-seal-wrap {
  position: relative;
  width: 150px;
  height: 150px;
  margin-bottom: 1.8rem;
  opacity: 0;
  animation: sealDrop 1.1s var(--ease) 0.3s forwards;
}

.hero-seal-logo {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

@keyframes sealDrop {
  0% {
    opacity: 0;
    transform: translateY(-16px) scale(0.9);
  }

  60% {
    opacity: 1;
  }

  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.hero-eyebrow {
  opacity: 0;
  font-size: 1.05rem;
  letter-spacing: 0.24em;
  animation: riseIn 1s var(--ease) 0.55s forwards;
}

.hero-eyebrow::after {
  content: "";
  width: 26px;
  height: 1px;
  background: var(--gold);
}

.hero-title {
  font-family: var(--f-display);
  font-weight: 600;
  font-size: clamp(2.6rem, 7vw, 5.4rem);
  line-height: 1.03;
  letter-spacing: -0.01em;
  margin-top: 1.1rem;
  text-shadow: 0 2px 24px rgba(124, 90, 36, 0.14);
  opacity: 0;
  animation: riseIn 1.1s var(--ease) 0.72s forwards;
}

.hero-title .brandline {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.85em;
  font-size: 0.65em;
  font-family: var(--f-body);
  font-weight: 900;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: #6B4423;
  margin-bottom: 0.7em;
}

.hero-title .brandline::before,
.hero-title .brandline::after {
  content: "";
  width: 34px;
  height: 1px;
  background: linear-gradient(90deg, transparent, #6B4423);
  flex: none;
}

.hero-title .brandline::after {
  background: linear-gradient(90deg, #6B4423, transparent);
}

.hero-title em {
  font-style: italic;
  font-weight: 500;
  background: linear-gradient(100deg, var(--gold-deep), var(--gold-bright) 60%, var(--gold-deep));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-desc {
  position: relative;
  margin-top: 3rem;
  margin-bottom: 2.5rem;
  padding-top: 1.7rem;
  max-width: 34rem;
  font-size: 1.06rem;
  line-height: 1.75;
  color: var(--ink-soft);
  opacity: 0;
  animation: riseIn 1.1s var(--ease) 0.9s forwards;
}

.hero-desc::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%) rotate(45deg);
  width: 7px;
  height: 7px;
  background: var(--gold);
}

.hero-desc::after {
  content: "";
  position: absolute;
  top: 3px;
  left: 50%;
  width: 64px;
  height: 1px;
  background: var(--gold-line);
  transform: translateX(-50%);
  z-index: -1;
}

.hero-actions {
  margin-top: 2.6rem;
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
  opacity: 0;
  animation: riseIn 1.1s var(--ease) 1.05s forwards;
}

.hero-actions .btn {
  position: relative;
  overflow: hidden;
}

.hero-actions .btn-gold {
  box-shadow: 0 16px 34px -14px rgba(124, 90, 36, 0.6), inset 0 1px 0 rgba(255, 255, 255, 0.35);
}

.hero-actions .btn-gold::before {
  content: "";
  position: absolute;
  top: 0;
  left: -60%;
  width: 40%;
  height: 100%;
  background: linear-gradient(115deg, transparent, rgba(255, 255, 255, 0.4), transparent);
  transform: skewX(-20deg);
  transition: left 0.7s var(--ease-soft);
}

.hero-actions .btn-gold:hover::before {
  left: 130%;
}

.hero-actions .btn-ghost {
  border-color: var(--gold-line);
}

.hero-actions .btn-ghost:hover {
  border-color: var(--gold-deep);
  background: rgba(124, 90, 36, 0.05);
}

.hero-note {
  margin-top: 1.7rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.9em;
  font-family: var(--f-display);
  font-style: italic;
  font-size: 0.95rem;
  color: var(--ink-soft);
  opacity: 0;
  animation: riseIn 1.1s var(--ease) 1.2s forwards;
}

.hero-note::before,
.hero-note::after {
  content: "";
  width: 18px;
  height: 1px;
  background: var(--gold-line);
  flex: none;
}

@keyframes riseIn {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-scroll {
  position: absolute;
  bottom: 2.2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.6rem;
  color: var(--ink-faint);
  font-size: 0.65rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  opacity: 0;
  animation: riseIn 1s var(--ease) 1.3s forwards;
}

.hero-scroll .line {
  width: 1px;
  height: 34px;
  background: linear-gradient(var(--gold-line), transparent);
  overflow: hidden;
  position: relative;
}

.hero-scroll .line::after {
  content: "";
  position: absolute;
  top: -100%;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(var(--gold-deep), transparent);
  animation: scrollLine 1.8s ease-in-out infinite;
}

@keyframes scrollLine {
  0% {
    top: -100%;
  }

  100% {
    top: 100%;
  }
}

/* Mobile Hero Optimizations */
@media (max-width: 768px) {
  .hero-title {
    font-size: clamp(1.8rem, 5vw, 3.2rem);
    line-height: 1.15;
  }

  .hero-title .brandline {
    font-size: 0.6em;
  }

  .hero-desc {
    font-size: 0.95rem;
    margin-top: 2rem;
    margin-bottom: 2rem;
    padding-top: 1.3rem;
    max-width: 90vw;
    line-height: 1.65;
  }

  .hero-actions {
    margin-top: 1.8rem;
    flex-direction: column;
    width: 100%;
    padding: 0 1rem;
  }

  .hero-actions .btn {
    width: 100%;
  }

  .hero-note {
    font-size: 0.85rem;
    margin-top: 1.5rem;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: clamp(1.5rem, 4.5vw, 2.4rem);
    line-height: 1.1;
  }

  .hero-desc {
    font-size: 0.9rem;
    margin-top: 1.5rem;
    line-height: 1.6;
  }
}

/* trust ticker strip */
.ticker {
  background: linear-gradient(90deg, var(--gold-deep), var(--gold), var(--gold-deep));
  color: var(--white);
  overflow: hidden;
  position: relative;
}

.ticker-track {
  display: flex;
  width: max-content;
  animation: tickerScroll 34s linear infinite;
}

.ticker-track span {
  display: inline-flex;
  align-items: center;
  gap: 0.9rem;
  padding: 0.85rem 2.4rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  white-space: nowrap;
}

.ticker-track span::after {
  content: "◆";
  font-size: 0.55rem;
  opacity: 0.7;
  margin-left: 0.9rem;
}

@keyframes tickerScroll {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

/* =========================================================================
   SHOWCASE FLIP (coin-flip product carousel)
   ========================================================================= */
.showcase {
  position: relative;
  overflow: hidden;
  width: 100%;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  min-height: clamp(240px, 28vh, 340px) !important;
  padding-block: clamp(4.5rem, 8vw, 7.5rem) !important;
  margin: 0 auto !important;
  box-sizing: border-box !important;
}

.showcase::before {
  /* dry fruits aesthetic background - REMOVED */
  content: "";
  position: absolute;
  inset: 0;
  background-image: none;
  opacity: 0;
  pointer-events: auto;
  z-index: 1;
}

.showcase-wrap {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  text-align: center;
  position: relative;
  z-index: 10;
  width: 100% !important;
  padding: 0 !important;
  margin: 0 auto !important;
}

.showcase-copy {
  position: relative;
  text-align: center;
  z-index: 11;
  padding: 0 !important;
  margin: 0 auto !important;
  width: 100% !important;
}

.showcase-hint {
  position: static;
  font-family: "Caveat", cursive;
  font-weight: 600;
  font-size: clamp(2.5rem, 5vw, 3.8rem) !important;
  color: var(--gold-deep);
  transform: rotate(-2deg);
  display: block !important;
  padding: 0 !important;
  margin: 0 auto !important;
  width: auto;
  white-space: normal;
  visibility: visible !important;
  opacity: 1 !important;
  text-align: center;
  line-height: 1.2 !important;
}

.hint-circle {
  display: none !important;
  visibility: hidden !important;
}

.hint-circle path {
  stroke-dasharray: 640;
  stroke-dashoffset: 640;
  animation: drawUnderline 1.2s 0.3s var(--ease-soft) forwards;
}

.showcase-hint span {
  position: relative;
}

.showcase-hint .hint-desktop {
  display: inline !important;
}

.showcase-hint .hint-touch {
  display: none !important;
}

/* Mobile & tablet versions: show 'Go on, move your fingers!' instead of cursor */
@media (max-width: 1024px), (hover: none) and (pointer: coarse) {
  .showcase-hint .hint-desktop {
    display: none !important;
  }

  .showcase-hint .hint-touch {
    display: inline !important;
  }
}

.showcase-mood {
  font-family: "Messy Handwritten", "Caveat", cursive;
  font-weight: 400;
  font-size: clamp(2.8rem, 7vw, 4.8rem);
  line-height: 1.15;
  color: var(--ink);
  margin-top: 0.2em;
  margin-bottom: 0;
  max-width: none;
}

.mood-word {
  position: relative;
  display: inline-block;
  color: var(--gold-deep);
}

.mood-underline {
  position: absolute;
  left: 0;
  bottom: -0.1em;
  width: 100%;
  height: 0.4em;
  overflow: visible;
}

.mood-underline path {
  stroke-dasharray: 260;
  stroke-dashoffset: 260;
  animation: drawUnderline 0.9s 0.5s var(--ease-soft) forwards;
}

@keyframes drawUnderline {
  to {
    stroke-dashoffset: 0;
  }
}

.showcase-copy .section-sub {
  margin-top: 0.9rem;
  max-width: 30rem;
}

/* Mobile showcase: minimal height to show carousel, but not excessive */
@media (max-width: 768px) {
  .showcase {
    min-height: clamp(180px, 22vh, 260px) !important;
    height: auto !important;
    padding-block: clamp(3.5rem, 6vw, 5rem) !important;
    margin: 0 auto !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
  }

  .showcase-wrap {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    margin: 0 !important;
    padding: 0 !important;
  }

  .showcase-copy {
    padding: 0 !important;
    width: 100% !important;
    margin: 0 !important;
  }

  .showcase-hint {
    position: static !important;
    font-size: clamp(2rem, 4.5vw, 3rem) !important;
    text-align: center !important;
    margin: 0 auto !important;
    padding: 0 !important;
    transform: rotate(-2deg) !important;
    width: auto !important;
    z-index: auto !important;
    pointer-events: auto !important;
    display: block !important;
    line-height: 1.2 !important;
  }

  .showcase-mood {
    font-size: clamp(1.6rem, 4vw, 2.4rem) !important;
  }

  .showcase-copy .section-sub {
    font-size: 0.9rem;
    margin-top: 0.5rem;
    max-width: 100%;
  }
}

/* =========================================================================
   FEATURED PRODUCTS CAROUSEL
   ========================================================================= */
.carousel-section {
  background: var(--beige);
  padding: 0 !important;
  margin: 0 !important;
  margin-bottom: -0.2rem !important;
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
}

/* Desktop: more breathing room */
@media (min-width: 1025px) {
  .carousel-section {
    padding-top: 1rem;
  }
}

.carousel-section .wrap {
  max-width: 100%;
  padding-inline: 0;
}

/* Mobile & Tablet: Minimal carousel controls gap fix */
@media (max-width: 1024px) {

  /* Ensure carousel has proper height to show full banner */
  .hero-carousel-wrapper,
  .carousel-container {
    min-height: auto !important;
    height: auto !important;
    margin: 0 !important;
    padding: 0 !important;
  }

  .carousel-slides-wrapper {
    min-height: auto !important;
    height: auto !important;
    margin: 0 !important;
    padding: 0 !important;
  }

  .carousel-slide {
    min-height: auto !important;
    height: auto !important;
    margin: 0 !important;
    padding: 0 !important;
  }

  /* FORCE ACTIVE SLIDE VISIBILITY */
  .carousel-slide.active {
    display: flex !important;
    opacity: 1 !important;
    visibility: visible !important;
  }

  .carousel-slide:not(.active) {
    display: none !important;
    opacity: 0 !important;
    visibility: hidden !important;
  }

  /* Hide carousel controls container completely */
  .carousel-controls,
  .carousel-nav {
    display: none !important;
    height: 0 !important;
    margin: 0 !important;
    padding: 0 !important;
  }

  /* Remove bottom margin from carousel section */
  .carousel-section {
    margin-bottom: 0 !important;
    padding-bottom: 0 !important;
  }

  /* Remove top margin from next sections */
  .quick-look,
  [class*="mood"],
  [class*="What"] {
    margin-top: 0 !important;
  }
}

/* Mobile fix: disable 100vw full-bleed, use 100% instead */
@media (max-width: 768px) {

  /* Global overflow prevention - AGGRESSIVE */
  html,
  body,
  main,
  .wrapper,
  [class*="container"],
  [class*="wrap"],
  [class*="slide"] {
    width: 100% !important;
    max-width: 100% !important;
    overflow-x: hidden !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
  }

  /* Position Carousel Arrows Inside Banner */
  .carousel-container,
  .hero-carousel-wrapper {
    position: relative !important;
    overflow: hidden !important;
    width: 100% !important;
    max-width: 100% !important;
  }

  /* Ensure all carousel containers are properly positioned */
  .carousel-container,
  .hero-carousel-wrapper,
  #hero-carousel {
    position: relative !important;
    overflow: hidden !important;
    width: 100% !important;
    display: block !important;
  }

  /* Force the slide wrapper to be the positioning context */
  .carousel-slides-wrapper {
    position: relative !important;
    width: 100% !important;
    border-radius: 16px !important;
    overflow: hidden !important;
  }

  /* Target ALL button variations to force overlay */
  button[class*="prev"],
  button[class*="next"],
  .carousel-btn,
  .nav-btn,
  .swiper-button-prev,
  .swiper-button-next {
    position: absolute !important;
    top: 50% !important;
    transform: translateY(-50%) !important;
    z-index: 99 !important;
    margin: 0 !important;
  }

  button[class*="prev"],
  .carousel-btn.prev,
  .swiper-button-prev {
    left: 12px !important;
    right: auto !important;
  }

  button[class*="next"],
  .carousel-btn.next,
  .swiper-button-next {
    right: 12px !important;
    left: auto !important;
  }

  /* Collapse empty control container height */
  .carousel-controls,
  .slider-nav {
    display: none !important;
    height: 0 !important;
    margin: 0 !important;
    padding: 0 !important;
  }

  .carousel-container .prev-btn,
  .carousel-container .next-btn,
  .hero-carousel-wrapper .prev-btn,
  .hero-carousel-wrapper .next-btn,
  .carousel-btn.prev,
  .carousel-btn.next {
    position: absolute !important;
    top: 50% !important;
    transform: translateY(-50%) !important;
    z-index: 20 !important;
    margin: 0 !important;
    width: 36px !important;
    height: 36px !important;
    background: rgba(255, 255, 255, 0.85) !important;
    border-radius: 50% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    border: 1px solid rgba(0, 0, 0, 0.1) !important;
    cursor: pointer !important;
  }

  .carousel-container .prev-btn,
  .hero-carousel-wrapper .prev-btn,
  .carousel-btn.prev {
    left: 12px !important;
    right: auto !important;
  }

  .carousel-container .next-btn,
  .hero-carousel-wrapper .next-btn,
  .carousel-btn.next {
    right: 12px !important;
    left: auto !important;
  }

  /* Remove extra spacing from carousel controls */
  .carousel-controls {
    height: 0 !important;
    margin: 0 !important;
  }

  /* Hero carousel specific button positioning */
  .hero-carousel-wrapper .carousel-btn,
  .hero-carousel-wrapper .prev-btn,
  .hero-carousel-wrapper .next-btn {
    position: absolute !important;
    top: 50% !important;
    transform: translateY(-50%) !important;
    z-index: 20 !important;
    width: 36px !important;
    height: 36px !important;
    background: rgba(255, 255, 255, 0.85) !important;
    border-radius: 50% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    border: 1px solid rgba(0, 0, 0, 0.1) !important;
  }

  .hero-carousel-wrapper .carousel-btn.prev,
  .hero-carousel-wrapper .prev-btn {
    left: 12px !important;
    right: auto !important;
  }

  .hero-carousel-wrapper .carousel-btn.next,
  .hero-carousel-wrapper .next-btn {
    right: 12px !important;
    left: auto !important;
  }

  /* Hero Banner Slide for Mobile */
  .carousel-slide {
    padding: 0 !important;
    min-height: 0 !important;
    height: auto !important;
  }

  .carousel-slide img {
    width: 100% !important;
    height: auto !important;
    max-height: none !important;
    object-fit: cover !important;
    object-position: center !important;
    margin: 0 !important;
    display: block !important;
  }

  /* Remove Empty Gap Below Banner */
  .hero-section,
  .carousel-container {
    margin-bottom: 0 !important;
    padding-bottom: 0 !important;
  }

  .mood-section {
    margin-top: 16px !important;
    padding-top: 0 !important;
  }

  .quick-shop {
    margin-top: -0.3rem !important;
    padding-top: 0 !important;
    margin-bottom: 0 !important;
  }

  /* Fix Header Logo Tagline Cutoff */
  .logo-text span,
  .logo-subtext {
    white-space: nowrap !important;
    font-size: 10px !important;
    overflow: visible !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
  }

  /* Override ALL 100vw elements */
  *[style*="100vw"] {
    width: 100% !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
    left: auto !important;
    right: auto !important;
  }

  .showcase,
  .hero-carousel,
  #hero-carousel,
  .carousel-container,
  .carousel-section {
    width: 100% !important;
    position: relative !important;
    left: auto !important;
    right: auto !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
  }

  /* Header mobile fixes */
  .site-header,
  header,
  .navbar {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    width: 100% !important;
    padding: 12px 0px !important;
    box-sizing: border-box !important;
    margin: 0 !important;
  }

  .site-header .bar {
    width: 100% !important;
    max-width: 100% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    padding: 0 !important;
    margin: 0 !important;
    gap: 0.5rem !important;
  }

  .brand {
    width: auto !important;
    flex: 1 0 auto !important;
    display: flex !important;
    align-items: center !important;
    gap: 0.5rem !important;
    min-width: 0 !important;
  }

  .brand .mark {
    width: 52px !important;
    height: 52px !important;
    flex-shrink: 0 !important;
  }

  .brand-name {
    width: auto !important;
    max-width: 100% !important;
    flex: 1 1 auto !important;
    margin: 0 12px !important;
    min-width: 0 !important;
    overflow: hidden !important;
  }

  .brand-name .top {
    font-size: clamp(0.75rem, 3.5vw, 1rem) !important;
    white-space: normal !important;
    overflow: visible !important;
    line-height: 1.2 !important;
    word-break: break-word !important;
    hyphens: auto !important;
  }
}

.carousel-wrapper {
  position: relative !important;
  width: 100%;
  max-width: 100%;
  margin: 0 auto !important;
  padding: 0 !important;
  border: none !important;
  border-radius: 20px !important;
  overflow: hidden !important;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05) !important;
}

.hero-carousel-wrapper,
.carousel-container {
  position: relative !important;
  width: 100% !important;
  max-width: 1280px !important;
  margin: 0 auto !important;
  border-radius: 20px !important;
  overflow: hidden !important;
  padding: 0 !important;
  border: none !important;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05) !important;
}

.carousel-slides {
  position: relative;
  width: 100%;
  height: 450px;
  min-height: 320px;
  overflow: hidden !important;
  border-radius: 20px !important;
  box-shadow: var(--shadow-medium);
  margin: 0 !important;
  padding: 0 !important;
}

.carousel-slide {
  position: absolute;
  width: 100% !important;
  height: 100% !important;
  margin: 0 !important;
  padding: 0 !important;
  box-sizing: border-box !important;
  opacity: 0;
  transform: translateX(100%);
  transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
  display: none;
  pointer-events: none;
  background-color: var(--beige);
}

.carousel-section .carousel-slide {
  position: absolute;
  width: 100%;
  height: 100%;
  opacity: 0;
  transform: translateX(100%);
  transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
  display: none;
  pointer-events: none;
  background-color: var(--beige);
}

.carousel-section .carousel-slide img {
  background-color: var(--beige);
  background-clip: content-box;
}

.carousel-section .carousel-slide.is-active {
  opacity: 1;
  transform: translateX(0);
  display: block;
  pointer-events: auto;
}

.carousel-section .carousel-slide.is-prev {
  display: none;
  transform: translateX(-100%);
}

.carousel-section .carousel-slide.is-prev {
  transform: translateX(-100%);
}

.slide-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.slide-name {
  display: none !important;
}

.carousel-btn,
.prev-btn,
.next-btn {
  position: absolute !important;
  top: 50% !important;
  transform: translateY(-50%) !important;
  z-index: 20 !important;
  background: rgba(255, 255, 255, 0.85) !important;
  border: 2px solid var(--gold-deep) !important;
  color: var(--gold-deep) !important;
  width: 44px !important;
  height: 44px !important;
  border-radius: 50% !important;
  font-size: 1.1rem !important;
  cursor: pointer !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  transition: all 0.3s ease !important;
  z-index: 20 !important;
}

.carousel-btn:hover {
  background: var(--gold-deep) !important;
  color: white !important;
  transform: translateY(-50%) scale(1.15) !important;
}

.carousel-btn.prev {
  left: 20px !important;
}

.carousel-btn.next {
  right: 20px !important;
}

.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 0.8rem;
  flex: 1;
}

.carousel-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(124, 90, 36, 0.3);
  cursor: pointer;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.carousel-dot.active {
  background: var(--gold);
  width: 12px;
  height: 12px;
  box-shadow: 0 2px 8px rgba(124, 90, 36, 0.3);
}

.carousel-dot:hover {
  background: var(--gold-bright);
  transform: scale(1.2);
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 2px solid var(--gold-deep);
  background: transparent;
  cursor: pointer;
  transition: all 0.3s ease;
  display: none !important;
}

.dot.is-active {
  background: var(--gold-deep);
  transform: scale(1.3);
}

.dot:hover {
  transform: scale(1.2);
}

/* Tablet: Adjust carousel for medium screens */
@media (max-width: 1023px) and (min-width: 769px) {
  .carousel-slides {
    height: clamp(280px, 50vw, 380px);
  }

  .carousel-section {
    padding-block: clamp(0.75rem, 2vw, 1.5rem);
    padding-top: clamp(1.5rem, 3vw, 2.5rem);
  }

  .carousel-wrapper {
    padding: 0 clamp(0.75rem, 2vw, 1.5rem);
  }
}

/* Mobile: Optimize carousel for small screens */
@media (max-width: 768px) {

  /* Hero carousel: ensure visibility and responsive height */
  .hero-carousel-wrapper {
    width: 100% !important;
    max-width: 1300px !important;
    margin: 0 auto 0 auto !important;
    min-height: auto !important;
    border-radius: 24px !important;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12) !important;
    height: auto !important;
  }

  #hero-carousel {
    width: 100% !important;
    height: auto !important;
    min-height: auto !important;
    display: block !important;
  }

  .carousel-slides-wrapper {
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: nowrap !important;
    width: 100% !important;
    height: fit-content !important;
    min-height: auto !important;
  }

  /* Responsive carousel height for small carousels - fit content naturally */
  .carousel-slides {
    height: auto !important;
    min-height: 150px !important;
    border-radius: 8px;
  }

  .carousel-section {
    padding-top: 1rem !important;
    padding-bottom: 0.5rem !important;
  }

  .carousel-section .carousel-slide img {
    width: 90% !important;
    max-width: none !important;
    height: auto !important;
    object-fit: contain !important;
    margin: 0 auto !important;
  }

  /* Carousel slides: set proper height for mobile */
  .carousel-slide {
    height: auto !important;
    min-height: 220px !important;
  }

  .carousel-slide img {
    width: 100% !important;
    height: auto !important;
    object-fit: cover !important;
    object-position: center !important;
    display: block !important;
  }

  /* Hero carousel slide: optimize layout for mobile */
  .carousel-slide.active {
    display: flex !important;
    flex-direction: column !important;
    height: fit-content !important;
    min-height: auto !important;
    padding: 0.5rem 0 !important;
  }

  .hero-text-block {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    text-align: center !important;
    width: 100% !important;
    padding: 1rem !important;
    order: 1;
  }

  .hero-product-block {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 100% !important;
    height: auto !important;
    margin: 0 !important;
    padding: 1rem 0 !important;
    order: 2;
  }

  .hero-product-block img {
    width: 85% !important;
    height: auto !important;
    max-width: 100% !important;
    object-fit: contain !important;
  }

  .carousel-section {
    padding-block: 0.75rem !important;
    padding-top: 0.75rem !important;
    padding-bottom: 0.75rem !important;
    margin-bottom: 0.5rem !important;
    width: 100%;
  }

  .carousel-wrapper {
    padding: 0 clamp(0.5rem, 2vw, 1rem);
    width: 100%;
  }

  /* Carousel navigation: reduce size for mobile */
  .carousel-btn {
    width: clamp(32px, 7vw, 40px);
    height: clamp(32px, 7vw, 40px);
    font-size: clamp(0.85rem, 1.8vw, 0.95rem);
  }

  .carousel-btn.prev {
    left: clamp(0.25rem, 1vw, 0.5rem);
  }

  .carousel-btn.next {
    right: clamp(0.25rem, 1vw, 0.5rem);
  }

  /* Reduce navigation dots size on mobile */
  .carousel-dot {
    width: 8px;
    height: 8px;
  }

  .carousel-dot.active {
    width: 10px;
    height: 10px;
  }
}

/* MOBILE & TABLET: Reduce excessive carousel spacing */
@media (max-width: 1024px) {

  /* CRITICAL: Collapse wrapper to ONLY image height - no extra space */
  .hero-carousel-wrapper {
    display: flex !important;
    flex-direction: column !important;
    height: 100% !important;
    width: 100% !important;
    max-height: fit-content !important;
    min-height: 0 !important;
    padding: 0 !important;
    margin: 0 !important;
    overflow: visible !important;
  }

  .carousel-slides-wrapper {
    display: flex !important;
    flex-direction: row !important;
    width: 100% !important;
    height: 100% !important;
    max-height: fit-content !important;
    min-height: 0 !important;
    flex: 1 1 auto !important;
    position: relative !important;
  }

  /* Container: preserve carousel display */
  .carousel-section {
    height: auto !important;
    min-height: unset !important;
    padding-block: 0.75rem !important;
    padding-top: 0.75rem !important;
    margin: 0 !important;
  }

  .hero-carousel-wrapper {
    height: auto !important;
    min-height: auto !important;
    overflow: visible !important;
  }

  #hero-carousel {
    height: auto !important;
    min-height: auto !important;
  }

  .carousel-wrapper {
    height: auto !important;
    min-height: auto !important;
    position: relative !important;
  }

  /* Slides: fit image naturally without fixed height */
  .carousel-slides {
    height: auto !important;
    min-height: auto !important;
    position: relative !important;
  }

  .carousel-slide {
    width: 100% !important;
    height: 100% !important;
    min-height: auto !important;
    position: relative !important;
    flex: 0 0 100% !important;
  }

  .carousel-slide img {
    width: 100% !important;
    height: auto !important;
    display: block !important;
    max-width: 100% !important;
    aspect-ratio: 2114 / 744 !important;
    object-fit: cover !important;
  }

  /* Arrow positioning: absolutely positioned on carousel-slides-wrapper (image container) */
  .carousel-btn {
    position: absolute !important;
    z-index: 20 !important;
    width: 36px !important;
    height: 36px !important;
    font-size: 16px !important;
  }

  .carousel-btn.prev {
    left: 0.5rem !important;
    top: 50% !important;
    transform: translateY(-50%) !important;
  }

  .carousel-btn.next {
    right: 0.5rem !important;
    top: 50% !important;
    transform: translateY(-50%) !important;
  }
}

/* =========================================================================
   SHOP BY CATEGORY (ultra-luxury aesthetic)
   ========================================================================= */
.quick-shop {
  background: transparent !important;
  position: relative;
  max-width: 1100px !important;
  margin: 0 auto !important;
  padding: 40px 20px !important;
  border: none !important;
  box-shadow: none !important;
}

.quick-grid {
  display: grid !important;
  grid-template-columns: repeat(4, 1fr) !important;
  gap: 30px !important;
}

.quick-tile {
  background: transparent !important;
  border-radius: 0 !important;
  padding: 0 !important;
  box-shadow: none !important;
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  transition: all 0.3s ease !important;
  text-align: center !important;
}

.quick-tile:hover {
  transform: none !important;
  box-shadow: none !important;
}

.quick-tile-media {
  width: 100% !important;
  height: 160px !important;
  border-radius: 0 !important;
  background-color: transparent !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  margin-bottom: 8px !important;
  overflow: hidden !important;
}

.quick-tile-media img {
  max-height: 130px !important;
  max-width: 130px !important;
  width: auto !important;
  height: auto !important;
  object-fit: contain !important;
  filter: drop-shadow(0 6px 12px rgba(0, 0, 0, 0.08)) !important;
}

.quick-tile span {
  font-family: 'Plus Jakarta Sans', 'Inter', sans-serif;
  font-size: 13px !important;
  font-weight: 700 !important;
  letter-spacing: 1.5px !important;
  text-transform: uppercase !important;
  color: #2D231F !important;
  margin-bottom: 0 !important;
  white-space: nowrap !important;
  overflow: hidden !important;
  text-overflow: ellipsis !important;
  max-width: 140px !important;
}

.quick-tile:hover .quick-tile-media {
  transform: translateY(-12px) rotateZ(0.5deg);
  border-color: var(--gold);
  box-shadow: var(--shadow-deep), var(--shadow-inner);
}

.quick-tile:hover .quick-tile-media::before {
  opacity: 1;
}

.quick-tile:hover .quick-tile-media img {
  transform: scale(1.08);
}

.quick-tile:hover span {
  color: var(--gold-deepest);
  font-weight: 800;
}

.quick-tile p {
  font-size: 11px !important;
  line-height: 1.4 !important;
  color: #8C7E75 !important;
  text-align: center !important;
  max-width: 180px !important;
  margin: 0 auto !important;
}

@media (max-width: 767px) {
  .quick-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 12px !important;
  }

  .quick-tile {
    padding: 0 !important;
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
  }

  .quick-tile-media {
    height: 90px !important;
    margin-bottom: 12px !important;
    background-color: transparent !important;
    background: transparent !important;
  }

  .quick-tile-media img {
    max-height: 65px !important;
    max-width: 65px !important;
  }
}

/* =========================================================================
   CASCADE (staggered overlapping photo stack)
   ========================================================================= */
.cascade-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2.5rem, 6vw, 5rem);
  align-items: center;
}

.cascade-copy {
  text-align: left;
}

.cascade-copy .section-title em {
  font-family: "Caveat", cursive;
  font-style: normal;
  font-weight: 700;
  font-size: 1.25em;
  line-height: 1;
}

.cascade-copy .section-sub {
  margin-top: 0.9rem;
  margin-bottom: 1.8rem;
  max-width: 28rem;
}

.cascade-stack {
  position: relative;
  height: clamp(500px, 55vw, 750px);
}

.cascade-card {
  position: absolute;
  width: 60%;
  aspect-ratio: 4 / 5;
  border-radius: 18px;
  overflow: hidden;
  border: none;
  outline: none;
  box-shadow: 0 30px 60px -20px rgba(43, 32, 21, 0.4);
  transform: rotate(var(--rot));
  transition: transform 0.45s var(--ease-soft), box-shadow 0.45s;
}

.cascade-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.cascade-card:hover {
  transform: rotate(0deg) scale(1.05);
  box-shadow: 0 34px 64px -18px rgba(43, 32, 21, 0.5);
  z-index: 5;
}

.cascade-card:nth-child(1) {
  top: 0;
  left: 0;
  z-index: 3;
}

.cascade-card:nth-child(2) {
  top: 30%;
  right: 0;
  left: auto;
  z-index: 2;
}

.cascade-card:nth-child(3) {
  top: 60%;
  left: 12%;
  z-index: 1;
}

.cascade-card video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.cascade-card.cascade-video-card {
  top: 50%;
  left: 50%;
  right: auto;
  width: 72%;
  transform: translate(-50%, -50%);
  z-index: 2;
  border: none;
  box-shadow:
    0 40px 80px -24px rgba(43, 32, 21, 0.45);
}

.cascade-card.cascade-video-card:hover {
  transform: translate(-50%, -50%) scale(1.05);
  box-shadow:
    0 46px 90px -22px rgba(43, 32, 21, 0.55);
}

.cascade-card.cascade-video-card video {
  transform: none;
  transform-origin: center;
}

@media (max-width: 860px) {
  .cascade-wrap {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .cascade-copy {
    text-align: center;
  }

  .cascade-copy .section-sub {
    margin-inline: auto;
  }

  .cascade-stack {
    max-width: 420px;
    margin: 0 auto;
    height: clamp(300px, 45vw, 450px);
  }
}

/* Responsive text for cursor/finger */
.desktop-only {
  display: inline;
}

.mobile-only {
  display: none;
}

@media (max-width: 768px) {
  .desktop-only {
    display: none;
  }

  .mobile-only {
    display: inline;
  }
}

/* =========================================================================
   LEGACY / STORYTELLING TIMELINE
   ========================================================================= */
.legacy {
  background: var(--ivory);
}

.legacy-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(2.5rem, 6vw, 5rem);
  align-items: start;
}

.legacy-hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: clamp(2.5rem, 6vw, 5rem);
  align-items: start;
}

/* the heritage hero already sits below a fixed header + breadcrumb — the full
   band pad on top of that left a dead gap before the title */
.pp-breadcrumb+.legacy.band {
  padding-top: clamp(1.25rem, 2.5vw, 2.25rem);
}

.legacy-mark-col {
  position: sticky;
  top: 130px;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: clamp(2.2rem, 4vw, 3rem) clamp(1.6rem, 3vw, 2.2rem);
  border-radius: 22px;
  background:
    radial-gradient(120% 90% at 50% -10%, rgba(198, 160, 79, 0.14) 0%, rgba(198, 160, 79, 0) 60%),
    linear-gradient(165deg, var(--white) 0%, var(--ivory) 100%);
  border: 1px solid rgba(198, 160, 79, 0.34);
  box-shadow:
    0 30px 60px -30px rgba(43, 32, 21, 0.34),
    inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

/* the mark sits in a struck medallion — reads as a maker's seal */
.lm-crest {
  display: grid;
  place-items: center;
  width: 190px;
  height: 190px;
  border-radius: 50%;
  background: radial-gradient(circle at 50% 38%, var(--white) 0%, var(--ivory) 78%);
  border: 1px solid rgba(198, 160, 79, 0.45);
  box-shadow:
    0 0 0 6px rgba(255, 255, 255, 0.7),
    0 0 0 7px rgba(198, 160, 79, 0.22),
    0 16px 30px -18px rgba(43, 32, 21, 0.4);
}

.legacy-mark-big {
  width: 132px;
  height: auto;
  object-fit: contain;
}

.lm-est {
  margin-top: 1.2rem;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-deep);
  text-align: center;
}

.legacy-mark-caption {
  margin-top: 0.7rem;
  font-family: var(--f-display);
  font-style: italic;
  font-size: 1.05rem;
  line-height: 1.5;
  color: var(--gold-deep);
  text-align: center;
  max-width: 18rem;
}

.legacy-mark-stats {
  margin-top: 2rem;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
  border-top: 1px solid var(--gold-line-soft);
  padding-top: 1.6rem;
}

.legacy-mark-stats>div {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 0.6rem;
}

.legacy-mark-stats .cnum,
.legacy-mark-stats .g-rating-decimal {
  font-family: var(--f-display);
  font-weight: 600;
  font-size: 1.5rem;
  color: var(--ink);
}

.legacy-mark-stats p {
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink-faint);
}

.lm-trust {
  list-style: none;
  margin-top: 1.5rem;
  padding-top: 1.4rem;
  width: 100%;
  border-top: 1px solid var(--gold-line-soft);
  display: flex;
  flex-direction: column;
  gap: 0.72rem;
}

.lm-trust li {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.86rem;
  color: var(--ink-soft);
}

.lm-trust li::before {
  content: "";
  flex: none;
  width: 15px;
  height: 15px;
  border-radius: 50%;
  background: rgba(198, 160, 79, 0.16);
  border: 1px solid rgba(198, 160, 79, 0.5);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%238A6A2F' stroke-width='3.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 6 9 17l-5-5'/%3E%3C/svg%3E");
  background-size: 9px 9px;
  background-position: center;
  background-repeat: no-repeat;
}

.lm-cta {
  margin-top: 1.6rem;
  width: 100%;
  justify-content: center;
}

.lm-note {
  margin-top: 0.85rem;
  font-size: 0.78rem;
  color: var(--ink-faint);
  text-align: center;
}

.lm-note a {
  color: var(--gold-deep);
  font-weight: 700;
}

@media (max-width: 1080px) {
  .legacy-hero-grid {
    grid-template-columns: 1fr;
  }

  .legacy-mark-col {
    position: static;
    max-width: 26rem;
    margin-inline: auto;
  }
}

.legacy-copy .section-title {
  margin-top: 0.6em;
}

.est-badge {
  display: inline-flex;
  align-items: center;
  margin-left: 0.8em;
  padding: 0.25em 0.7em;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--ink-soft);
  border: 1px solid var(--gold-line);
  vertical-align: middle;
}

.heritage-title {
  font-size: clamp(2.8rem, 5.5vw, 3.8rem);
  letter-spacing: -0.02em;
  line-height: 1.1;
}

.heritage-tagline {
  font-size: clamp(1.4rem, 2.6vw, 1.75rem);
  line-height: 1.5;
  max-width: 36rem;
  color: var(--ink);
  font-weight: 500;
}

.legacy-copy--full {
  max-width: 44rem;
}

.legacy-copy p {
  margin-top: 1.4rem;
  color: var(--ink-soft);
  font-size: 1.02rem;
  line-height: 1.8;
  max-width: 34rem;
}

.legacy-motto {
  margin-top: 1.8rem;
  font-family: var(--f-display);
  font-style: italic;
  font-size: 1.3rem;
  line-height: 1.5;
  color: var(--gold-deep);
  max-width: 30rem;
  padding-left: 1.1rem;
  border-left: 2px solid var(--gold);
}

.legacy-pillars {
  margin-top: 2.2rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.1rem;
  max-width: 36rem;
}

.legacy-pillar {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
  padding: 2rem 1.8rem;
  background: linear-gradient(135deg, var(--white) 0%, var(--ivory) 60%, var(--beige) 100%);
  border: none;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow-light), var(--shadow-inner);
  transition: transform 0.45s var(--ease-soft), box-shadow 0.45s var(--ease-soft), border-color 0.45s, background 0.45s;
}

.legacy-pillar::before {
  content: "";
  position: absolute;
  top: -30%;
  right: -30%;
  width: 70%;
  height: 70%;
  background: radial-gradient(circle, var(--gold) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.5s var(--ease-soft);
  pointer-events: none;
}

.legacy-pillar:hover {
  transform: translateY(-12px) rotateZ(-0.5deg);
  border-color: var(--gold);
  background: linear-gradient(135deg, var(--white) 0%, var(--beige-deep) 100%);
  box-shadow: var(--shadow-deep), var(--shadow-inner);
}

.legacy-pillar:hover::before {
  opacity: 0.14;
}

.legacy-pillar .pillar-icon {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  flex-shrink: 0;
  background: linear-gradient(135deg, var(--gold-bright), var(--gold-deep));
  color: var(--white);
  border-radius: 12px;
  box-shadow: 0 8px 20px -8px rgba(124, 90, 36, 0.3);
  transition: transform 0.45s var(--ease-soft), border-radius 0.45s var(--ease-soft), box-shadow 0.45s var(--ease-soft);
}

.legacy-pillar:hover .pillar-icon {
  transform: rotate(-5deg) scale(1.12);
  border-radius: 8px;
  box-shadow: 0 12px 28px -8px rgba(124, 90, 36, 0.4);
}

.legacy-pillar svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

.legacy-pillar h3 {
  position: relative;
  font-family: var(--f-display);
  font-weight: 600;
  font-size: 0.98rem;
  color: var(--ink);
}

.legacy-pillar p {
  position: relative;
  font-size: 0.83rem;
  line-height: 1.6;
  color: var(--ink-soft);
  max-width: none;
}

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

/* ---- chapters: editorial grid replacing the old connected-dot timeline ---- */
.chapters-section {
  padding-block: clamp(3rem, 6vw, 4.5rem);
}

.chapters {
  margin-top: clamp(2.5rem, 5vw, 3.5rem);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(1.6rem, 3vw, 2.4rem);
}

.chapter {
  position: relative;
  overflow: hidden;
  border-radius: 18px;
  background: linear-gradient(155deg, var(--white) 0%, var(--ivory) 100%);
  border: none;
  padding: 2.4rem 2.1rem;
  box-shadow: var(--shadow-medium), var(--shadow-inner);
  transition: transform 0.5s var(--ease-soft), box-shadow 0.5s var(--ease-soft), border-color 0.45s, background 0.45s;
}

/* a gilt seal draws itself across the top edge as you land on a chapter */
.chapter::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 3px;
  width: 100%;
  background: linear-gradient(90deg, var(--gold), var(--gold-deep));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.65s var(--ease-soft);
}

.chapter:hover::before {
  transform: scaleX(1);
}

/* and a slow gold light passes over the card */
.chapter::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, transparent 36%, rgba(198, 160, 79, 0.20) 50%, transparent 64%);
  transform: translateX(-130%);
  transition: transform 0.95s var(--ease-soft);
  pointer-events: none;
}

.chapter:hover::after {
  transform: translateX(130%);
}

.chapter:hover {
  transform: translateY(-14px);
  box-shadow: var(--shadow-deep), var(--shadow-inner);
  border-color: var(--gold);
  background: linear-gradient(155deg, var(--white) 0%, var(--beige) 100%);
}

.chapter-num {
  display: block;
  font-family: var(--f-display);
  font-weight: 700;
  font-size: 2.8rem;
  line-height: 1;
  background: linear-gradient(135deg, var(--gold-pale), var(--gold-bright));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  transition: transform 0.45s var(--ease-soft);
}

.chapter:hover .chapter-num {
  transform: translateY(-4px) scale(1.05);
}

.chapter-year {
  margin-top: 0.9rem;
  font-family: var(--f-display);
  font-style: italic;
  font-size: 0.88rem;
  color: var(--gold-deep);
}

.chapter h3 {
  margin-top: 0.4rem;
  font-family: var(--f-display);
  font-weight: 600;
  font-size: 1.15rem;
  color: var(--ink);
}

.chapter p {
  margin-top: 0.7rem;
  font-size: 0.87rem;
  line-height: 1.65;
  color: var(--ink-soft);
}

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

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

.legacy-cta {
  grid-column: 1 / -1;
  position: relative;
  isolation: isolate;
  overflow: hidden;
  margin-top: clamp(2rem, 4vw, 3rem);
  padding: clamp(2.4rem, 4.5vw, 3.4rem) clamp(2rem, 4vw, 3.4rem);
  border-radius: 22px;
  border: 1px solid rgba(198, 160, 79, 0.34);
  background:
    radial-gradient(130% 170% at 88% -25%, rgba(198, 160, 79, 0.26) 0%, rgba(198, 160, 79, 0) 58%),
    linear-gradient(165deg, var(--ink) 0%, #3A2C1A 100%);
  box-shadow:
    0 28px 64px -30px rgba(43, 32, 21, 0.8),
    inset 0 1px 0 rgba(255, 255, 255, 0.07);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1.75rem;
}

/* warm light pooling in from the corner */
.legacy-cta::before {
  content: "";
  position: absolute;
  z-index: -1;
  top: -45%;
  right: -8%;
  width: 440px;
  height: 440px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(198, 160, 79, 0.20), transparent 63%);
  pointer-events: none;
}

/* fine gilt rule along the top edge */
.legacy-cta::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(198, 160, 79, 0.7), transparent);
  pointer-events: none;
}

.legacy-cta .eyebrow {
  color: var(--gold);
}

.legacy-cta h3 {
  margin-top: 0.55rem;
  font-family: var(--f-display);
  font-weight: 600;
  font-size: clamp(1.4rem, 2.7vw, 1.85rem);
  letter-spacing: -0.01em;
  color: var(--white);
  text-wrap: balance;
}

.legacy-cta-btns {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.legacy-cta .btn {
  border-radius: 6px;
  transition: transform 0.35s var(--ease-soft), box-shadow 0.35s, background 0.3s, color 0.3s, border-color 0.3s;
}

.legacy-cta .btn:hover {
  transform: translateY(-2px);
}

.legacy-cta .btn-gold:hover {
  box-shadow: 0 12px 26px -12px rgba(198, 160, 79, 0.85);
}

.legacy-cta .btn-ghost {
  border-color: rgba(255, 255, 255, 0.4);
  color: var(--white);
}

.legacy-cta .btn-ghost:hover {
  background: var(--white);
  color: var(--ink);
  border-color: var(--white);
}

/* ---- heritage-showcase: auto-scrolling strip of real packaging photos ---- */
/* ---- pack-matters: bold typographic statement with inline pill callouts ---- */
.pack-matters {
  background: var(--ink);
  padding-block: clamp(3.5rem, 8vw, 6rem);
  overflow: hidden;
}

.pm-eyebrow {
  justify-content: center;
  color: var(--gold);
  margin-bottom: 1.3rem;
}

.pm-title {
  font-family: var(--f-display);
  font-weight: 700;
  text-transform: uppercase;
  font-size: clamp(2rem, 6.5vw, 4.6rem);
  line-height: 1.15;
  text-align: center;
  color: var(--white);
  letter-spacing: -0.01em;
  max-width: 56rem;
  margin-inline: auto;
}

.pm-pill {
  display: inline-flex;
  align-items: center;
  margin: 0 0.3em;
  padding: 0.32em 0.85em;
  font-family: var(--f-body);
  font-size: 0.26em;
  font-weight: 700;
  letter-spacing: 0.09em;
  color: var(--white);
  background: transparent;
  border: 1.5px solid var(--gold);
  border-radius: 999px;
  vertical-align: middle;
  transform: translateY(-0.28em);
  box-shadow: 0 0.1em 0.3em rgba(0, 0, 0, 0.25);
}

.pm-pill--2 {
  border-color: var(--white);
}

.pm-pill--3 {
  border-color: var(--gold);
  background: var(--gold);
  color: var(--ink);
}

.pm-sub {
  margin-top: 2.2rem;
  max-width: 32rem;
  margin-inline: auto;
  text-align: center;
  color: rgba(255, 255, 255, 0.72);
  font-size: 1rem;
  line-height: 1.8;
}

.heritage-showcase,
section.heritage-showcase {
  overflow: hidden !important;
  position: relative !important;
  width: 100% !important;
  max-width: 100vw !important;
  padding-block: clamp(2.5rem, 5vw, 4.5rem) !important;
  padding-inline: 0 !important;
  padding-left: 0 !important;
  padding-right: 0 !important;
  margin-left: 0 !important;
  margin-right: 0 !important;
  margin-top: 0 !important;
  margin-bottom: 0 !important;
  background: linear-gradient(135deg, var(--ivory-deep) 0%, var(--beige) 100%) !important;
  border-top: 1.5px solid var(--gold-line-soft) !important;
  border-bottom: 1.5px solid var(--gold-line-soft) !important;
  box-sizing: border-box !important;
}

.heritage-showcase > .wrap {
  width: 100% !important;
  max-width: 1120px !important;
  margin-inline: auto !important;
  padding-inline: clamp(1.2rem, 5vw, 2.5rem) !important;
  box-sizing: border-box !important;
}

/* If legacy markup wraps hs-track-wrap in .wrap, force it to full width */
.heritage-showcase .wrap:has(.hs-track-wrap) {
  max-width: 100% !important;
  width: 100% !important;
  padding-inline: 0 !important;
  margin-inline: 0 !important;
}

/* Responsive Grid Layout */
.hs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: clamp(2rem, 4vw, 3rem);
  margin-top: clamp(2rem, 4vw, 3rem);
  padding: 0;
}

/* Carousel Track Wrapper - full screen edge-to-edge container */
.hs-track-wrap,
.heritage-showcase .hs-track-wrap {
  position: relative !important;
  overflow: hidden !important;
  width: 100% !important;
  max-width: 100% !important;
  margin: clamp(1.2rem, 3vw, 2.2rem) 0 0 0 !important;
  padding: 0 !important;
  padding-left: 0 !important;
  padding-right: 0 !important;
  padding-inline: 0 !important;
  margin-left: 0 !important;
  margin-right: 0 !important;
  margin-inline: 0 !important;
  scrollbar-width: none !important;
  -ms-overflow-style: none !important;
  box-sizing: border-box !important;
}

.hs-track-wrap::-webkit-scrollbar {
  display: none !important;
  width: 0 !important;
  height: 0 !important;
}

/* Carousel Track - animated marquee */
.hs-track,
.heritage-showcase .hs-track {
  display: flex !important;
  flex-direction: row !important;
  flex-wrap: nowrap !important;
  gap: clamp(1.2rem, 2.5vw, 2.2rem) !important;
  animation: hs-marquee 28s linear infinite !important;
  will-change: transform;
  padding: 0 !important;
  margin: 0 !important;
  width: max-content !important;
  max-width: none !important;
  flex-shrink: 0 !important;
}

.hs-track .hs-item {
  flex: 0 0 auto !important;
  width: 200px !important;
  min-width: 200px !important;
  max-width: 200px !important;
}

.hs-track .hs-item span {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  text-align: center !important;
  min-height: 2.6rem !important;
  line-height: 1.25 !important;
  white-space: normal !important;
  overflow: visible !important;
  text-overflow: unset !important;
  word-break: normal !important;
  overflow-wrap: break-word !important;
  padding: 0 4px !important;
}

.hs-track .hs-item picture {
  height: 240px !important;
  width: 100% !important;
}

.hs-track .hs-item picture img,
.hs-track .hs-item img {
  object-fit: contain !important;
}

/* Marquee animation - seamless loop */
@keyframes hs-marquee {
  0% {
    transform: translate3d(0, 0, 0);
  }

  100% {
    transform: translate3d(-50%, 0, 0);
  }
}

/* Only pause on hover on real desktop mouse with large screens - never on mobile or iPad */
@media (hover: hover) and (pointer: fine) and (min-width: 1201px) {
  .hs-track-wrap:hover .hs-track {
    animation-play-state: paused;
  }
}

/* Tablet Optimizations (iPad Mini, iPad Air, Tablets: 601px to 1200px) */
@media (max-width: 1200px) and (min-width: 601px) {
  .hs-track-wrap,
  .heritage-showcase .hs-track-wrap {
    width: 100% !important;
    max-width: 100% !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
    overflow: hidden !important;
    scrollbar-width: none !important;
    -ms-overflow-style: none !important;
    box-sizing: border-box !important;
  }

  .hs-track-wrap::-webkit-scrollbar {
    display: none !important;
    width: 0 !important;
    height: 0 !important;
  }

  .hs-track,
  .heritage-showcase .hs-track {
    animation: hs-marquee 25s linear infinite !important;
    animation-play-state: running !important;
    gap: 1.4rem !important;
    margin: 0 !important;
    padding: 0 !important;
    width: max-content !important;
    max-width: none !important;
    flex-shrink: 0 !important;
    will-change: transform;
  }

  .hs-track-wrap:hover .hs-track,
  .hs-track:hover {
    animation-play-state: running !important;
  }

  .hs-track .hs-item {
    flex: 0 0 auto !important;
    width: 175px !important;
    min-width: 175px !important;
    max-width: 175px !important;
    padding: 0.6rem !important;
  }

  .hs-track .hs-item picture {
    height: 215px !important;
    width: 100% !important;
  }

  .hs-track .hs-item picture img,
  .hs-track .hs-item img {
    object-fit: contain !important;
  }

  .hs-track .hs-item span {
    font-size: 0.82rem !important;
    letter-spacing: 0.03em !important;
    font-weight: 700 !important;
    line-height: 1.25 !important;
    white-space: normal !important;
    overflow: visible !important;
    text-overflow: unset !important;
    word-break: normal !important;
    overflow-wrap: break-word !important;
    max-width: 100% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    text-align: center !important;
    min-height: 2.6rem !important;
    padding: 0 4px !important;
  }
}

@media (max-width: 768px) {
  /* Ensure heading is always clearly visible on mobile */
  .heritage-showcase .section-head,
  .heritage-showcase .section-head.reveal,
  .heritage-page .heritage-showcase .section-head {
    opacity: 1 !important;
    transform: none !important;
    visibility: visible !important;
  }

  .heritage-showcase .section-head h2,
  .heritage-showcase .section-head p {
    opacity: 1 !important;
    visibility: visible !important;
  }

  /* Animated marquee container for mobile and tablet */
  .hs-track-wrap,
  .heritage-showcase .hs-track-wrap,
  .heritage-page .heritage-showcase .hs-track-wrap {
    width: 100% !important;
    max-width: 100% !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
    padding: 0.5rem 0 !important;
    overflow: hidden !important;
    scrollbar-width: none !important;
    -ms-overflow-style: none !important;
    box-sizing: border-box !important;
    display: block !important;
  }

  .hs-track-wrap::-webkit-scrollbar,
  .heritage-showcase .hs-track-wrap::-webkit-scrollbar {
    display: none !important;
    width: 0 !important;
    height: 0 !important;
  }

  /* Smooth moving animated marquee on mobile and tablet */
  .hs-track,
  .heritage-showcase .hs-track,
  .heritage-page .heritage-showcase .hs-track,
  #hsTrack {
    animation: hs-marquee 24s linear infinite !important;
    animation-play-state: running !important;
    will-change: transform;
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: nowrap !important;
    gap: 1.1rem !important;
    margin: 0 !important;
    padding: 0 !important;
    width: max-content !important;
    max-width: none !important;
    flex-shrink: 0 !important;
  }

  /* Disable hover scale jumps on touch */
  .hs-track .hs-item:hover,
  .hs-item:hover {
    transform: none !important;
  }

  .hs-track .hs-item:hover>picture>img,
  .hs-item:hover>picture>img,
  .hs-track .hs-item:hover>img,
  .hs-item:hover>img {
    transform: none !important;
  }

  /* Well-proportioned packaging cards on mobile */
  .hs-track .hs-item {
    flex: 0 0 auto !important;
    width: 155px !important;
    min-width: 155px !important;
    max-width: 155px !important;
    margin: 0 !important;
    padding: 0.5rem !important;
    opacity: 1 !important;
    visibility: visible !important;
    display: flex !important;
  }

  .hs-track .hs-item picture {
    height: 185px !important;
    width: 100% !important;
    margin-bottom: 0.35rem !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
  }

  .hs-track .hs-item picture img,
  .hs-track .hs-item img {
    max-width: 100% !important;
    max-height: 100% !important;
    object-fit: contain !important;
    opacity: 1 !important;
    visibility: visible !important;
    display: block !important;
  }

  .hs-track .hs-item span {
    font-size: 0.85rem !important;
    font-weight: 700 !important;
    color: var(--ink) !important;
    opacity: 1 !important;
    visibility: visible !important;
    text-align: center !important;
    display: block !important;
  }
}

/* ===== PREMIUM WOW MOMENT ANIMATIONS ===== */
@keyframes fadeInDown {
  0% {
    opacity: 0;
    transform: translateY(-20px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes scaleInCenter {
  0% {
    opacity: 0;
    transform: scale(0.95);
  }

  100% {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes slideInLeft {
  0% {
    opacity: 0;
    transform: translateX(-30px);
  }

  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInRight {
  0% {
    opacity: 0;
    transform: translateX(30px);
  }

  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes glowPulse {

  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(180, 134, 58, 0.4);
  }

  50% {
    box-shadow: 0 0 0 10px rgba(180, 134, 58, 0);
  }
}

@keyframes shimmer {
  0% {
    background-position: -1000px 0;
  }

  100% {
    background-position: 1000px 0;
  }
}

/* Apply animations to hero elements */
.carousel-section {
  animation: fadeInDown 0.8s var(--ease) forwards;
}

.hero-inner {
  animation: fadeInUp 0.8s var(--ease) 0.2s forwards;
  opacity: 0;
}

.hero-title {
  animation: fadeInDown 1s var(--ease) 0.4s forwards;
  opacity: 0;
}

.hero-desc {
  animation: fadeInUp 0.9s var(--ease) 0.5s forwards;
  opacity: 0;
}

.hero-actions {
  animation: scaleInCenter 0.8s var(--ease) 0.6s forwards;
  opacity: 0;
}

/* Enhanced button hover effects */
.btn-gold {
  position: relative;
  overflow: hidden;
  transition: all 0.4s var(--ease);
  box-shadow: var(--shadow-light);
}

.btn-gold:hover {
  box-shadow: 0 20px 40px rgba(180, 134, 58, 0.3);
  transform: translateY(-3px);
  animation: glowPulse 1.5s infinite;
}

.btn-ghost {
  position: relative;
  transition: all 0.4s var(--ease);
}

.btn-ghost:hover {
  background: var(--gold-pale);
  transform: translateY(-2px);
  box-shadow: var(--shadow-medium);
}

.hs-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  text-decoration: none;
  transition: opacity 0.45s var(--ease-soft), transform 0.45s var(--ease-soft);
  padding: 0.8rem;
  border-radius: 8px;
  position: relative;
}

.hs-item:hover {
  transform: translateY(-12px);
}

.hs-item picture {
  display: block;
  width: 100%;
  height: 260px;
  overflow: hidden;
  border-radius: 6px;
  margin-bottom: 0.4rem;
}

.hs-item>picture>img,
.hs-item>img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: drop-shadow(0 8px 16px rgba(92, 61, 31, 0.2));
  transition: transform 0.55s var(--ease-soft), filter 0.55s var(--ease-soft);
}

.hs-item:hover>picture>img,
.hs-item:hover>img {
  transform: scale(1.08) translateY(-8px);
  filter: drop-shadow(0 28px 40px rgba(92, 61, 31, 0.36)) drop-shadow(0 8px 16px rgba(43, 32, 21, 0.16));
}

.hs-item:focus-visible {
  outline: none;
}

.hs-item span {
  font-family: var(--f-body);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--ink);
  transition: color 0.35s var(--ease-soft);
  text-align: center;
  line-height: 1.3;
  max-width: 100%;
}

.hs-item:hover span {
  color: var(--gold-bright);
}

/* Responsive breakpoints */
@media (max-width: 1200px) {
  .hs-grid {
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: clamp(1.5rem, 3vw, 2.5rem);
  }
}

@media (max-width: 768px) {
  .hs-grid {
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: clamp(1.2rem, 2.5vw, 2rem);
  }

  .hs-grid .hs-item {
    padding: 0.75rem;
    gap: 0.8rem;
  }

  .hs-grid .hs-item span {
    font-size: 0.9rem !important;
    letter-spacing: 0.03em !important;
    font-weight: 800 !important;
  }
}

@media (max-width: 480px) {
  .hs-grid {
    grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
    gap: 1rem;
  }

  .hs-grid .hs-item {
    padding: 0.5rem;
    gap: 0.6rem;
  }

  .hs-grid .hs-item span {
    font-size: 0.85rem !important;
    letter-spacing: 0.02em !important;
    font-weight: 800 !important;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hs-item {
    animation: none;
  }

  .hs-item:hover {
    transform: none;
  }

  .hs-item:hover>img {
    transform: none;
  }
}

.legacy-photo {
  margin-top: 2rem;
  padding: 10px;
  background: var(--white);
  border: 1px solid var(--gold-line);
  box-shadow: 0 20px 44px -28px rgba(43, 32, 21, 0.35);
  max-width: 34rem;
}

.legacy-photo img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.legacy-photo figcaption {
  margin-top: 0.7rem;
  padding: 0 0.2rem 0.3rem;
  font-family: var(--f-display);
  font-style: italic;
  font-size: 0.92rem;
  color: var(--gold-deep);
  text-align: center;
}

.legacy-sign {
  margin-top: 2.2rem;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding: 1.8rem 2rem;
  background: linear-gradient(135deg, rgba(255, 248, 240, 0.5) 0%, rgba(245, 238, 225, 0.3) 100%);
  border: 2px solid rgba(198, 160, 79, 0.35);
  border-radius: 8px;
  box-shadow:
    inset 0 1px 2px rgba(255, 255, 255, 0.8),
    0 8px 20px -4px rgba(92, 61, 31, 0.15);
  position: relative;
}

.legacy-sign::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold-deep), transparent);
  border-radius: 8px 8px 0 0;
}

.legacy-sign .sig-mark {
  width: 64px;
  height: 64px;
  flex-shrink: 0;
}

.legacy-sign .sig-text .name {
  font-family: var(--f-display);
  font-style: italic;
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--ink);
  letter-spacing: 0.02em;
}

.legacy-sign .sig-text .role {
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold-deep);
  font-weight: 700;
  margin-top: 2px;
}

.timeline {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.timeline::before {
  content: "";
  position: absolute;
  left: 27px;
  top: 14px;
  bottom: 14px;
  width: 1px;
  background: linear-gradient(var(--gold-line), var(--gold), var(--gold-line));
}

.t-item {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 1.6rem;
  padding-block: 1.6rem;
  border-bottom: 1px solid var(--gold-line-soft);
}

.t-item:last-child {
  border-bottom: none;
}

.t-node {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--white);
  border: 1px solid var(--gold-line);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
  box-shadow: 0 8px 20px -12px rgba(124, 90, 36, 0.4);
}

.t-node svg {
  width: 26px;
  height: 26px;
}

.t-body .t-year {
  font-family: var(--f-display);
  font-style: italic;
  color: var(--gold-deep);
  font-size: 0.95rem;
}

.t-body h3 {
  font-family: var(--f-display);
  font-weight: 600;
  font-size: 1.35rem;
  margin-top: 0.25rem;
  color: var(--ink);
}

.t-body p {
  margin-top: 0.5rem;
  color: var(--ink-soft);
  font-size: 0.95rem;
  line-height: 1.7;
  max-width: 32rem;
}

/* =========================================================================
   STATS COUNTER BAND
   ========================================================================= */
.stats {
  background: linear-gradient(135deg, var(--beige) 0%, var(--beige-deep) 100%);
  color: var(--ink);
  position: relative;
  border-top: 2px solid var(--gold-line-rich);
  border-bottom: 2px solid var(--gold-line-rich);
}

.stats::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 120% at 10% 0%, rgba(201, 160, 70, 0.28), transparent 70%);
  pointer-events: none;
}

.stats::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 100% 60% at 90% 100%, rgba(124, 90, 36, 0.12), transparent 60%);
  pointer-events: none;
}

.stats-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  padding-block: clamp(3.6rem, 7vw, 5.5rem);
}

.stat {
  text-align: center;
  border-left: 2px solid var(--gold-line-rich);
  transition: transform 0.5s var(--ease-soft), opacity 0.5s;
  position: relative;
  z-index: 1;
}

.stat:first-child {
  border-left: none;
}

.stat:hover {
  transform: translateY(-6px) scale(1.02);
}

.stat .num {
  font-family: var(--f-display);
  font-weight: 600;
  font-size: clamp(2.6rem, 5vw, 4rem);
  color: var(--gold-deepest);
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 2px;
  text-shadow: 0 3px 12px rgba(92, 61, 31, 0.2);
  transition: color 0.4s;
}

.stat:hover .num {
  color: var(--gold);
}

.stat .label {
  margin-top: 0.7rem;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-soft);
  transition: color 0.3s;
}

.stat:hover .label {
  color: var(--ink);
}

/* =========================================================================
   PRODUCT SHOWCASE
   ========================================================================= */
.products {
  display: none !important;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.2rem;
}

.p-card {
  background: var(--white);
  border: none;
  padding: 0;
  position: relative;
  overflow: hidden;
  scroll-margin-top: 120px;
  transition: box-shadow 0.5s var(--ease-soft), transform 0.5s var(--ease-soft), border-color 0.5s;
  display: flex;
  flex-direction: column;
}

.p-card:hover {
  box-shadow: 0 30px 58px -24px rgba(43, 32, 21, 0.38);
  border-color: var(--gold-line);
  transform: translateY(-4px);
}

.p-media {
  aspect-ratio: 1 / 1;
  background:
    radial-gradient(circle at 50% 38%, var(--white) 0%, var(--ivory-deep) 72%, var(--beige-deep) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.p-media::after {
  content: "";
  position: absolute;
  inset: 14px;
  border: none;
  transition: inset 0.5s var(--ease-soft), border-color 0.5s;
  pointer-events: none;
}

.p-card:hover .p-media::after {
  inset: 8px;
  border-color: var(--gold-line);
}

.p-media svg {
  width: 54%;
  height: 54%;
  color: var(--gold-deep);
  transition: transform 0.6s var(--ease-soft);
}

.p-card:hover .p-media svg {
  transform: scale(1.08) rotate(-2deg);
}

.p-media picture {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: 100% !important;
  height: 100% !important;
  max-width: 100% !important;
  max-height: 100% !important;
}

.p-media img,
.p-media picture img {
  position: relative !important;
  inset: auto !important;
  display: block !important;
  width: auto !important;
  height: auto !important;
  max-width: 88% !important;
  max-height: 88% !important;
  object-fit: contain !important;
  object-position: center center !important;
  filter: drop-shadow(0 10px 18px rgba(43, 32, 21, 0.16));
  transition: transform 0.5s var(--ease-soft) !important;
  margin: auto !important;
}

.p-media img.pos-bottom {
  object-position: center 78%;
}

.p-card:hover .p-media img,
.p-card:hover .p-media picture img {
  transform: scale(1.04);
}

/* real packaging cutouts are transparent PNGs (die-cut pouch, lots of
   padding in the source canvas) - presented fully contained without any cropping */
.p-media img.p-cutout,
.p-media picture img.p-cutout {
  position: relative !important;
  inset: auto !important;
  display: block !important;
  width: auto !important;
  height: auto !important;
  max-width: 88% !important;
  max-height: 88% !important;
  object-fit: contain !important;
  object-position: center center !important;
  filter: drop-shadow(0 12px 22px rgba(43, 32, 21, 0.2)) !important;
  margin: auto !important;
}

/* corner brackets, museum-label feel */
.bracket {
  position: absolute;
  width: 22px;
  height: 22px;
  border: 1.5px solid var(--gold);
  opacity: 0;
  transition: opacity 0.5s var(--ease-soft), transform 0.5s var(--ease-soft);
}

.bracket.tl {
  top: 10px;
  left: 10px;
  border-right: none;
  border-bottom: none;
  transform: translate(6px, 6px);
}

.bracket.br {
  bottom: 10px;
  right: 10px;
  border-left: none;
  border-top: none;
  transform: translate(-6px, -6px);
}

.p-card:hover .bracket {
  opacity: 1;
  transform: none;
}

.p-body {
  padding: 1.1rem 1.2rem 1.4rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.p-tag {
  font-size: 0.66rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-deep);
  font-weight: 700;
}

.p-body h3 {
  font-family: var(--f-display);
  font-weight: 600;
  font-size: 1.42rem;
  margin-top: 0.35rem;
  color: var(--ink);
}

.p-body p {
  margin-top: 0.6rem;
  font-size: 0.9rem;
  color: var(--ink-soft);
  line-height: 1.65;
  min-height: 3.3em;
  flex: 1;
}

.p-enquire {
  margin-top: 1.1rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink);
  border-bottom: 1px solid var(--ink);
  padding-bottom: 3px;
  transition: color 0.35s, border-color 0.35s, gap 0.35s;
  position: relative;
  z-index: 2;
}

.p-enquire:hover {
  color: #1FA855;
  border-color: #1FA855;
  gap: 0.8rem;
}

.p-enquire svg {
  width: 13px;
  height: 13px;
}

.p-card-link {
  position: absolute;
  inset: 0;
  z-index: 1;
  cursor: pointer;
}

.p-card-link:focus-visible {
  outline: 2px solid var(--gold-deep);
  outline-offset: -2px;
}

.products-more {
  margin-top: 2.6rem;
  text-align: center;
}

/* =========================================================================
   SHOP PAGE — filter sidebar + catalogue grid
   (reuses .p-card/.p-media/.p-body/.bracket above for the cards themselves;
   only the sidebar + quick-action icon row are new here)
   ========================================================================= */
.shop-container {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: clamp(2rem, 4vw, 3.5rem);
  align-items: start;
  padding-block: clamp(2rem, 4vw, 3rem) clamp(3rem, 6vw, 5rem);
}

.shop-filters {
  position: sticky;
  top: 110px;
  background: linear-gradient(165deg, var(--white) 0%, var(--ivory) 100%);
  border: none;
  box-shadow: 0 24px 44px -30px rgba(43, 32, 21, 0.3);
  padding: 1.8rem 1.5rem;
}

.filter-section {
  margin-bottom: 2.1rem;
}

.filter-section:last-child {
  margin-bottom: 0;
}

.filter-title {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  font-family: var(--f-display);
  font-weight: 600;
  font-size: 1rem;
  color: var(--ink);
  margin-bottom: 1.1rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid var(--gold-line-soft);
}

.filter-title svg {
  width: 16px;
  height: 16px;
  color: var(--gold-deep);
  flex-shrink: 0;
}

.filter-options {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}

.shop-filter-btn {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  text-align: left;
  padding: 0.5rem 0.6rem;
  border: 1px solid transparent;
  background: transparent;
  color: var(--ink-soft);
  font-family: var(--f-body);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  cursor: pointer;
  transition: background 0.35s var(--ease-soft), border-color 0.35s, color 0.35s, transform 0.3s var(--ease-soft);
}

.sfb-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  flex-shrink: 0;
  border: none;
  background: var(--white);
  color: var(--gold-deep);
  transition: background 0.35s var(--ease-soft), border-color 0.35s, color 0.35s;
}

.sfb-icon svg {
  width: 15px;
  height: 15px;
}

.sfb-label {
  flex: 1;
  text-transform: uppercase;
}

.sfb-count {
  font-family: var(--f-body);
  font-size: 0.66rem;
  font-weight: 700;
  color: var(--gold-deep);
  background: var(--ivory-deep);
  border: none;
  min-width: 1.7em;
  text-align: center;
  padding: 0.2em 0.5em;
  border-radius: 999px;
  transition: background 0.35s var(--ease-soft), border-color 0.35s, color 0.35s;
}

.shop-filter-btn:hover {
  background: var(--ivory);
  border-color: var(--gold-line-soft);
  color: var(--ink);
  transform: translateX(3px);
}

.shop-filter-btn:hover .sfb-icon {
  border-color: var(--gold);
  color: var(--gold-deep);
}

.shop-filter-btn.is-active {
  background: var(--gold-deep);
  border-color: var(--gold-deep);
  color: var(--white);
}

.shop-filter-btn.is-active .sfb-icon {
  background: var(--white);
  border-color: var(--white);
  color: var(--gold-deep);
}

.shop-filter-btn.is-active .sfb-count {
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.4);
  color: var(--white);
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 1.6rem;
}

.p-quick-actions {
  display: flex;
  gap: 0.6rem;
  margin-top: 1.1rem;
  position: relative;
  z-index: 2;
}

.p-quick-icon {
  width: 34px;
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--gold-line);
  color: var(--gold-deep);
  transition: background 0.35s var(--ease-soft), border-color 0.35s, color 0.35s, transform 0.35s var(--ease-soft);
}

.p-quick-icon svg {
  width: 15px;
  height: 15px;
}

.p-quick-icon:hover {
  background: var(--gold-deep);
  border-color: var(--gold-deep);
  color: var(--white);
  transform: translateY(-2px);
}

button.p-quick-icon {
  appearance: none;
  background: transparent;
  font-family: inherit;
  padding: 0;
}

/* ---------------------------- shop search & results ---------------------------- */
.shop-main {
  min-width: 0;
}

.shop-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
  margin-bottom: 1.8rem;
}

.shop-search {
  position: relative;
  display: flex;
  align-items: center;
  flex: 1 1 320px;
  max-width: 420px;
  border: 1px solid var(--gold-line);
  background: var(--white);
  transition: border-color 0.3s;
}

.shop-search:focus-within {
  border-color: var(--gold);
}

.shop-search svg {
  width: 16px;
  height: 16px;
  margin-left: 0.9rem;
  color: var(--ink-faint);
  flex-shrink: 0;
}

.shop-search input {
  width: 100%;
  border: 0;
  background: transparent;
  padding: 0.75rem 0.9rem;
  font-family: var(--f-body);
  font-size: 0.88rem;
  color: var(--ink);
  outline: none;
}

.shop-search input::placeholder {
  color: var(--ink-faint);
}

.shop-search-clear {
  appearance: none;
  border: 0;
  background: transparent;
  color: var(--ink-faint);
  font-size: 1.3rem;
  line-height: 1;
  padding: 0 0.9rem;
  cursor: pointer;
  transition: color 0.3s;
}

.shop-search-clear:hover {
  color: var(--seal);
}

.shop-results-count {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--ink-faint);
  white-space: nowrap;
}

.shop-no-results {
  text-align: center;
  padding: 3rem 1rem;
  color: var(--ink-soft);
  font-size: 0.95rem;
}

.shop-clear-link {
  appearance: none;
  border: 0;
  background: transparent;
  color: var(--gold-deep);
  font-weight: 700;
  text-decoration: underline;
  cursor: pointer;
  padding: 0;
  font-size: inherit;
}

/* ---------------------------- quick view modal ---------------------------- */
.qv-overlay {
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(43, 32, 21, 0.55);
  backdrop-filter: blur(4px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  opacity: 0;
  transition: opacity 0.3s var(--ease-soft);
}

.qv-overlay.is-open {
  opacity: 1;
}

.qv-overlay[hidden] {
  display: none;
}

.qv-modal {
  background: var(--ivory);
  max-width: 860px;
  width: 100%;
  max-height: 88vh;
  overflow-y: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  position: relative;
  transform: scale(0.96) translateY(10px);
  transition: transform 0.35s var(--ease-soft);
  box-shadow: 0 40px 80px -20px rgba(43, 32, 21, 0.5);
}

.qv-overlay.is-open .qv-modal {
  transform: scale(1) translateY(0);
}

.qv-close {
  position: absolute;
  top: 0.8rem;
  right: 0.8rem;
  z-index: 2;
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--white);
  border: 1px solid var(--gold-line);
  color: var(--ink);
  font-size: 1.4rem;
  line-height: 1;
  cursor: pointer;
  transition: background 0.3s, color 0.3s;
}

.qv-close:hover {
  background: var(--gold-deep);
  color: var(--white);
}

.qv-media {
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}

.qv-media img {
  width: 100%;
  height: auto;
  max-height: 60vh;
  object-fit: contain;
  filter: drop-shadow(0 20px 30px rgba(43, 32, 21, 0.25));
}

.qv-info {
  padding: clamp(1.8rem, 4vw, 3rem);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.qv-info h3 {
  font-family: var(--f-display);
  font-size: clamp(1.6rem, 3vw, 2.1rem);
  color: var(--ink);
  margin-top: 0.4rem;
}

.qv-info p#qvDesc {
  margin-top: 0.9rem;
  color: var(--ink-soft);
  font-size: 0.95rem;
  line-height: 1.75;
}

.qv-cta {
  margin-top: 1.8rem;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

@media (max-width: 720px) {
  .qv-modal {
    grid-template-columns: 1fr;
    max-height: 92vh;
  }

  .qv-media {
    padding: 1.5rem;
  }

  .qv-media img {
    max-height: 40vh;
  }
}

@media (max-width: 860px) {
  .shop-container {
    grid-template-columns: 1fr;
  }

  .shop-filters {
    position: static;
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
  }

  .filter-section {
    margin-bottom: 0;
  }
}

@media (max-width: 640px) {
  .shop-container {
    padding-block: 1rem 1.5rem;
  }

  .shop-filters {
    display: none;
  }

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

/* =========================================================================
   FLASH HIGHLIGHT (jump-to-category from nav / quick-shop)
   ========================================================================= */
.p-card.flash {
  box-shadow: 0 0 0 3px var(--gold), 0 26px 50px -24px rgba(43, 32, 21, 0.35);
}

/* =========================================================================
   SIGNATURE / GIFTING COLLECTION
   ========================================================================= */
.hampers {
  background:
    radial-gradient(ellipse 80% 60% at 50% 0%, rgba(201, 160, 70, 0.14), transparent 65%),
    var(--beige);
}

.hamper-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2.4rem;
  max-width: 1080px;
  margin-inline: auto;
}

.h-card {
  position: relative;
  background: linear-gradient(165deg, #FFFDF7, var(--ivory) 60%, var(--ivory-deep));
  border: 1px solid var(--gold-line);
  padding: 0;
  min-height: 460px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transition: transform 0.6s var(--ease-soft), box-shadow 0.6s var(--ease-soft);
}

.h-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 34px 60px -26px rgba(43, 32, 21, 0.4);
}

.h-card::before {
  content: "";
  position: absolute;
  inset: 10px;
  border: none;
  pointer-events: none;
  z-index: 2;
}

.h-media {
  position: relative;
  aspect-ratio: 1 / 0.92;
  overflow: hidden;
}

.h-media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease-soft);
}

.h-card:hover .h-media img {
  transform: scale(1.08) rotate(0.5deg);
}

.h-body {
  padding: 1.7rem 2.2rem 2.4rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.h-seal {
  width: 44px;
  height: 44px;
  margin-bottom: 1rem;
}

.h-card h3 {
  font-family: var(--f-display);
  font-weight: 600;
  font-size: 1.7rem;
  color: var(--ink);
}

.h-card .h-sub {
  margin-top: 0.3rem;
  font-family: var(--f-display);
  font-style: italic;
  color: var(--gold-deep);
  font-size: 1rem;
}

.h-card p {
  margin-top: 1.1rem;
  color: var(--ink-soft);
  font-size: 0.92rem;
  line-height: 1.75;
  flex-grow: 1;
}

.h-card .p-enquire {
  margin-top: 1.6rem;
  align-self: flex-start;
}

.h-ribbon {
  position: absolute;
  top: 22px;
  right: -46px;
  z-index: 3;
  background: var(--seal);
  color: var(--white);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 0.4rem 3.2rem;
  transform: rotate(40deg);
  box-shadow: 0 6px 12px -6px rgba(0, 0, 0, 0.3);
}

.promise-line {
  margin-top: 1.3rem;
  font-family: var(--f-display);
  font-style: italic;
  font-weight: 500;
  color: var(--gold-deep);
  font-size: 1.05rem;
}

/* =========================================================================
   QUALITY JOURNEY (horizontal variant of the .timeline component used by
   Our Legacy — same .t-item/.t-node/.t-body building blocks, reoriented)
   ========================================================================= */
.quality-journey {
  background: linear-gradient(135deg, var(--ivory-deep) 0%, var(--beige) 50%, var(--ivory-deep) 100%);
  position: relative;
}

.quality-journey::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0.5;
}

.timeline--horizontal {
  flex-direction: row;
  align-items: flex-start;
  gap: 0;
}

.timeline--horizontal::before {
  left: 0;
  right: 0;
  top: 28px;
  bottom: auto;
  width: auto;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold-deep), var(--gold), var(--gold-deep), transparent);
  box-shadow: 0 2px 8px rgba(124, 90, 36, 0.2);
  display: none;
}

.timeline--horizontal .t-item {
  grid-template-columns: 1fr;
  justify-items: center;
  text-align: center;
  border-bottom: none;
  padding-block: 0;
  padding-bottom: 1.2rem;
  flex: 1;
  gap: 1.1rem;
  min-height: 380px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
}

.timeline--horizontal .t-body p {
  max-width: none;
}

.timeline-fill--horizontal {
  left: 0;
  top: 28px;
  width: 0%;
  height: 1px;
}

@media (max-width: 860px) {
  .timeline--horizontal {
    flex-direction: column;
  }

  .timeline--horizontal::before {
    left: 27px;
    top: 14px;
    bottom: 14px;
    right: auto;
    width: 1px;
    height: auto;
    background: linear-gradient(var(--gold-line), var(--gold), var(--gold-line));
  }

  .timeline--horizontal .t-item {
    grid-template-columns: 56px 1fr;
    justify-items: start;
    text-align: left;
    border-bottom: 1px solid var(--gold-line-soft);
    padding-block: 1.6rem;
  }

  .timeline--horizontal .t-item:last-child {
    border-bottom: none;
  }

  .timeline-fill--horizontal {
    left: 27px;
    top: 14px;
    width: 1px;
    height: 0%;
  }
}

@media (max-width: 768px) {
  .quality-journey .section-head {
    padding-top: 32px !important;
  }

  .timeline--horizontal {
    flex-direction: column;
  }

  .timeline--horizontal .t-item {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center !important;
    padding-block: 1.6rem;
    margin-bottom: 24px !important;
    border-bottom: none;
  }

  .timeline--horizontal .t-node {
    margin: 0 auto 16px auto !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
  }

  .timeline--horizontal .t-body .t-year {
    text-align: center !important;
  }

  .timeline--horizontal .t-body h3 {
    text-align: center !important;
  }

  .timeline--horizontal .t-body p {
    text-align: center !important;
  }
}

/* Aggressive spacing reduction for timeline items on mobile & tablet */
@media (max-width: 768px) {
  .timeline--horizontal .t-item {
    padding-block: 0.5rem !important;
    margin-bottom: 0.8rem !important;
  }

  .timeline--horizontal .t-node {
    margin: 0 auto 8px auto !important;
  }

  .quality-journey .section-head {
    padding-top: 0 !important;
    margin-bottom: 1rem !important;
  }
}

@media (max-width: 1080px) and (min-width: 769px) {
  .timeline--horizontal .t-item {
    padding-block: 0.8rem !important;
    margin-bottom: 1.2rem !important;
  }

  .timeline--horizontal .t-node {
    margin: 0 auto 12px auto !important;
  }

  .quality-journey .section-head {
    margin-bottom: 1.2rem !important;
  }
}

/* =========================================================================
   DISTRIBUTOR / PARTNER
   ========================================================================= */
.partner {
  background: linear-gradient(155deg, var(--beige), var(--beige-deep));
  color: var(--ink);
}

.partner-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(2.5rem, 6vw, 5rem);
  align-items: center;
}

.partner p.lead {
  margin-top: 1.3rem;
  color: var(--ink-soft);
  font-size: 1.02rem;
  line-height: 1.8;
  max-width: 34rem;
}

.partner-tags {
  margin-top: 1.8rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.partner-tags span {
  border: 1px solid var(--gold-line);
  color: var(--gold-deep);
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.55rem 1.1rem;
}

.partner-actions {
  margin-top: 2.2rem;
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.partner-card {
  background: var(--white);
  border: 1px solid var(--gold-line);
  padding: 2.4rem;
  box-shadow: 0 20px 44px -28px rgba(43, 32, 21, 0.35);
}

.partner-card ul {
  display: flex;
  flex-direction: column;
  gap: 1.3rem;
}

.partner-card li {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  font-size: 0.94rem;
  color: var(--ink-soft);
  line-height: 1.6;
}

.partner-card li svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  margin-top: 2px;
  color: var(--gold-deep);
}

.partner-card strong {
  color: var(--ink);
}

/* =========================================================================
   BRAND PROMISE
   ========================================================================= */
.brand-promise {
  text-align: center;
}

.brand-promise .wrap {
  max-width: 760px;
  margin-inline: auto;
}

.promise-rule {
  width: 60px;
  height: 1px;
  background: var(--gold);
  margin: 0 auto 1.7rem;
}

.promise-line-lg {
  font-family: var(--f-display);
  font-style: italic;
  font-weight: 500;
  font-size: clamp(1.5rem, 3.2vw, 2.1rem);
  line-height: 1.55;
  color: var(--ink);
}

/* =========================================================================
   BRAND EXPERIENCE
   ========================================================================= */
.brand-experience {
  position: relative;
  background:
    radial-gradient(ellipse 70% 60% at 50% 0%, rgba(201, 160, 70, 0.12), transparent 65%),
    var(--ivory);
}

.brand-experience .section-head {
  max-width: 42rem;
}

.be-title {
  font-size: clamp(2.3rem, 4.6vw, 3.8rem);
}

/* =========================================================================
   TESTIMONIALS
   ========================================================================= */
.testimonials {
  background: var(--ivory);
}

.google-badge {
  display: none !important;
  align-items: center;
  gap: 0.7rem;
  margin: 1.4rem auto 0;
  padding: 0.7rem 1.3rem;
  background: var(--white);
  border: none;
  border-radius: 999px;
  box-shadow: 0 12px 26px -18px rgba(43, 32, 21, 0.4);
  transition: transform 0.35s var(--ease-soft), box-shadow 0.35s, border-color 0.35s;
}

.google-badge:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 34px -18px rgba(43, 32, 21, 0.45);
  border-color: var(--gold-line);
}

.google-badge .g-logo {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

.google-badge .g-stars {
  color: #F5B32B;
  font-size: 0.95rem;
  letter-spacing: 1px;
}

.google-badge .g-half {
  opacity: 0.4;
}

.google-badge .g-text {
  font-family: var(--f-body);
  font-size: 0.86rem;
  color: var(--ink-soft);
}

.google-badge .g-text strong {
  color: var(--ink);
}

.t-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2.4rem;
}

.rev-card {
  background: var(--white);
  border: 1px solid var(--gold-line-soft);
  padding: 2.2rem 2rem;
  display: flex;
  flex-direction: column;
  position: relative;
}

.rev-quote {
  font-family: var(--f-display);
  font-size: 2.6rem;
  color: var(--gold-pale);
  line-height: 1;
}

.rev-card p {
  margin-top: 0.6rem;
  font-size: 0.98rem;
  color: var(--ink-soft);
  line-height: 1.75;
  flex-grow: 1;
  font-style: italic;
}

.rev-who {
  margin-top: 1.6rem;
  display: flex;
  align-items: center;
  gap: 0.9rem;
  padding-top: 1.4rem;
  border-top: 1px solid var(--gold-line-soft);
}

.rev-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--beige);
  border: 1px solid var(--gold-line);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--f-display);
  font-weight: 600;
  font-style: italic;
  color: var(--gold-deep);
  flex-shrink: 0;
}

.rev-who .name {
  font-weight: 700;
  font-size: 0.92rem;
  color: var(--ink);
}

.rev-who .loc {
  font-size: 0.76rem;
  color: var(--ink-faint);
  margin-top: 1px;
}

@media (max-width: 900px) {
  .t-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }
}

@media (max-width: 768px) {
  .t-grid {
    grid-template-columns: 1fr;
    gap: 1.6rem;
    max-width: 560px;
    margin-inline: auto;
  }
}

/* =========================================================================
   TESTIMONIALS / REVIEWS
   ========================================================================= */
.testimonials {
  background: var(--white);
}

.testimonials .section-sub {
  max-width: 28rem;
}

.reviews-carousel {
  position: relative;
  margin-top: 3rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  overflow: hidden;
}

.carousel-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  margin-top: 1.5rem;
}

.carousel-track {
  display: flex;
  border-radius: 16px;
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  min-height: auto;
  width: 100%;
  scroll-behavior: smooth;
}

.carousel-track .review-card {
  min-width: 100%;
  flex-shrink: 0;
  min-height: auto;
  max-width: 100%;
}

.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: var(--gold);
  color: var(--white);
  border: none;
  border-radius: 50%;
  width: 48px;
  height: 48px;
  font-size: 1.5rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s var(--ease-soft);
  z-index: 30;
}

.carousel-btn:hover {
  background: var(--gold-deep);
  transform: translateY(-50%) scale(1.15);
  box-shadow: 0 8px 24px rgba(124, 90, 36, 0.4);
}

.carousel-prev {
  left: 16px;
}

.carousel-next {
  right: 16px;
}

@media (max-width: 900px) {
  .carousel-prev {
    left: 8px;
  }

  .carousel-next {
    right: 8px;
  }
}

.review-card {
  padding: 2rem;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--ivory-light) 0%, var(--ivory) 100%);
  border: 1px solid rgba(180, 134, 58, 0.1);
  box-shadow:
    0 2px 8px rgba(43, 32, 21, 0.04),
    0 8px 20px rgba(43, 32, 21, 0.08);
  transition: all 0.4s var(--ease-soft);
  display: flex;
  flex-direction: column;
  position: relative;
}

.review-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold-bright), var(--gold-deep));
  border-radius: 16px 16px 0 0;
  opacity: 0;
  transition: opacity 0.4s var(--ease-soft);
}

.review-card:hover {
  transform: translateY(-8px);
  box-shadow:
    0 4px 16px rgba(43, 32, 21, 0.08),
    0 16px 40px rgba(180, 134, 58, 0.2);
  border-color: rgba(180, 134, 58, 0.3);
}

.review-card:hover::before {
  opacity: 1;
}

.review-stars {
  display: flex;
  gap: 0.3rem;
  margin-bottom: 1rem;
}

.review-stars .star {
  font-size: 1.2rem;
  color: var(--gold-deep);
  transition: color 0.3s var(--ease-soft);
}

.review-text {
  font-size: 0.95rem;
  color: var(--ink-soft);
  line-height: 1.75;
  margin: 0 0 1.5rem 0;
  flex-grow: 1;
  font-style: italic;
  word-wrap: break-word;
  overflow-wrap: break-word;
  word-break: break-word;
  white-space: normal;
  max-width: 100%;
  display: block;
}

.review-author {
  margin-top: auto;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(180, 134, 58, 0.15);
}

.author-name {
  font-weight: 600;
  color: var(--ink);
  font-size: 0.95rem;
  margin-bottom: 0.25rem;
}

.author-tag {
  font-size: 0.8rem;
  color: var(--gold-deep);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-weight: 500;
}

.reviews-cta {
  margin-top: 3rem;
  padding: 2.5rem;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(180, 134, 58, 0.08) 0%, rgba(180, 134, 58, 0.03) 100%);
  border: 2px solid rgba(180, 134, 58, 0.15);
  text-align: center;
  opacity: 0;
  transform: translateY(20px);
  transition:
    opacity 0.75s var(--ease),
    transform 0.85s var(--ease-soft);
}

.reveal.in .reviews-cta {
  opacity: 1;
  transform: none;
}

.reviews-cta p {
  font-size: 1rem;
  color: var(--ink);
  margin: 0 0 1.5rem 0;
}

.reviews-cta .btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

/* Staggered review card animations */
.review-card {
  opacity: 0;
  transform: translateY(20px);
  transition:
    opacity 0.75s var(--ease),
    transform 0.85s var(--ease-soft),
    box-shadow 0.4s var(--ease-soft);
}

.reveal.in .review-card {
  opacity: 1;
  transform: none;
}

.review-card:nth-child(1) {
  transition-delay: 0.05s;
}

.review-card:nth-child(2) {
  transition-delay: 0.1s;
}

.review-card:nth-child(3) {
  transition-delay: 0.15s;
}

.review-card:nth-child(4) {
  transition-delay: 0.2s;
}

.review-card:nth-child(5) {
  transition-delay: 0.25s;
}

.review-card:nth-child(6) {
  transition-delay: 0.3s;
}

@media (max-width: 768px) {
  .reviews-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .review-card {
    padding: 1.5rem;
  }

  .reviews-cta {
    padding: 1.8rem;
  }

  .reviews-cta p {
    font-size: 0.95rem;
  }
}

/* =========================================================================
   FAQ
   ========================================================================= */
.faq {
  background: var(--ivory-deep);
}

.faq-list {
  max-width: 780px;
  margin: 0 auto;
}

.faq-item {
  border: 1px solid var(--gold-line-soft);
  background: var(--white);
  border-radius: 6px;
  margin-bottom: 1rem;
  padding: 0 1.4rem;
  display: block;
}

.faq-item:last-child {
  margin-bottom: 0;
}

.faq-item summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 1.4rem 0;
  font-family: var(--f-display);
  font-weight: 600;
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  color: var(--ink);
  transition: color 0.3s;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "";
  flex-shrink: 0;
  width: 13px;
  height: 13px;
  border-right: 2.5px solid var(--gold-deep);
  border-bottom: 2.5px solid var(--gold-deep);
  transform: rotate(45deg);
  transition: transform 0.35s var(--ease-soft);
}

.faq-item[open] summary {
  color: var(--gold-deep);
}

.faq-item[open] summary::after {
  transform: rotate(-135deg);
}

.faq-item summary:hover {
  color: var(--gold-deep);
}

.faq-item p {
  padding: 0 0 1.2rem 0;
  margin: 0;
  color: var(--ink);
  font-size: 0.98rem;
  line-height: 1.75;
  max-width: 100%;
}

/* =========================================================================
   CONTACT
   ========================================================================= */
.contact {
  background: var(--white);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2.5rem, 6vw, 4.5rem);
  align-items: start;
}

.contact-info-list {
  margin-top: 2rem;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.6rem;
  width: 100%;
  min-width: 0;
}

.ci {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  align-items: center;
  text-align: center;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(251, 246, 236, 0.5));
  padding: 2.2rem 1.8rem;
  border-radius: 16px;
  box-shadow: 0 8px 24px rgba(124, 90, 36, 0.12), 0 2px 8px rgba(0, 0, 0, 0.04);
  border: 1px solid rgba(227, 206, 155, 0.3);
  height: 100%;
  justify-content: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.ci:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(124, 90, 36, 0.18);
}

.ci>div {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  word-wrap: break-word;
}

.ci-icon {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--gold-bright), var(--gold));
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-bottom: 0.8rem;
  box-shadow: 0 6px 20px rgba(201, 160, 70, 0.3);
}

.ci-icon svg {
  width: 20px;
  height: 20px;
  color: var(--gold-deep);
}

.ci h4 {
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-faint);
  margin: 0 0 0.5rem 0;
  font-weight: 600;
}

.ci p,
.ci a {
  margin: 0;
  font-size: 1rem;
  color: var(--ink);
  font-weight: 600;
  line-height: 1.6;
  word-wrap: break-word;
  white-space: normal;
  overflow-wrap: break-word;
}

.ci a {
  text-decoration: none;
  display: inline-block;
  transition: color 0.3s ease;
}

.ci a:hover {
  color: var(--seal);
  text-decoration: underline;
}

/* Contact Layout: Left Branding + Right Info */
.contact-content-wrapper {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
}

.contact-left {
  display: flex;
  align-items: flex-start;
}

.contact-branding {
  text-align: center;
  padding: clamp(1.5rem, 3vw, 2.5rem);
  background: var(--ivory-deep);
  border-radius: 8px;
  width: 100%;
}

.contact-logo {
  width: 80px;
  height: 80px;
  margin-bottom: 1.2rem;
  object-fit: contain;
}

.contact-branding h2 {
  font-size: clamp(1.4rem, 3vw, 1.8rem);
  line-height: 1.2;
  margin: 0.5rem 0;
  color: var(--ink);
  font-family: var(--f-display);
  font-variation-settings: var(--f-display-vars);
}

.contact-tagline {
  font-size: 0.9rem;
  color: var(--gold-deep);
  margin: 0.8rem 0 1.5rem;
  font-weight: 500;
}

.contact-email {
  display: inline-block;
  padding: 0.6rem 1.2rem;
  background: var(--gold-bright);
  color: var(--white);
  text-decoration: none;
  border-radius: 4px;
  font-size: 0.85rem;
  font-weight: 500;
  transition: background 0.3s;
}

.contact-email:hover {
  background: var(--gold-deep);
}

.contact-right {
  display: flex;
  flex-direction: column;
}

.social-row {
  margin-top: 2.2rem;
  display: flex;
  gap: 0.8rem;
}

.social-row a {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid var(--gold-line);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.35s, border-color 0.35s;
}

.social-row a:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--white);
}

.social-row a svg {
  width: 17px;
  height: 17px;
}

.contact-panel {
  background: var(--white);
  border: none;
  padding: clamp(2rem, 4vw, 3rem);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
}

.field {
  margin-bottom: 1.3rem;
}

.field label {
  display: block;
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-faint);
  margin-bottom: 0.5rem;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  border: none;
  border-bottom: 2px solid var(--gold-line);
  background: transparent;
  padding: 0.7rem 0.2rem;
  color: var(--ink);
  transition: border-color 0.35s, box-shadow 0.35s, background 0.35s;
}

.field textarea {
  resize: vertical;
  min-height: 100px;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--gold-deepest);
  outline: none;
  background: rgba(201, 160, 70, 0.04);
  box-shadow: 0 2px 8px rgba(92, 61, 31, 0.12);
}

.form-foot {
  margin-top: 0.8rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}

.form-note {
  font-size: 0.78rem;
  color: var(--ink-faint);
}

.form-success {
  margin-top: 1rem;
  font-size: 0.85rem;
  color: var(--gold-deep);
  font-weight: 700;
  display: none;
}

.form-success.show {
  display: block;
}

.map-frame {
  margin-top: 1.6rem;
  border: none;
  overflow: hidden;
  filter: sepia(0.18) saturate(0.85) contrast(1.02);
}

.map-frame iframe {
  width: 100%;
  height: 220px;
  border: 0;
  display: block;
}

.map-container {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(124, 90, 36, 0.12);
  height: 480px;
  border: 1px solid rgba(227, 206, 155, 0.3);
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
  filter: sepia(0.18) saturate(0.85) contrast(1.02);
}

.context-sidebar {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(251, 246, 236, 0.5));
  border: 1px solid rgba(227, 206, 155, 0.3);
  border-radius: 12px;
  padding: 2rem;
  margin-top: 1.5rem;
}

.context-sidebar h4 {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--ink);
  margin: 0 0 0.8rem 0;
}

.context-sidebar p {
  margin: 0 0 0.3rem 0;
  font-size: 0.9rem;
  color: var(--ink);
  line-height: 1.5;
}

/* ========================================================================
   NEW 3-COLUMN CONTACT LAYOUT
   ======================================================================== */
.contact-grid-3col {
  display: grid;
  grid-template-columns: 1.2fr 1.3fr 1fr;
  gap: clamp(1.2rem, 3vw, 2rem);
  align-items: start;
  padding: 2rem 0;
}

.contact-col-left {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.contact-card {
  display: flex;
  gap: 0.8rem;
  padding: 1rem;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(251, 246, 236, 0.5));
  border: 1px solid var(--gold-line);
  border-left: 3px solid var(--gold);
  border-radius: 8px;
  box-shadow: 0 2px 6px rgba(124, 90, 36, 0.06);
  transition: all 0.3s ease;
}

.contact-card:hover {
  border-left-width: 4px;
  box-shadow: 0 4px 12px rgba(124, 90, 36, 0.12);
  transform: translateY(-1px);
}

.contact-card:hover .card-icon {
  transform: scale(1.08) brightness(1.12);
}

.card-icon {
  width: 44px;
  height: 44px;
  min-width: 44px;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--gold-bright), var(--gold));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  flex-shrink: 0;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(201, 160, 70, 0.15);
}

.card-icon svg {
  width: 20px;
  height: 20px;
  stroke-width: 1.8;
}

.card-content {
  flex: 1;
}

.card-content h4 {
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold-deep);
  margin: 0 0 0.3rem 0;
  font-weight: 700;
}

.card-content p {
  margin: 0 0 0.3rem 0;
  font-size: 0.8rem;
  color: var(--ink);
  line-height: 1.5;
}

.card-secondary {
  font-size: 0.75rem;
  color: var(--ink-soft);
}

.card-link {
  display: inline-block;
  color: var(--gold-deep);
  text-decoration: none;
  font-size: 0.75rem;
  font-weight: 500;
  margin-top: 0.3rem;
  transition: all 0.3s ease;
}

.card-link:hover {
  color: var(--gold);
}

.contact-socials {
  display: flex;
  gap: 0.8rem;
  margin-top: 0.5rem;
}

.contact-socials a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.contact-socials a:hover {
  background: var(--gold-deep);
  transform: scale(1.12);
}

.contact-socials svg {
  width: 18px;
  height: 18px;
}

.contact-col-center {
  display: flex;
  flex-direction: column;
}

.form-container {
  background: var(--white);
  padding: 1.5rem;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(124, 90, 36, 0.08);
  border: 1px solid rgba(227, 206, 155, 0.2);
}

.form-container .eyebrow {
  text-transform: uppercase;
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  color: var(--gold-deep);
  font-weight: 600;
  margin: 0 0 0.3rem 0;
}

.form-container .section-title {
  margin: 0 0 1rem 0;
  font-size: 1.6rem;
  line-height: 1.2;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.8rem;
  margin-bottom: 0.8rem;
}

.field {
  margin-bottom: 0.8rem;
}

.field label {
  font-size: 0.65rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-faint);
  margin-bottom: 0.3rem;
  display: block;
  font-weight: 600;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 0.7rem 0.8rem;
  border: 1px solid var(--gold-line);
  border-radius: 6px;
  background: rgba(201, 160, 70, 0.01);
  color: var(--ink);
  font-family: var(--f-body);
  font-size: 0.85rem;
  transition: all 0.3s ease;
  box-sizing: border-box;
}

.field input::placeholder,
.field textarea::placeholder {
  color: var(--ink-soft);
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--gold);
  background: rgba(201, 160, 70, 0.02);
  box-shadow: 0 0 0 2px rgba(201, 160, 70, 0.08);
}

.field textarea {
  resize: vertical;
  min-height: 80px;
}

.field-counter {
  font-size: 0.7rem;
  color: var(--ink-soft);
  margin-top: 0.15rem;
  text-align: right;
  display: block;
}

.form-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 0.3rem;
}

.form-note {
  font-size: 0.7rem;
  color: var(--ink-soft);
  margin: 0;
}

.form-success {
  display: none;
  color: #2d8659;
  background: rgba(45, 134, 89, 0.05);
  padding: 1rem;
  border-radius: 8px;
  border-left: 4px solid #2d8659;
  margin-top: 1rem;
  font-size: 0.9rem;
}

.form-success.show {
  display: block;
  animation: slideIn 0.3s ease-out;
}

@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }

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

.contact-col-right {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  position: sticky;
  top: 2rem;
}

/* ===== RESPONSIVE CONTACT GRID ===== */
@media (max-width: 1024px) {
  .contact-grid-3col {
    grid-template-columns: 1.1fr 1.4fr;
    gap: 2.5rem;
    padding: 0 2rem;
  }

  .contact-col-left {
    gap: 1.5rem;
  }

  .contact-col-right {
    position: static;
    display: none;
  }
}

@media (max-width: 768px) {
  .contact-grid-3col {
    grid-template-columns: 1fr;
    gap: 1.8rem;
    padding: 0 1.5rem;
  }

  .contact-col-left,
  .contact-col-center,
  .contact-col-right {
    width: 100%;
  }

  .contact-col-left {
    gap: 1.4rem;
  }

  .contact-col-right {
    display: none;
  }

  .form-container {
    padding: 1.8rem !important;
    background: var(--white);
    border-radius: 12px;
  }

  .form-container .section-title {
    font-size: 1.5rem;
    margin-bottom: 1rem;
  }

  input[type="text"],
  input[type="email"],
  input[type="tel"],
  textarea,
  select {
    height: 44px;
    padding: 10px 12px;
    font-size: 1rem;
  }

  textarea {
    height: 120px;
    resize: vertical;
  }

  .form-actions {
    margin-top: 1rem;
  }

  .form-actions button {
    width: 100%;
    height: 48px;
    font-size: 1rem;
  }
}

/* Mobile Responsive: Contact Layout */
@media (max-width: 768px) {
  .contact-content-wrapper {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .contact-branding {
    padding: 1.5rem;
  }

  .contact-logo {
    width: 60px;
    height: 60px;
  }

  .contact-branding h2 {
    font-size: 1.4rem;
  }
}

.whatsapp-float {
  position: fixed;
  right: 1.6rem;
  bottom: 1.6rem;
  z-index: 500;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #25D366;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 14px 30px -12px rgba(37, 211, 102, 0.6);
  transition: transform 0.4s var(--ease-soft);
}

.whatsapp-float:hover {
  transform: scale(1.08) translateY(-2px);
}

.whatsapp-float svg {
  width: 28px;
  height: 28px;
  color: #fff;
}

/* mobile sticky action bar */
.mobile-actionbar {
  display: none !important;
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 600;
  grid-template-columns: 1fr 1fr;
}

.mobile-actionbar a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.95rem 0.5rem;
  font-family: var(--f-body);
  font-size: 0.86rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: #fff;
}

.mobile-actionbar svg {
  width: 19px;
  height: 19px;
}

.mab-call {
  background: var(--gold-deep);
}

.mab-wa {
  background: #25D366;
}

/* =========================================================================
   FOOTER
   ========================================================================= */
.site-footer {
  background: linear-gradient(135deg, var(--beige-deep) 0%, var(--ivory-deep) 100%);
  color: var(--ink-soft);
  padding-block: clamp(3.5rem, 6vw, 5rem) 2rem;
  border-top: 2px solid var(--gold-line-rich);
  position: relative;
  overflow: hidden;
}

.site-footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), var(--gold-deep), transparent);
  opacity: 0.6;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr 0.8fr 1fr;
  gap: 3rem;
  padding: 4rem;
  position: relative;
  background: linear-gradient(135deg, #3d2817 0%, #4a3520 50%, #3d2817 100%);
  border-radius: 12px;
}

.footer-grid::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(212, 175, 76, 0.06) 50%, transparent);
  z-index: 0;
  pointer-events: none;
  border-radius: 12px;
}

.footer-brand {
  max-width: 300px;
  padding: 2.5rem;
  background: linear-gradient(135deg, rgba(212, 175, 76, 0.15) 0%, rgba(212, 175, 76, 0.05) 100%);
  border-radius: 14px;
  border-left: 6px solid var(--gold);
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  position: relative;
  z-index: 1;
  color: #faf8f3;
}

.footer-brand:hover {
  background: linear-gradient(135deg, rgba(212, 175, 76, 0.25) 0%, rgba(212, 175, 76, 0.1) 100%);
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(212, 175, 76, 0.3);
}

.footer-brand .brand {
  margin-bottom: 1.1rem;
  display: flex;
  justify-content: center;
}

.footer-brand .brand-name {
  display: none !important;
  color: #faf8f3;
}

.footer-brand .brand-name .bottom {
  color: var(--gold);
}

.footer-brand p {
  font-size: 0.95rem;
  line-height: 1.8;
  color: #d4c5b0;
  font-weight: 500;
}

.footer-col {
  padding: 0;
  background: transparent;
  border-radius: 0;
  border-top: none;
  transition: all 0.3s ease;
  position: relative;
  z-index: 1;
}

.footer-col h5 {
  font-size: 0.88rem;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: #d4a574;
  margin-bottom: 1.4rem;
  font-weight: 800;
  position: relative;
  padding-bottom: 0.8rem;
}

.footer-col h5::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 35px;
  height: 2px;
  background: linear-gradient(90deg, #d4a574, transparent);
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.footer-col a {
  font-size: 0.95rem;
  color: #e8e0d0;
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  position: relative;
  font-weight: 500;
  line-height: 1.8;
}

.footer-col a::before {
  content: "→";
  position: absolute;
  left: -1.4rem;
  opacity: 0;
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  color: var(--gold);
  font-weight: 800;
}

.footer-col a:hover {
  color: var(--gold);
  padding-left: 14px;
  text-shadow: 0 2px 6px rgba(212, 175, 76, 0.3);
}

.footer-col a:hover::before {
  left: 0;
  opacity: 1;
}

.footer-stats-bar {
  background: linear-gradient(135deg, var(--gold-deepest) 0%, var(--gold-deep) 100%);
  padding: 2rem 0;
  margin-bottom: 3rem;
  box-shadow: 0 4px 16px rgba(92, 61, 31, 0.2);
}

.footer-stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 2rem;
  text-align: center;
}

.stat-item {
  color: white;
}

.stat-number {
  font-family: var(--f-display);
  font-size: clamp(1.8rem, 4vw, 2.4rem);
  font-weight: 700;
  margin-bottom: 0.5rem;
  letter-spacing: -0.02em;
}

.stat-label {
  font-size: 0.85rem;
  opacity: 0.95;
  font-weight: 500;
}

.footer-main-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr 1.2fr;
  gap: 4rem;
}

.footer-redesigned {
  grid-template-columns: 1.2fr 1fr 1.3fr;
  gap: 3rem;
  padding: 3rem clamp(1.5rem, 3.5vw, 3rem);
  align-items: center;
}

.footer-brand-column {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  padding-right: 1.5rem;
  align-items: center;
}

.footer-logo-box {
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 1rem !important;
  padding: 24px !important;
  text-align: center !important;
}

.footer-logo-box img {
  display: block !important;
  width: 100px !important;
  max-width: 100px !important;
  height: auto !important;
  margin: 0 auto 16px auto !important;
  flex-shrink: 0 !important;
}

.footer-logo-box h2 {
  display: none !important;
}

.footer-logo-box p {
  font-size: 0.9rem !important;
  color: var(--ink-soft) !important;
  margin: 0 !important;
  letter-spacing: 0.05em !important;
  font-weight: 400 !important;
  text-align: center !important;
}

.footer-email-link {
  color: var(--ink-soft);
  text-decoration: none;
  font-size: 0.95rem;
  transition: color 0.3s ease;
  letter-spacing: 0.02em;
  text-align: center;
  display: block;
}

.footer-email-link:hover {
  color: var(--gold);
}

.footer-links-column h3,
.footer-newsletter-column h3 {
  font-size: 0.95rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink);
  font-weight: 700;
  margin: 0 0 1.3rem 0;
  font-family: var(--f-display);
}

.footer-links-column ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}

.footer-links-column a {
  color: var(--ink-soft);
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.3s ease;
}

.footer-links-column a:hover {
  color: var(--gold);
}

.footer-newsletter-column p {
  font-size: 0.85rem;
  color: var(--ink-soft);
  line-height: 1.6;
  margin: 0 0 1.2rem 0;
}

.newsletter-form {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}

.newsletter-form input {
  flex: 1;
  padding: 0.7rem 0.9rem;
  border: 1px solid var(--gold-line);
  border-radius: 4px;
  font-size: 0.9rem;
  background: var(--white);
  color: var(--ink);
}

.newsletter-form button {
  padding: 0.7rem 1.2rem;
  background: var(--gold);
  color: var(--white);
  border: none;
  border-radius: 4px;
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.newsletter-form button:hover {
  background: var(--gold-deep);
  transform: translateY(-1px);
}

.footer-store-info {
  background: linear-gradient(135deg, var(--gold-deep) 0%, #6b5436 100%);
  padding: 2.5rem;
  border-radius: 16px;
  box-shadow: 0 8px 24px rgba(124, 90, 36, 0.3);
  color: var(--white);
}

.footer-store-info h3 {
  color: var(--white) !important;
  font-size: 1.6rem !important;
}

.footer-store-info .detail-item svg {
  color: rgba(255, 255, 255, 0.9) !important;
}

.footer-store-info .detail-item div {
  color: var(--white) !important;
}

.footer-store-info .detail-item div:first-child {
  font-weight: 700 !important;
  color: var(--white) !important;
}

.footer-store-info .detail-item div:last-child {
  color: rgba(255, 255, 255, 0.85) !important;
}

.footer-store-info a {
  color: rgba(255, 255, 255, 0.95) !important;
  font-weight: 600 !important;
}

.store-details {
  display: flex;
  flex-direction: column;
}

.detail-item a {
  color: var(--gold-deep);
  text-decoration: none;
  transition: opacity 0.3s;
}

.detail-item a:hover {
  opacity: 0.8;
}

.footer-links-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.footer-newsletter-section {
  background: var(--white);
  padding: 1.8rem;
  border-radius: 8px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.05);
}

.footer-newsletter-section input {
  transition: border-color 0.3s, box-shadow 0.3s;
}

.footer-newsletter-section input:focus {
  outline: none;
  border-color: var(--gold-deep) !important;
  box-shadow: 0 0 0 3px rgba(124, 90, 36, 0.1);
}

.footer-newsletter-section button:hover {
  background: var(--gold) !important;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(124, 90, 36, 0.3);
}

/* ===== ENHANCED FOOTER CARD STYLING ===== */
.footer-brand-section {
  padding: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.footer-brand-name {
  font-size: 1.6rem;
  font-weight: 900;
  margin: 0 0 0.4rem 0;
  color: var(--ink);
  letter-spacing: -0.01em;
  line-height: 1.2;
}

.footer-brand-tagline {
  font-size: 0.95rem;
  color: var(--ink-soft);
  margin: 0 0 1.8rem 0;
  font-weight: 500;
  line-height: 1.4;
}

.footer-email {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  color: var(--ink);
  text-decoration: none;
  transition: color 0.3s;
  font-weight: 500;
}

.footer-email:hover {
  color: var(--gold-deep);
}

.footer-contact-section {
  padding: 0;
  display: flex;
  flex-direction: column;
}

.footer-section-heading {
  font-size: 1rem;
  font-weight: 800;
  color: var(--ink);
  margin: 0 0 1.6rem 0;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  line-height: 1.3;
}

.footer-locations {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.location {
  padding: 0;
  border-bottom: 1px solid var(--gold-line-soft);
  padding-bottom: 1.6rem;
}

.location:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.location h4 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--ink);
  margin: 0 0 0.6rem 0;
  letter-spacing: 0.02em;
  text-transform: capitalize;
}

.location p {
  font-size: 0.9rem;
  color: var(--ink-soft);
  margin: 0 0 0.7rem 0;
  line-height: 1.7;
  font-weight: 500;
}

.phone-numbers {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--ink);
  margin-top: 0.3rem;
}

.phone-numbers a {
  color: var(--ink);
  text-decoration: none;
  transition: color 0.3s;
  font-weight: 700;
}

.phone-numbers a:hover {
  color: var(--gold-deep);
}

.phone-numbers a+a::before {
  content: " | ";
  margin: 0 0.5rem;
  color: var(--ink-faint);
  font-weight: 400;
}

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

.footer-links-column h5 {
  font-size: 0.8rem;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  color: var(--ink);
  margin: 0 0 1rem 0;
  font-weight: 700;
}

.footer-links-column ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.footer-links-column a {
  font-size: 0.9rem;
  color: var(--ink-soft);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-links-column a:hover {
  color: var(--gold-deepest);
}

.footer-col-card {
  margin-bottom: 0;
}

.footer-col-card h5 {
  font-size: 0.8rem;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  color: var(--ink);
  margin: 0 0 1rem 0;
  font-weight: 700;
}

.footer-col-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.footer-col-card a {
  font-size: 0.9rem;
  color: var(--ink-soft);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-col-card a:hover {
  color: var(--gold-deepest);
}

.footer-col-card a.cta-link {
  color: var(--gold-deep);
  font-weight: 600;
}

.footer-col-card a.cta-link:hover {
  color: var(--gold-deepest);
}

.footer-newsletter-section-new {
  padding: 0;
  display: flex;
  flex-direction: column;
}

.footer-newsletter-section-new>p {
  font-size: 0.9rem;
  color: var(--ink-soft);
  margin: 0 0 1.4rem 0;
  line-height: 1.6;
  font-weight: 500;
}

.newsletter-form {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 2rem;
}

.newsletter-form input {
  flex: 1;
  padding: 0.85rem 1rem;
  border: 1px solid var(--gold-line);
  border-radius: 4px;
  font-size: 0.9rem;
  background: white;
  color: var(--ink);
  transition: border-color 0.3s, box-shadow 0.3s;
}

.newsletter-form input::placeholder {
  color: var(--ink-faint);
}

.newsletter-form input:focus {
  outline: none;
  border-color: var(--gold-deep);
  box-shadow: 0 0 0 2px rgba(124, 90, 36, 0.1);
}

.newsletter-form button {
  padding: 0.85rem 1.6rem;
  background: var(--gold-deep);
  color: white;
  border: none;
  border-radius: 4px;
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.03em;
  cursor: pointer;
  transition: all 0.3s;
  white-space: nowrap;
}

.newsletter-form button:hover {
  background: var(--gold-deepest);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(92, 61, 31, 0.15);
}

.footer-quick-links {
  font-size: 0.9rem;
  margin-bottom: 2rem;
  line-height: 1.8;
  color: var(--ink-soft);
}

.footer-quick-links a {
  color: var(--ink-soft);
  text-decoration: none;
  transition: color 0.3s;
  font-weight: 500;
}

.footer-quick-links a:hover {
  color: var(--gold-deep);
}

.footer-socials {
  display: flex;
  gap: 1.2rem;
  align-items: center;
}

.footer-socials a {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-deep) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.4rem;
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  border: 2px solid rgba(212, 175, 76, 0.3);
  box-shadow: 0 4px 12px rgba(124, 90, 36, 0.15);
  position: relative;
  overflow: hidden;
}

.footer-socials a::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: width 0.6s, height 0.6s;
}

.footer-socials a:hover {
  background: linear-gradient(135deg, var(--gold-deep) 0%, var(--gold-deepest) 100%);
  color: white;
  transform: translateY(-4px) scale(1.1);
  box-shadow: 0 12px 24px rgba(92, 61, 31, 0.25);
  border-color: var(--gold-deepest);
}

.footer-socials a:hover::before {
  width: 100px;
  height: 100px;
}


.footer-bottom {
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid var(--gold-line-soft);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.78rem;
  color: var(--ink-faint);
}

@media (max-width: 768px) {
  .footer-stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }

  .footer-main-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .footer-info-card {
    padding: 1.8rem;
  }

  .footer-info-card h3 {
    font-size: 1.1rem;
  }

  .footer-col-card {
    padding: 1.6rem;
  }

  .footer-col-card h5 {
    font-size: 0.8rem;
    margin-bottom: 1rem;
  }

  .footer-col-card a {
    font-size: 0.9rem;
  }

  .footer-newsletter-card {
    padding: 1.8rem;
  }

  .footer-newsletter-card form {
    flex-direction: column;
    gap: 0.8rem;
  }

  .footer-newsletter-card button {
    width: 100%;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .contact-form-title {
    font-size: 1.4rem;
  }

  .form-foot {
    justify-content: center;
  }
}

/* =========================================================================
   PRODUCT PAGES
   ========================================================================= */
.pp-body {
  background: var(--ivory);
}

.pp-main {
  padding-top: 0px !important;
}

.pp-breadcrumb {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 0.6rem;
  padding-top: 1.4rem;
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink-faint);
  margin-inline: 0 !important;
}

.pp-breadcrumb a {
  color: var(--gold-deep);
  transition: color 0.3s;
}

.pp-breadcrumb a:hover {
  color: var(--ink);
}

.pp-breadcrumb em {
  font-style: normal;
  color: var(--ink);
}

.pp-hero {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(2.5rem, 6vw, 5rem);
  align-items: center;
  padding-block: clamp(1rem, 2vw, 1.5rem);
}

.pp-photo img {
  display: block;
  width: 100%;
  height: auto;
  max-height: 62vh;
  object-fit: contain;
  filter: none;
}

.pp-intro .section-title {
  margin-top: 0.5em;
}

.pp-tagline {
  margin-top: 0.9rem;
  font-family: var(--f-display);
  font-style: italic;
  font-size: 1.25rem;
  color: var(--gold-deep);
}

.pp-intro>p:not(.pp-tagline):not(.eyebrow) {
  margin-top: 1.2rem;
  color: var(--ink-soft);
  font-size: 1rem;
  line-height: 1.8;
  max-width: 36rem;
}

.pp-cta {
  margin-top: 1.8rem;
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.pp-section .section-head {
  margin-bottom: clamp(2rem, 4vw, 3rem);
}

.pp-varieties {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, auto));
  gap: clamp(2rem, 4vw, 3rem);
  align-items: start;
  justify-content: center;
  max-width: 100%;
  margin-bottom: 0;
  margin-left: auto;
  margin-right: auto;
  padding: 0;
}

.pp-variety {
  position: relative !important;
  isolation: isolate;
  display: flex !important;
  flex-direction: column !important;
  height: 100%;
  min-height: auto !important;
  border-radius: 0 !important;
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
  transition: transform 0.45s var(--ease-soft), box-shadow 0.45s var(--ease-soft), border-color 0.4s;
  overflow: visible !important;
  outline: none !important;
  padding: 0 !important;
  gap: 0.5rem !important;
}

.pp-variety img {
  margin: 0 !important;
  padding: 0 !important;
}

.pp-variety h3 {
  margin: 0.5rem 0 0 0 !important;
}

.pp-variety p {
  margin: 0.3rem 0 !important;
}

/* a gilt seal draws across the top edge on hover */
.pp-variety::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 0px;
  background: transparent;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.6s var(--ease-soft);
  z-index: 3;
  display: none;
}

.pp-variety:hover::before {
  transform: scaleX(0);
}

/* slow gold light sweeps over the card */
.pp-variety::after {
  content: "";
  position: absolute;
  inset: 0;
  background: transparent;
  transform: translateX(-130%);
  transition: transform 0.95s var(--ease-soft);
  pointer-events: none;
  z-index: 2;
  display: none;
}

.pp-variety:hover::after {
  transform: translateX(-130%);
}

.pp-variety:hover {
  box-shadow: 0 30px 54px -26px rgba(43, 32, 21, 0.4);
  border-color: rgba(198, 160, 79, 0.55);
}

.pp-variety-body {
  padding: 1.5rem 1.6rem 1.7rem;
  display: flex;
  flex-direction: column;
  flex: 1 1 100%;
  justify-content: space-between;
}

.pp-variety h3 {
  font-family: var(--f-display);
  font-weight: 600;
  font-size: 1.22rem;
  color: var(--ink);
  transition: color 0.35s;
}

.pp-variety:hover h3 {
  color: var(--gold-deep);
}

.pp-variety p {
  margin-top: 0.8rem;
  font-size: 0.9rem;
  color: var(--ink-soft);
  line-height: 1.78;
  letter-spacing: 0.015em;
  flex: 1;
  font-weight: 500;
  min-width: 0;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

a.pp-variety,
.pp-variety-open {
  display: block;
  text-decoration: none;
  cursor: pointer;
  position: relative;
  border: none;
}

a.pp-variety:hover,
.pp-variety-open:hover {
  border-color: transparent;
}

.pp-variety .pp-variety-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin-top: 0.9rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold-deep);
}

.pp-variety .pp-variety-link svg {
  width: 12px;
  height: 12px;
  transition: transform 0.35s var(--ease-soft);
}

.pp-variety:hover .pp-variety-link svg {
  transform: translateX(4px);
}

.pp-variety-media {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 240px;
  padding: 1rem;
  background: var(--ivory-deep);
  border-bottom: 1px solid var(--gold-line-soft);
  min-width: 0;
  overflow: hidden;
  box-sizing: border-box;
}

.pp-variety-media picture {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  max-height: 100%;
}

.pp-variety-thumb {
  display: block;
  width: auto;
  height: 100%;
  max-width: 100%;
  max-height: 100%;
  min-width: 0;
  min-height: 0;
  object-fit: contain;
  filter: none;
  transition: transform 0.5s var(--ease-soft);
  border: none !important;
  outline: none !important;
  box-shadow: none !important;
}

.pp-variety:hover .pp-variety-thumb {
  transform: scale(1.05);
}

/* quick-look lightbox for a variety card that has a photo but no dedicated
   product page to link to (e.g. a flavour/roast variant) — click opens the
   pack photo full-size with the name, description and a WhatsApp CTA. */
.pv-overlay {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  background: rgba(43, 32, 21, 0.55);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s var(--ease-soft), visibility 0s linear 0.35s;
}

.pv-overlay.is-open {
  opacity: 1;
  visibility: visible;
  transition: opacity 0.35s var(--ease-soft);
}

.pv-modal {
  position: relative;
  background: var(--ivory);
  width: 100%;
  max-width: 68rem;
  max-height: 92vh;
  overflow-y: auto;
  padding: clamp(2rem, 4vw, 3.2rem);
  border: none;
  border-radius: 16px;
  box-shadow: 0 60px 100px -24px rgba(92, 61, 31, 0.35), inset 0 1px 0 rgba(255, 255, 255, 0.4);
  transform: scale(0.92) translateY(16px);
  transition: transform 0.4s var(--ease-soft);
}

.pv-overlay.is-open .pv-modal {
  transform: scale(1) translateY(0);
}

.pv-close {
  position: absolute;
  top: 1.2rem;
  right: 1.2rem;
  z-index: 1;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--white);
  border: 2px solid var(--gold-line-rich);
  border-radius: 50%;
  color: var(--ink);
  font-size: 1.4rem;
  line-height: 1;
  cursor: pointer;
  transition: background 0.3s, color 0.3s, border-color 0.3s, box-shadow 0.3s;
  box-shadow: var(--shadow-light);
}

.pv-close:hover {
  background: var(--gold-deepest);
  border-color: var(--gold-deepest);
  color: var(--white);
  box-shadow: var(--shadow-medium);
}

.pv-modal-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

.pv-modal img {
  display: block;
  width: 100%;
  max-height: 64vh;
  object-fit: contain;
  filter: none;
  margin: 0;
  padding: 0;
  background: transparent;
}

.pv-modal .eyebrow {
  margin-top: 0;
}

.pv-modal h3 {
  margin-top: 0.6rem;
  font-family: var(--f-display);
  font-weight: 600;
  font-size: clamp(1.7rem, 3vw, 2.3rem);
  color: var(--ink);
}

.pv-modal .pv-desc {
  margin-top: 0.8rem;
  color: var(--ink-soft);
  font-size: 1rem;
  line-height: 1.8;
}

.pv-modal .pp-cta {
  margin-top: 1.6rem;
}

.pv-modal .pp-trust {
  margin-top: 1.5rem;
}

.pv-modal .pp-packs {
  margin-top: 1.2rem;
}

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

  .pv-modal img {
    max-height: 50vh;
  }
}

.pp-two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2.5rem, 6vw, 5rem);
  align-items: start;
}

.pp-list {
  margin-top: 1.6rem;
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}

.pp-list li {
  position: relative;
  padding-left: 1.6rem;
  color: var(--ink-soft);
  font-size: 0.97rem;
  line-height: 1.7;
}

.pp-list li::before {
  content: "✦";
  position: absolute;
  left: 0;
  top: 0.1em;
  color: var(--gold);
  font-size: 0.8em;
}

.pp-closing {
  max-width: 46rem;
  text-align: center;
}

.pp-storage {
  margin-top: 1.2rem;
  font-family: var(--f-display);
  font-style: italic;
  font-size: 1.15rem;
  line-height: 1.7;
  color: var(--ink);
}

.pp-rule {
  width: 70px;
  height: 1px;
  border: 0;
  margin: 2rem auto;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.pp-promise {
  color: var(--ink-soft);
  font-size: 0.97rem;
  line-height: 1.8;
}

.pp-closing .pp-cta {
  justify-content: center;
  margin-top: 2rem;
}

.nav-dropdown-grid a.pp-current {
  color: var(--gold-deep);
  font-weight: 700;
}

.pp-trust {
  margin-top: 1.7rem;
  display: flex;
  flex-wrap: wrap;
  gap: 1.4rem;
}

.pp-trust-item {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  color: var(--ink-soft);
}

.pp-trust-item svg {
  width: 18px;
  height: 18px;
  color: var(--gold-deep);
  flex-shrink: 0;
}

.pp-packs {
  margin-top: 1.4rem;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.7rem;
}

.pp-packs-label {
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-faint);
  margin-right: 0.2rem;
}

.pp-pack-chip {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--ink);
  border: 1px solid var(--gold-line);
  border-radius: 999px;
  padding: 0.35rem 0.95rem;
  background: var(--white);
}

.pp-photo {
  position: relative;
  aspect-ratio: auto;
  padding: 0 !important;
  margin: 0 !important;
  background: transparent !important;
}

.pp-photo-badge {
  position: absolute;
  top: 1.1rem;
  left: 1.1rem;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  background: rgba(251, 246, 236, 0.95);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  border: 1px solid var(--gold-line);
  border-radius: 999px;
  padding: 0.5rem 1rem 0.5rem 0.8rem;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--ink);
  box-shadow: 0 14px 28px -16px rgba(43, 32, 21, 0.4);
}

.pp-photo-badge-star {
  color: var(--gold-deep);
  margin-right: 0.1rem;
}

.pp-related-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1.5rem, 4vw, 3rem);
  max-width: 760px;
  margin: 0 auto;
}

@media (max-width: 1080px) {
  .pp-hero {
    grid-template-columns: 1fr;
  }

  .pp-photo {
    max-width: 460px;
    margin-inline: auto;
  }

  .pp-varieties {
    max-width: 100%;
    margin-inline: auto;
    gap: clamp(1.4rem, 2.5vw, 2rem);
  }

  .pp-variety h3,
  .pp-variety p {
    word-wrap: break-word;
    overflow-wrap: break-word;
    max-width: 100%;
  }

  .pp-two-col {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 1024px) {
  .pp-list li {
    padding-left: 2.2rem !important;
  }
}

@media (max-width: 768px) {
  .pp-photo {
    max-width: 220px;
  }

  .pp-hero {
    padding-block: 0.8rem;
    gap: 1.2rem;
    display: flex;
    flex-direction: column;
    height: auto !important;
  }

  .pp-intro {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    height: auto !important;
    margin-bottom: 1.5rem;
  }

  .pp-section {
    height: auto !important;
    min-height: fit-content;
    overflow: visible;
  }

  .pp-section h2,
  .pp-section h3 {
    margin-bottom: 1rem;
  }

  .pp-section p {
    margin-bottom: 0.8rem;
  }

  .eyebrow {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
  }

  .pp-list {
    margin-top: 1rem;
  }

  .pp-list li {
    padding-left: 1.8rem !important;
  }

  .pp-list li::before {
    font-size: 0.7em;
    left: 0.1em;
  }

}

@media (max-width: 1080px) {
  .pp-main {
    padding-top: 0px;
  }
}

@media (max-width: 640px) {
  .pp-related-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.2rem;
    max-width: 420px;
  }
}

/* =========================================================================
   RESPONSIVE
   ========================================================================= */
@media (max-width: 1080px) {
  .product-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .hamper-grid {
    grid-template-columns: 1fr;
    max-width: 560px;
    margin-inline: auto;
  }

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

  .t-grid {
    grid-template-columns: 1fr;
    max-width: 560px;
    margin-inline: auto;
  }

  .legacy-grid,
  .partner-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

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

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    row-gap: 2.5rem;
  }

  .stat:nth-child(3) {
    border-left: none;
  }
}

@media (max-width: 1024px) {

  .nav-links {
    display: none !important;
  }

  .nav-toggle {
    display: flex !important;
  }

  .site-header {
    padding-left: 0.8rem;
    padding-right: 0.8rem;
  }

  .site-header .bar {
    max-width: 100%;
    padding: 0.6rem 0.8rem;
    gap: 0.8rem;
    border-radius: 10px;
  }

  .brand .mark {
    width: 54px;
    height: 54px;
    flex-shrink: 0;
  }

  .brand-name {
    padding-left: 0.65rem;
    min-width: auto;
    flex: 0 1 auto;
  }

  .brand-name .top {
    font-size: clamp(1.1rem, 2.2vw, 1.45rem);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    line-height: 1.15;
  }

  .brand-name .bottom {
    font-size: 0.65rem;
    letter-spacing: 0.15em;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .hero {
    min-height: auto;
    padding-bottom: 2rem;
  }
}

@media (max-width: 640px) {
  .product-grid {
    grid-template-columns: 1fr;
    gap: clamp(0.8rem, 2vw, 1.2rem);
  }

  .p-card {
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
  }

  .p-media {
    aspect-ratio: 1 / 1.2;
  }

  /* .p-body padding now uses responsive clamp() in base rule */
  .p-title {
    font-size: clamp(1.2rem, 3vw, 1.4rem);
    font-weight: 600;
  }

  .p-desc {
    font-size: clamp(0.85rem, 2vw, 0.95rem);
    line-height: 1.5;
  }

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

  .form-row {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2.2rem;
  }

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

  .whatsapp-float {
    display: none !important;
  }

  .mobile-actionbar {
    display: none !important;
  }

  .site-footer {
    padding-bottom: 5rem;
  }

  .hero {
    min-height: auto;
    padding-top: 7rem;
    padding-bottom: 2rem;
  }

  /* the hero-note line added below the CTAs makes the centered hero content
     tall enough on phones to collide with this fixed-bottom scroll hint —
     mobile users already know the page scrolls, so just drop it here */
  .hero-scroll {
    display: none;
  }

  /* Reduce product page font sizes on mobile */
  .pp-intro .section-title {
    font-size: clamp(1.8rem, 6vw, 2.4rem) !important;
  }

  .pp-tagline {
    font-size: 0.95rem !important;
    line-height: 1.6 !important;
  }
}

/* mobile nav drawer */
.mobile-drawer {
  position: fixed;
  inset: 0;
  background: var(--ivory);
  z-index: 890;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  gap: 2rem;
  padding-block: 7.5rem 3rem;
  overflow-y: auto;
  transform: translateY(-100%);
  transition: transform 0.55s var(--ease);
}

.mobile-drawer.open {
  transform: translateY(0);
}

.mobile-drawer a {
  font-family: var(--f-display);
  font-size: 1.7rem;
  font-weight: 600;
  color: var(--ink);
}

.mobile-drawer .btn {
  margin-top: 1rem;
}

.mdrawer-item {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.mdrawer-trigger {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--f-display);
  font-size: 1.7rem;
  font-weight: 600;
  line-height: 1.2;
  color: var(--ink);
  outline: none;
}

.mdrawer-trigger:focus {
  outline: none;
}

.mdrawer-trigger .chev {
  width: 0 !important;
  height: 0 !important;
  margin: 0 !important;
  padding: 0 !important;
  display: none !important;
  visibility: hidden !important;
  overflow: hidden !important;
  transition: transform 0.35s var(--ease-soft);
}

.mdrawer-trigger[aria-expanded="true"] .chev {
  transform: rotate(180deg);
}

.mdrawer-sub {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  column-gap: 2.2rem;
  row-gap: 1.4rem;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.6s var(--ease-soft), opacity 0.4s, margin-top 0.5s var(--ease-soft);
  margin-top: 0;
}

.mdrawer-sub.open {
  max-height: 1800px;
  opacity: 1;
  margin-top: 1.4rem;
}

.mdrawer-sub a {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  text-align: center;
}

.mdrawer-sub a span {
  font-family: var(--f-body);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--ink-soft);
  transition: color 0.3s;
}

.mdrawer-sub a p {
  font-family: var(--f-body);
  font-size: 0.72rem;
  font-weight: 400;
  line-height: 1.4;
  color: var(--ink-faint);
}

.mdrawer-sub a:hover span {
  color: var(--gold-deep);
}

/* =========================================================================
   SCROLL PROGRESS BAR
   ========================================================================= */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  z-index: 1200;
  background: transparent;
  pointer-events: none;
}

.scroll-progress span {
  display: block;
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--gold-deep), var(--gold-bright), var(--gold));
  transition: width 0.1s linear;
}

/* =========================================================================
   TIMELINE SCROLL-FILL
   ========================================================================= */
.timeline-fill {
  position: absolute;
  left: 27px;
  top: 14px;
  width: 1px;
  height: 0%;
  background: var(--gold);
  z-index: 1;
  transition: height 0.1s linear;
  display: none;
}

/* =========================================================================
   IMAGE CURTAIN REVEAL — product & legacy photos wipe open as they enter view
   ========================================================================= */
.p-media,
.legacy-photo,
.h-media {
  position: relative;
}

.p-media::before,
.legacy-photo::before,
.h-media::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--ivory);
  z-index: 3;
  transform-origin: right;
  transform: scaleX(0);
  pointer-events: none;
}

.reveal .p-media::before,
.reveal .legacy-photo::before,
.reveal .h-media::before {
  transform-origin: left;
  transform: scaleX(1);
  transition: transform 0.7s var(--ease);
  transition-delay: calc(var(--i, 0) * 80ms + 120ms);
}

.reveal.in .p-media::before,
.reveal.in .legacy-photo::before,
.reveal.in .h-media::before {
  transform-origin: right;
  transform: scaleX(0);
}

/* =========================================================================
   CURSOR SPOTLIGHT — quality & hamper cards
   ========================================================================= */
.q-card,
.h-card {
  position: relative;
  overflow: hidden;
}

.q-card::after,
.h-card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  opacity: 0;
  background: radial-gradient(240px circle at var(--mx, 50%) var(--my, 50%), rgba(201, 160, 70, 0.16), transparent 70%);
  transition: opacity 0.4s var(--ease-soft);
  pointer-events: none;
}

.q-card:hover::after,
.h-card:hover::after {
  opacity: 1;
}

.q-card>* {
  position: relative;
  z-index: 1;
}

.h-card .h-media,
.h-card .h-body {
  position: relative;
  z-index: 1;
}

/* =========================================================================
   MAGNETIC BUTTON — subtle cursor pull on gold CTAs
   ========================================================================= */
.btn-gold {
  will-change: transform;
}

/* =========================================================================
   CURSOR FOLLOWER — hero & showcase only, contextual labels on hover
   ========================================================================= */
.cursor-follower {
  position: fixed;
  top: 0;
  left: 0;
  width: 20px;
  height: 20px;
  margin-left: -10px;
  margin-top: -10px;
  border-radius: 999px;
  border: 1.5px solid var(--gold);
  background: rgba(201, 160, 70, 0.25);
  pointer-events: none;
  z-index: 1500;
  opacity: 0;
  transform: translate3d(-999px, -999px, 0);
  display: flex;
  align-items: center;
  justify-content: center;
  transition:
    opacity 0.3s var(--ease-soft),
    width 0.35s var(--ease-soft),
    height 0.35s var(--ease-soft),
    margin 0.35s var(--ease-soft),
    background 0.35s var(--ease-soft),
    border-radius 0.35s var(--ease-soft);
  will-change: transform;
}

.cursor-follower.is-active {
  opacity: 1;
}

.cursor-follower.has-label {
  width: auto;
  height: auto;
  min-width: 132px;
  padding: 0.6rem 1.2rem;
  margin-left: 14px;
  margin-top: 14px;
  border-radius: 999px;
  background: rgba(251, 246, 236, 0.96);
  border-color: var(--gold-line);
}

.cursor-follower-label {
  font-family: var(--f-display);
  font-style: italic;
  font-weight: 600;
  font-size: 0.82rem;
  color: var(--gold-deep);
  white-space: nowrap;
  opacity: 0;
  transition: opacity 0.25s var(--ease-soft);
}

.cursor-follower.has-label .cursor-follower-label {
  opacity: 1;
}

@media (hover: none),
(pointer: coarse) {
  .cursor-follower {
    display: none !important;
  }
}

/* =========================================================================
   IMAGE TRAIL — cursor-spawned product thumbnails, showcase section only
   ========================================================================= */
.image-trail-layer {
  position: fixed;
  inset: 0;
  z-index: 1500;
  pointer-events: none;
}

.image-trail-item {
  position: fixed;
  top: 0;
  left: 0;
  margin: 0;
  width: clamp(200px, 22vw, 300px);
  aspect-ratio: 4 / 5;
  pointer-events: none;
  opacity: 0.1;
  transform: translate(-50%, -50%) scale(0.8) rotate(var(--tilt, 0deg));
  transition: transform 0.45s var(--ease-soft), opacity 0.3s var(--ease-soft);
  will-change: transform, opacity;
}

.image-trail-item.is-in {
  opacity: 0.9;
  transform: translate(-50%, -50%) scale(1) rotate(var(--tilt, 0deg));
}

.image-trail-item.is-out {
  opacity: 0;
  transform: translate(-50%, -50%) scale(0.85) rotate(var(--tilt, 0deg));
  transition: transform 0.38s var(--ease-soft), opacity 0.38s var(--ease-soft);
}

.image-trail-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 14px;
  background: var(--ivory-deep);
  border: 1px solid var(--gold-line);
  box-shadow: 0 22px 44px -18px rgba(43, 32, 21, 0.45), 0 0 0 1px rgba(251, 246, 236, 0.55);
}

.image-trail-label {
  position: absolute;
  left: 50%;
  bottom: -1.6rem;
  transform: translateX(-50%);
  font-family: var(--f-display);
  font-style: italic;
  font-weight: 600;
  font-size: 0.72rem;
  letter-spacing: 0.01em;
  color: var(--gold-deep);
  white-space: nowrap;
  opacity: 0;
  transition: opacity 0.3s var(--ease-soft);
}

.image-trail-item.is-in .image-trail-label {
  opacity: 1;
}

/* =========================================================================
   PRODUCT FILTER TABS
   ========================================================================= */
.pf-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  justify-content: center;
  margin-bottom: clamp(2rem, 4vw, 3rem);
}

.pf-tab {
  padding: 0.6rem 1.4rem;
  border: 1px solid var(--gold-line);
  border-radius: 999px;
  background: transparent;
  font-family: var(--f-body);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink-soft);
  cursor: pointer;
  transition: background 0.35s var(--ease-soft), color 0.35s var(--ease-soft), border-color 0.35s var(--ease-soft);
}

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

.pf-tab.is-active {
  background: linear-gradient(135deg, var(--gold-bright), var(--gold));
  border-color: transparent;
  color: var(--white);
}

/* filter state transitions for product cards — scoped with extra classes so
   specificity naturally beats the generic .reveal.in rule (no !important needed).
   Covers both grids that share the flipFilterGrid() engine: the homepage's
   .product-grid and the shop page's .products-grid. */
.product-grid .p-card.pf-hidden,
.products-grid .p-card.pf-hidden {
  display: none;
}

.product-grid .p-card.pf-leaving,
.products-grid .p-card.pf-leaving {
  opacity: 0;
  transform: scale(0.85);
  transition: opacity 0.26s var(--ease-soft), transform 0.26s var(--ease-soft);
  pointer-events: none;
}

/* Homepage: show only first 7 products, hide rest */
.products .product-grid .p-card:nth-child(n+8) {
  display: none;
}

.product-grid .p-card.pf-enter,
.products-grid .p-card.pf-enter {
  opacity: 0;
  transform: scale(0.9);
}

.product-grid .p-card.pf-enter.pf-enter-active,
.products-grid .p-card.pf-enter.pf-enter-active {
  opacity: 1;
  transform: scale(1);
  transition: opacity 0.45s var(--ease-soft), transform 0.45s var(--ease-soft);
}

/* =========================================================================
   CURSOR IMAGE TRAIL — hero only, desktop/fine-pointer only
   ========================================================================= */
.image-trail-layer {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 40;
  overflow: hidden;
}

.trail-img {
  position: fixed;
  top: 0;
  left: 0;
  width: 130px;
  aspect-ratio: 3 / 4;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid var(--gold-line);
  box-shadow: 0 20px 45px -18px rgba(43, 32, 21, 0.45);
  pointer-events: none;
  opacity: 0;
  transform: translate(-50%, -50%) scale(0.8) rotate(var(--tilt, 0deg));
  transition: opacity 0.35s ease, transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}

.trail-img.is-visible {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1) rotate(var(--tilt, 0deg));
}

.trail-img.is-near-text.is-visible {
  opacity: 0.28;
}

.trail-img.is-leaving {
  opacity: 0;
  transform: translate(-50%, -50%) scale(0.85) rotate(var(--tilt, 0deg));
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.trail-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* =========================================================================
   DISPLAY TYPE VOICE — Fraunces WONK/SOFT
   ========================================================================= */
h1,
h2,
h3,
h4,
.section-title,
.hero-title,
.chapter-num,
.chapter h3,
.legacy-mark-caption,
.cnum,
.pm-title,
.brand-name .top {
  font-variation-settings: var(--f-display-vars);
}

/* =========================================================================
   CHAPTERS — cinematic entrance + drawn timeline rail
   ========================================================================= */
.chapters {
  position: relative;
}

/* a gilt rail draws itself across the four chapters as they arrive */
.chapters::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: -22px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold) 18%, var(--gold) 82%, transparent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 1.5s var(--ease-soft) 0.15s;
}

.chapters:has(.chapter.in)::before {
  transform: scaleX(1);
}

/* each card lifts in on its own beat, resolving out of a soft blur */
.chapters .chapter.reveal {
  opacity: 0;
  transform: translateY(48px) scale(0.955) rotate(-1.1deg);
  filter: blur(7px);
  transition:
    opacity 0.95s var(--ease),
    transform 1.05s var(--ease-soft),
    filter 0.85s var(--ease),
    box-shadow 0.5s var(--ease-soft),
    border-color 0.4s;
  transition-delay: calc(var(--i, 0) * 150ms);
}

.chapters .chapter.reveal.in {
  opacity: 1;
  transform: none;
  filter: none;
}

/* the chapter numeral counts itself in just behind its card */
.chapters .chapter.reveal .chapter-num {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease-soft), color 0.45s;
  transition-delay: calc(var(--i, 0) * 150ms + 260ms);
}

.chapters .chapter.reveal.in .chapter-num {
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: reduce) {
  .chapters::before {
    transition: none;
    transform: scaleX(1);
  }

  .chapters .chapter.reveal {
    filter: none;
    transform: none;
  }

  .chapters .chapter.reveal .chapter-num {
    opacity: 1;
    transform: none;
  }
}

/* =========================================================================
   COLLECTION GRID — responsive product showcase
   ========================================================================= */
/* Grid layout already defined in main media queries above */
/* Additional enhancements for grid presentation */
.hs-grid {
  position: relative;
}

/* a warm pool of light can track the cursor across the grid on hover */
.hs-grid::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(300px circle at var(--mx, 50%) var(--my, 50%),
      rgba(198, 160, 79, 0.15) 0%,
      rgba(198, 160, 79, 0.05) 38%,
      transparent 70%);
  opacity: 0;
  transition: opacity 0.5s var(--ease-soft);
  z-index: 1;
  border-radius: 8px;
}

.hs-grid:hover::after {
  opacity: 1;
}

@media (prefers-reduced-motion: reduce) {
  .hs-grid {
    animation: none;
  }

  .hs-grid::after {
    opacity: 0;
  }
}

/* =========================================================================
   HERITAGE PAGE — editorial serif for the story copy
   ========================================================================= */
/* The heritage page is long-form storytelling, so the prose reads in Newsreader
   rather than the UI sans — richer, warmer, and a natural companion to the
   Fraunces headings. Scoped to the reading copy only: nav, buttons and labels
   stay on Manrope so the page still feels part of the same site. */
.heritage-page {
  --f-read: "Newsreader", "Iowan Old Style", Georgia, serif;
  width: 100% !important;
  max-width: 100% !important;
  overflow-x: clip !important;
  overflow-y: visible !important;
}

.heritage-page .pp-main {
  width: 100% !important;
  max-width: 100% !important;
  margin: 0 !important;
  padding-left: 0 !important;
  padding-right: 0 !important;
  box-sizing: border-box !important;
  overflow: visible !important;
}

.heritage-page .band,
.heritage-page section.band,
.heritage-page .heritage-showcase,
.heritage-page .chapters-section,
.heritage-page .legacy {
  width: 100% !important;
  max-width: 100% !important;
  margin-left: 0 !important;
  margin-right: 0 !important;
  margin-top: 0 !important;
  margin-bottom: 0 !important;
  padding-left: 0 !important;
  padding-right: 0 !important;
  box-sizing: border-box !important;
}

.heritage-page .heritage-showcase .hs-track-wrap {
  width: 100% !important;
  max-width: 100% !important;
  margin-left: 0 !important;
  margin-right: 0 !important;
  padding-left: 0 !important;
  padding-right: 0 !important;
  overflow: hidden !important;
  box-sizing: border-box !important;
}

.heritage-page .heritage-showcase .hs-track,
.heritage-page #hsTrack,
#hsTrack {
  max-width: none !important;
  width: max-content !important;
  flex-shrink: 0 !important;
}

.hs-track.is-paused {
  animation-play-state: paused !important;
}

.heritage-page .legacy-copy p,
.heritage-page .pp-tagline,
.heritage-page .section-sub,
.heritage-page .chapter p,
.heritage-page .lm-trust li,
.heritage-page .h-card p,
.heritage-page blockquote,
.heritage-page .legacy-quote {
  font-family: var(--f-read);
  font-size: 1.09rem;
  line-height: 1.72;
  letter-spacing: 0.002em;
}

/* the opening standfirst carries a touch more weight and air */
.heritage-page .pp-tagline {
  font-size: 1.28rem;
  line-height: 1.6;
}

.heritage-page .chapter p {
  font-size: 1rem;
  line-height: 1.68;
}

.heritage-page .lm-trust li {
  font-size: 0.98rem;
  line-height: 1.5;
}

/* =========================================================================
   VARIETIES & GRADES — sales-oriented card treatment (all product pages)
   ========================================================================= */
/* The description is pushed to the top and the action pinned to the bottom, so
   cards of different text lengths still line up along a common baseline. */
.pp-variety p {
  flex: 1 1 auto;
}

/* every card ends in an action — a photo card opens the pack, a plain card
   goes straight to WhatsApp, so no card is a dead end for a buyer */
.pp-variety-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  margin-top: 1.1rem;
  padding-top: 0.9rem;
  border-top: 1px solid var(--gold-line-soft);
  font-family: var(--f-body);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-deep);
  transition: gap 0.35s var(--ease-soft), color 0.3s;
}

.pp-variety:hover .pp-variety-cta {
  gap: 0.8rem;
  color: var(--ink);
}

.pp-variety-cta svg {
  width: 13px;
  height: 13px;
  flex: none;
}

/* text-only cards get the house monogram instead of dead white space */
.pp-variety-mark {
  display: none !important;
  visibility: hidden !important;
  width: 0 !important;
  height: 0 !important;
  min-height: 0 !important;
  max-width: 0 !important;
}

.pp-variety-mark img {
  display: none !important;
  visibility: hidden !important;
  width: 44%;
  opacity: 0.5;
  transition: transform 0.55s var(--ease-soft), opacity 0.45s;
}

.pp-variety:hover .pp-variety-mark img {
  transform: scale(1.07);
  opacity: 0.78;
}

/* staggered arrival, resolving out of a soft blur */
.pp-varieties .pp-variety.reveal {
  opacity: 0;
  transform: translateY(42px) scale(0.965);
  filter: blur(6px);
  transition:
    opacity 0.9s var(--ease),
    transform 1s var(--ease-soft),
    filter 0.8s var(--ease),
    box-shadow 0.45s var(--ease-soft),
    border-color 0.4s;
  transition-delay: calc(var(--i, 0) * 110ms);
}

.pp-varieties .pp-variety.reveal.in {
  opacity: 1;
  transform: none;
  filter: none;
}

@media (prefers-reduced-motion: reduce) {
  .pp-varieties .pp-variety.reveal {
    filter: none;
    transform: none;
  }

  .pp-variety::after {
    display: none;
  }
}

/* ---- variety grids with only one or two cards ---------------------------
   Most products have 3+ grades, but makhana has one and figs/walnuts/mamra
   have two. Left in a 3-column grid those stretch into odd wide slabs with a
   dead gap beside them, so short grids centre at a sensible card width. */
.pp-varieties:has(.pp-variety:first-child:last-child) {
  grid-template-columns: minmax(0, 360px);
  justify-content: center;
}

.pp-varieties:has(.pp-variety:nth-child(2):last-child) {
  grid-template-columns: repeat(2, minmax(0, 360px));
  justify-content: center;
}

/* the monogram is a fallback, so vary its weight down the grid — a page of
   identical marks reads as a template, a little rhythm reads as design */
.pp-variety:nth-child(3n+2) .pp-variety-mark {
  background: radial-gradient(circle at 50% 42%, var(--white) 0%, #F4EDDF 78%);
}

.pp-variety:nth-child(3n+2) .pp-variety-mark img {
  opacity: 0.42;
}

.pp-variety:nth-child(3n+3) .pp-variety-mark img {
  opacity: 0.58;
}

/* =========================================================================
   QUALITY JOURNEY — card treatment to match Varieties & Grades
   ========================================================================= */
/* The four steps were bare text under a rule. Same visual language as the
   variety cards so the site reads as one system: a card, a gilt seal that
   draws on hover, a gold sweep, and a lift. */
.timeline--horizontal .t-item {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: 2.2rem 1.4rem 1.8rem;
  margin-inline: 0;
  border-radius: 18px;
  background:
    linear-gradient(170deg, var(--white) 0%, var(--ivory) 100%);
  border: none;
  box-shadow: 0 2px 10px -6px rgba(43, 32, 21, 0.18);
  transition: transform 0.45s var(--ease-soft), box-shadow 0.45s var(--ease-soft), border-color 0.4s;
}

.timeline--horizontal .t-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-deep));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.6s var(--ease-soft);
  z-index: 3;
  display: none;
}

.timeline--horizontal .t-item:hover::before {
  transform: scaleX(1);
}

.timeline--horizontal .t-item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, transparent 36%, rgba(198, 160, 79, 0.16) 50%, transparent 64%);
  transform: translateX(-130%);
  transition: transform 0.95s var(--ease-soft);
  pointer-events: none;
  z-index: 2;
}

.timeline--horizontal .t-item:hover::after {
  transform: translateX(130%);
}

.timeline--horizontal .t-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 30px 54px -26px rgba(43, 32, 21, 0.38);
  border-color: rgba(198, 160, 79, 0.55);
}

/* the step medallion warms and lifts with the card */
.timeline--horizontal .t-node {
  transition: transform 0.5s var(--ease-soft), box-shadow 0.45s, border-color 0.4s, background 0.4s;
}

.timeline--horizontal .t-node::before,
.timeline--horizontal .t-node::after {
  display: none !important;
}

.timeline--horizontal .t-item:hover .t-node {
  transform: translateY(-3px) scale(1.06);
  border-color: var(--gold);
  box-shadow: 0 14px 28px -14px rgba(124, 90, 36, 0.6);
}

.timeline--horizontal .t-item:hover .t-body h3 {
  color: var(--gold-deep);
}

.timeline--horizontal .t-body h3 {
  transition: color 0.35s;
}

/* the connecting rule sits behind the cards now, not through them */
.timeline--horizontal::before,
.timeline-fill--horizontal {
  z-index: 0;
}

/* =========================================================================
   NEWSLETTER SIGNUP
   ========================================================================= */
.footer-newsletter {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 3.5rem);
  align-items: center;
  margin-bottom: 2.5rem;
  padding: clamp(2rem, 4vw, 3rem);
  background: linear-gradient(135deg, rgba(201, 160, 70, 0.08) 0%, rgba(124, 90, 36, 0.06) 100%);
  border: none;
  border-radius: 12px;
  position: relative;
  overflow: hidden;
}

.footer-newsletter::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -30%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(201, 160, 70, 0.1), transparent);
  border-radius: 50%;
  pointer-events: none;
}

.nl-content {
  position: relative;
  z-index: 1;
}

.nl-eyebrow {
  font-family: 'Playfair Display', 'EB Garamond', 'Crimson Text', serif;
  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-style: italic;
  color: var(--gold-deep);
  display: inline-flex;
  align-items: center;
  gap: 0.65em;
  margin-bottom: 0.8rem;
}

.nl-eyebrow::before {
  content: "";
  width: 20px;
  height: 1px;
  background: var(--gold);
}

.nl-title {
  font-family: var(--f-display);
  font-weight: 600;
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  line-height: 1.15;
  color: var(--ink);
  margin-bottom: 0.8rem;
}

.nl-desc {
  font-size: 0.95rem;
  color: var(--ink-soft);
  line-height: 1.7;
  max-width: 100%;
}

.nl-form {
  position: relative;
  z-index: 1;
}

.nl-input-wrap {
  display: flex;
  gap: 0.8rem;
  margin-bottom: 0.8rem;
}

.nl-form input {
  flex: 1;
  padding: 0.9rem 1.2rem;
  font-size: 0.95rem;
  font-family: var(--f-body);
  background: var(--white);
  border: none;
  border-radius: 6px;
  color: var(--ink);
  transition: border-color 0.3s, box-shadow 0.3s;
}

.nl-form input::placeholder {
  color: var(--ink-faint);
}

.nl-form input:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201, 160, 70, 0.1);
}

.nl-btn {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.9rem 2rem;
  background: linear-gradient(135deg, var(--gold-bright), var(--gold));
  color: var(--white);
  border: none;
  border-radius: 6px;
  font-family: var(--f-body);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  cursor: pointer;
  transition: all 0.3s var(--ease-soft);
  box-shadow: var(--shadow-medium);
  white-space: nowrap;
}

.nl-btn:hover {
  background: linear-gradient(135deg, var(--gold-deep), var(--gold));
  transform: translateY(-2px);
  box-shadow: var(--shadow-deep);
}

.nl-btn svg {
  width: 16px;
  height: 16px;
  transition: transform 0.3s;
}

.nl-btn:hover svg {
  transform: translateX(3px);
}

.nl-consent {
  font-size: 0.75rem;
  color: var(--ink-faint);
  margin: 0;
  letter-spacing: 0.02em;
}

.nl-message {
  font-size: 0.85rem;
  margin-top: 0.8rem;
  min-height: 1.2rem;
}

.nl-message.success {
  color: #27ae60;
  font-weight: 600;
}

.nl-message.error {
  color: #e74c3c;
}

@media (max-width: 768px) {
  .footer-newsletter {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .nl-input-wrap {
    flex-direction: column;
  }

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

@media (max-width: 860px) {

  /* stacked layout keeps the original rail-and-node look */
  .timeline--horizontal .t-item {
    padding: 1.6rem 0;
    margin-inline: 0;
    border-radius: 0;
    background: none;
    border: none;
    box-shadow: none;
  }

  .timeline--horizontal .t-item::before,
  .timeline--horizontal .t-item::after {
    display: none;
  }

  .timeline--horizontal .t-item:hover {
    transform: none;
    box-shadow: none;
  }
}

@media (max-width: 768px) {
  .timeline--horizontal .t-item {
    padding: 0.5rem 0;
  }
}

/* =========================================================================
   CONTACT — each detail becomes a card you can act on
   ========================================================================= */
/* Address, phone, email and hours were a plain flat list. Carded, they read as
   four clear ways to reach the shop rather than a block of small print — and
   phone/email now visibly behave like the actions they already were. */
.contact-info-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.9rem;
}

.ci {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: 2.2rem 2rem;
  border-radius: 20px;
  background: var(--white);
  border: 2px solid transparent;
  box-shadow:
    0 4px 6px rgba(43, 32, 21, 0.05),
    0 12px 28px rgba(43, 32, 21, 0.1);
  transition: all 0.5s var(--ease-soft);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.ci::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, transparent, var(--gold-bright), var(--gold-deep), transparent);
  opacity: 0;
  transition: opacity 0.4s var(--ease-soft);
}

.ci:hover::before {
  opacity: 1;
}

.ci:hover {
  transform: translateY(-8px) scale(1.02);
  border-color: var(--gold-light);
  box-shadow:
    0 8px 12px rgba(43, 32, 21, 0.08),
    0 20px 48px rgba(180, 134, 58, 0.25);
}

.ci-icon {
  width: 80px;
  height: 80px;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--gold-bright) 0%, var(--gold-deep) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  flex-shrink: 0;
  margin-bottom: 1.2rem;
  box-shadow:
    0 8px 20px rgba(180, 134, 58, 0.25),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
  transition: all 0.5s var(--ease-soft);
  position: relative;
}

.ci-icon::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 16px;
  background: radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.2), transparent);
  pointer-events: none;
}

.ci:hover .ci-icon {
  transform: translateY(-6px) scale(1.08);
  box-shadow:
    0 12px 32px rgba(180, 134, 58, 0.4),
    inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

/* Icon SVG styling */
.ci-icon svg {
  width: 40px;
  height: 40px;
  stroke-width: 1.8;
  position: relative;
  z-index: 1;
}

/* Typography */
.ci h4 {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--ink);
  margin: 0 0 0.75rem 0;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  word-spacing: 0.2em;
}

.ci p,
.ci a {
  font-size: 1rem;
  color: var(--ink-soft);
  line-height: 1.7;
  margin: 0;
}

/* Links with animated underline */
.ci a {
  color: var(--gold-deep);
  font-weight: 600;
  text-decoration: none;
  position: relative;
  display: inline-block;
  padding-bottom: 4px;
  transition: color 0.3s var(--ease-soft);
}

.ci a::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gold-deep);
  transition: width 0.4s var(--ease-soft);
  border-radius: 1px;
}

.ci:hover a {
  color: var(--gold-bright);
}

.ci:hover a::before {
  width: 100%;
}

/* staggered arrival, same language as the variety cards */
.contact-info-list .ci {
  opacity: 0;
  transform: translateY(26px);
  transition:
    opacity 0.75s var(--ease),
    transform 0.85s var(--ease-soft),
    box-shadow 0.4s var(--ease-soft),
    border-color 0.35s;
}

.reveal.in .contact-info-list .ci {
  opacity: 1;
  transform: none;
}

.contact-info-list .ci:nth-child(1) {
  transition-delay: 0.05s;
}

.contact-info-list .ci:nth-child(2) {
  transition-delay: 0.15s;
}

.contact-info-list .ci:nth-child(3) {
  transition-delay: 0.25s;
}

.contact-info-list .ci:nth-child(4) {
  transition-delay: 0.35s;
}

@media (max-width: 620px) {
  .contact-info-list {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .ci {
    padding: 1.8rem 1.5rem;
  }

  .ci-icon {
    width: 72px;
    height: 72px;
  }

  .ci-icon svg {
    width: 36px;
    height: 36px;
  }

  .ci h4 {
    font-size: 0.85rem;
  }
}

/* ============================= ANNOUNCEMENT BANNER ============================= */
.announcement-banner {
  position: relative;
  background: var(--gold-deepest);
  color: var(--gold-bright);
  padding: 0.75rem 0;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.5px;
  overflow: hidden;
  z-index: 100;
  box-shadow: var(--shadow-light);
}

.announcement-content {
  display: flex;
  white-space: nowrap;
  animation: scrollBanner 20s linear infinite;
  will-change: transform;
}

.announcement-text {
  padding: 0 2rem;
  display: inline-block;
  flex-shrink: 0;
}

@keyframes scrollBanner {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

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

/* ============================= TESTIMONIALS CAROUSEL ============================= */
.testimonials-carousel-wrapper {
  position: relative;
  margin: 2rem 0;
}

.testimonials-dots {
  display: flex;
  justify-content: center;
  gap: 0.75rem;
  margin-top: 2rem;
  flex-wrap: wrap;
}

.t-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 2px solid var(--gold);
  background: transparent;
  cursor: pointer;
  transition: all 0.3s var(--ease-soft);
  padding: 0;
  margin: 0;
}

.t-dot.is-active {
  background: var(--gold);
  transform: scale(1.3);
  box-shadow: 0 4px 12px rgba(180, 134, 58, 0.3);
}

.t-dot:hover {
  border-color: var(--gold-bright);
  transform: scale(1.2);
}

/* ============================= CAROUSEL BUTTONS ============================= */
.carousel-btn {
  display: flex !important;
  opacity: 0.8;
  transition: all 0.3s ease;
}

.reviews-carousel:hover .carousel-btn {
  opacity: 1;
}


/* ============================= LOADING ANIMATIONS ============================= */
@keyframes stampIn {
  0% {
    opacity: 0;
    transform: scale(0.95) translateY(10px);
  }

  100% {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

@keyframes slideInLeft {
  0% {
    opacity: 0;
    transform: translateX(-30px);
  }

  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInRight {
  0% {
    opacity: 0;
    transform: translateX(30px);
  }

  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

/* ============================= ENHANCED FLOATING BUTTON ============================= */
.whatsapp-float {
  display: none !important;
}

.whatsapp-float-old {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #25D366 0%, #20BA5F 100%);
  border-radius: 50%;
  display: none;
  align-items: center;
  justify-content: center;
  color: white;
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4);
  transition: all 0.3s var(--ease-soft);
  z-index: 1000;
  animation: floatIn 0.6s var(--ease) backwards;
  border: 3px solid rgba(255, 255, 255, 0.3);
  font-weight: 600;
}

.whatsapp-float::before {
  content: "";
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(37, 211, 102, 0.3) 0%, transparent 70%);
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {

  0%,
  100% {
    transform: scale(1);
    opacity: 0.5;
  }

  50% {
    transform: scale(1.2);
    opacity: 0.2;
  }
}

@keyframes floatIn {
  0% {
    opacity: 0;
    transform: scale(0.5) translateY(20px);
  }

  100% {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-8px);
  }
}

.whatsapp-float {
  animation: float 3s ease-in-out infinite;
}

.whatsapp-float:hover {
  transform: scale(1.15) translateY(-8px);
  box-shadow: 0 12px 32px rgba(37, 211, 102, 0.5);
  background: linear-gradient(135deg, #20BA5F 0%, #1BA952 100%);
}

.whatsapp-float svg {
  width: 32px;
  height: 32px;
}

@media (max-width: 640px) {
  .whatsapp-float {
    width: 56px;
    height: 56px;
    bottom: 1.5rem;
    right: 1.5rem;
  }

  .whatsapp-float svg {
    width: 28px;
    height: 28px;
  }
}

/* ============================= SECTION ENHANCEMENT ============================= */
.band {
  position: relative;
}

.band::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(180deg, transparent 0%, rgba(180, 134, 58, 0.02) 100%);
  pointer-events: none;
  z-index: 0;
}

/* Enhance testimonial cards */
.rev-card {
  position: relative;
  border: 1px solid var(--gold-line);
  border-radius: 8px;
  padding: 2rem;
  background: linear-gradient(135deg, var(--ivory) 0%, rgba(227, 206, 155, 0.05) 100%);
  box-shadow: 0 4px 16px rgba(43, 32, 21, 0.06);
  transition: all 0.3s var(--ease-soft);
  margin-bottom: 1.5rem;
}

.rev-card:hover {
  border-color: var(--gold);
  box-shadow: 0 12px 32px rgba(180, 134, 58, 0.1);
  transform: translateY(-4px);
}

.rev-card .rev-quote {
  font-size: 3rem;
  color: var(--gold-pale);
  line-height: 1;
  display: block;
  margin-bottom: 0.5rem;
  opacity: 0.6;
}

.rev-card p {
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 1.5rem;
  color: var(--ink-soft);
}

.t-grid {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.rev-card {
  opacity: 0;
  visibility: hidden;
  height: 0;
  overflow: hidden;
  margin: 0 !important;
  padding: 0 !important;
  border: none !important;
  transition: opacity 0.4s var(--ease-soft), visibility 0.4s, height 0.4s;
}

.rev-card:first-child,
.rev-card.is-active {
  opacity: 1;
  visibility: visible;
  height: auto;
  overflow: visible;
  margin-bottom: 1.5rem !important;
  padding: 2rem !important;
  border: 1px solid var(--gold-line) !important;
}

/* ============================= RESPONSIVE ADJUSTMENTS ============================= */
/* Hide carousel dots on all screen sizes */
.carousel-dots {
  display: none !important;
}

@media (max-width: 768px) {

  /* ===== ANNOUNCEMENT BANNER - MAKE IT SHINE ===== */
  .announcement-banner {
    padding: 0.75rem 0;
    font-size: 12px;
    background: linear-gradient(90deg, var(--gold-deepest) 0%, rgba(92, 61, 31, 0.95) 100%);
    box-shadow: 0 4px 16px rgba(43, 32, 21, 0.15);
    border-bottom: 2px solid var(--gold);
  }

  .announcement-text {
    padding: 0 1rem;
    font-weight: 600;
    letter-spacing: 0.8px;
    color: var(--gold-bright);
  }

  /* ===== SHOWCASE SECTION - MAKE IT STANDOUT ===== */
  .showcase {
    box-shadow: inset 0 4px 16px rgba(43, 32, 21, 0.08);
  }

  .showcase-hint {
    font-size: clamp(1.5rem, 3.5vw, 2.2rem);
    font-weight: 700;
    text-shadow: 0 2px 8px rgba(43, 32, 21, 0.1);
  }

  /* ===== TESTIMONIALS - ENHANCE CARDS ===== */
  .rev-card {
    border: 2px solid var(--gold-line);
    box-shadow: 0 8px 20px rgba(43, 32, 21, 0.08);
    padding: 2rem 1.8rem;
    border-radius: 12px;
    background: var(--white);
    transition: all 0.3s ease;
  }

  .rev-card:active {
    box-shadow: 0 12px 28px rgba(180, 134, 58, 0.12);
    border-color: var(--gold);
    transform: translateY(-2px);
  }

  .rev-card p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--ink-soft);
  }

  .rev-quote {
    font-size: 2.2rem;
    color: var(--gold-pale);
    display: block;
    margin-bottom: 0.5rem;
  }

  .rev-who {
    margin-top: 1.2rem;
    padding-top: 1rem;
    border-top: 1px solid var(--gold-line-soft);
    display: flex;
    align-items: center;
    gap: 0.8rem;
  }

  .rev-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--gold-pale), var(--gold));
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.85rem;
  }

  .rev-who .name {
    font-weight: 700;
    font-size: 0.9rem;
    color: var(--ink);
  }

  .rev-who .loc {
    font-size: 0.75rem;
    color: var(--ink-faint);
  }

  /* ===== BUTTONS - KEEP SUBTLE BUT POLISHED ===== */
  .btn {
    box-shadow: 0 4px 12px rgba(180, 134, 58, 0.12);
    transition: all 0.25s var(--ease-soft);
  }

  .btn-gold:active {
    box-shadow: 0 2px 8px rgba(180, 134, 58, 0.2);
    transform: scale(0.98);
  }

  /* ===== PRODUCT GRID - 2 COLUMNS ON MOBILE ===== */
  .quick-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 1.2rem !important;
    padding: 0.75rem !important;
  }

  .quick-tile {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    gap: 0.9rem !important;
  }

  .quick-shop {
    margin-top: 0.5rem !important;
    padding-top: 0.5rem !important;
  }

  .quick-tile-media {
    will-change: transform !important;
  }

  .quick-tile-media img {
    will-change: transform !important;
  }

  .quick-tile:active .quick-tile-media {
    transform: scale(0.95) !important;
    transition: transform 0.2s ease-out !important;
  }

  .quick-tile-media {
    width: 100% !important;
    height: auto !important;
    aspect-ratio: 4/5 !important;
    object-fit: contain !important;
    border-radius: 12px !important;
    min-width: 0 !important;
    min-height: auto !important;
  }

  .quick-tile-media img {
    width: 100% !important;
    height: 100% !important;
    object-fit: contain !important;
    min-width: 0 !important;
    min-height: 0 !important;
    display: block !important;
  }

  .quick-tile-name {
    display: block;
    margin-top: 0.8rem;
    font-size: 13px;
    font-weight: 600;
    text-align: center;
    color: var(--ink);
  }

  .quick-tile-bio {
    margin: 0.6rem 0 0;
    font-size: 12px;
    text-align: center;
    color: var(--ink-soft);
    line-height: 1.4;
    font-weight: 400;
  }

  .testimonials-dots {
    gap: 0.5rem;
  }

  .t-dot {
    width: 8px;
    height: 8px;
  }

  /* ===== TESTIMONIALS CAROUSEL - MOBILE ===== */
  .t-grid {
    min-height: 420px;
  }

  .rev-card {
    padding: 1.5rem 1.2rem;
    border-radius: 10px;
  }

  /* Mobile button sizing - touch targets 44px minimum (WCAG AAA) */
  .btn,
  button,
  .cta-button,
  [role="button"],
  .quick-tile,
  .p-card {
    min-height: 44px !important;
    min-width: 44px !important;
  }

  .cta-button,
  .btn {
    padding: 0.625rem 1.25rem !important;
  }

  a[href] {
    min-height: 44px !important;
    display: flex !important;
    align-items: center !important;
  }

  /* Showcase section generous height on mobile */
  .showcase {
    min-height: clamp(180px, 22vh, 260px) !important;
    height: auto !important;
    padding-block: clamp(3.5rem, 6vw, 5rem) !important;
    margin: 0 auto !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
  }

  /* Product page mobile spacing - aggressive reduction for compact layout */
  .pp-section.band {
    padding-block: 1rem !important;
  }

  /* Mobile scroll performance */
  html {
    overscroll-behavior-y: contain !important;
  }

  body {
    -webkit-tap-highlight-color: transparent !important;
  }
}

/* Tablet showcase optimization */
@media (min-width: 769px) and (max-width: 1024px) {
  .showcase {
    min-height: clamp(220px, 26vh, 320px) !important;
    height: auto !important;
    padding-block: clamp(4rem, 6.5vw, 6rem) !important;
    margin: 0 auto !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
  }

  /* Product page tablet spacing optimization */
  .pp-section.band {
    padding-block: 1.2rem !important;
  }
}

@media (max-width: 480px) {
  .announcement-text {
    padding: 0 0.75rem;
  }

  .announcement-banner {
    font-size: 12px;
  }
}

/* ===== CAROUSEL SECTION ===== */
.carousel-section {
  position: relative;
  width: 100%;
  margin: 0 auto 0;
  padding: 0;
  z-index: 1;
}

.carousel-container {
  position: relative;
  width: calc(100% - 2rem);
  margin: 3rem auto 1.5rem auto;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
}

.carousel-slides {
  position: relative;
  width: 100%;
  height: 300px;
  overflow: hidden;
  background-color: #fff;
  display: block;
}

.carousel-section .carousel-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  opacity: 0;
  transition: opacity 0.8s ease-in-out;
  z-index: 0;
}

.carousel-section .carousel-slide.active {
  opacity: 1;
  transform: translateX(0);
  display: block !important;
  pointer-events: auto;
  z-index: 10;
}

.carousel-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.7);
  border: none;
  color: #333;
  font-size: 2rem;
  cursor: pointer;
  padding: 10px 15px;
  border-radius: 4px;
  z-index: 10;
  transition: background 0.3s;
}

.carousel-arrow:hover {
  background: rgba(255, 255, 255, 0.9);
}

.carousel-arrow.prev {
  left: 10px;
}

.carousel-arrow.next {
  right: 10px;
}

.carousel-dots {
  position: absolute;
  bottom: 15px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 10;
}

.carousel-dots .dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.6);
  border: none;
  cursor: pointer;
  transition: background 0.3s;
}

.carousel-dots .dot.active {
  background: rgba(255, 255, 255, 0.9);
}

/* ===== HEADER Z-INDEX ===== */
.navbar,
header,
nav {
  position: relative !important;
  z-index: 100 !important;
}

/* ===== MOBILE: CAROUSEL ===== */
@media (max-width: 768px) {
  .carousel-container {
    width: calc(100% - 2rem) !important;
    margin: 3rem auto 1.5rem auto !important;
  }

  .carousel-slides {
    height: 220px !important;
  }

  .carousel-arrow {
    font-size: 1.5rem;
    padding: 8px 12px;
  }

  .carousel-dots {
    bottom: 12px;
    gap: 6px;
  }

  .carousel-dots .dot {
    width: 8px;
    height: 8px;
  }
}

@media (max-width: 480px) {
  .carousel-container {
    width: calc(100% - 1rem) !important;
    margin: 2rem 0.5rem 1rem 0.5rem !important;
    border-radius: 10px !important;
  }

  .carousel-slides {
    height: 180px !important;
  }

  .carousel-arrow {
    font-size: 1.2rem;
    padding: 6px 10px;
  }

  .carousel-dots {
    bottom: 10px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .contact-info-list .ci {
    opacity: 1;
    transform: none;
  }
}

/* Hero Carousel Override - New Flexbox-based Carousel */
#hero-carousel .carousel-slide.active {
  position: relative !important;
  opacity: 1 !important;
  transform: none !important;
  display: flex !important;
  pointer-events: auto !important;
}

#hero-carousel .carousel-slides-wrapper {
  display: flex !important;
}

/* ===== MOBILE CAROUSEL - Static Fallback ===== */
@media screen and (max-width: 768px) {

  /* Hide complex JS carousel on mobile */
  .hero-carousel-wrapper {
    display: none !important;
  }

  /* Show mobile static hero instead */
  .mobile-hero-static {
    display: block !important;
    width: 100% !important;
    min-height: 400px !important;
    background-color: #F5E6D3 !important;
    padding: 2rem 1rem !important;
    box-sizing: border-box !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    text-align: center !important;
  }

  .mobile-hero-static .eyebrow {
    font-family: 'Playfair Display', 'EB Garamond', 'Crimson Text', serif !important;
    font-size: 1.3rem !important;
    color: #8B3A3A !important;
    margin: 0 0 0.5rem 0 !important;
    font-weight: 700 !important;
    font-style: italic !important;
  }

  .mobile-hero-static .headline {
    font-family: 'Poppins', sans-serif !important;
    font-size: 2.5rem !important;
    font-weight: 900 !important;
    color: #5C2C2C !important;
    margin: 0.5rem 0 1rem 0 !important;
    text-transform: uppercase !important;
    line-height: 1 !important;
    border-bottom: 3px solid #7A2828 !important;
    padding-bottom: 12px !important;
    display: inline-block !important;
  }

  .mobile-hero-static .cta-button {
    display: inline-block !important;
    padding: 0.7rem 1.8rem !important;
    background: #E85A3F !important;
    color: white !important;
    font-weight: bold !important;
    text-decoration: none !important;
    border-radius: 4px !important;
    margin-top: 1rem !important;
  }

  .mobile-hero-static .hero-image {
    width: 100% !important;
    max-width: 280px !important;
    height: auto !important;
    margin-top: 1.5rem !important;
  }

  .mobile-hero-static .hero-image img {
    width: 100% !important;
    height: auto !important;
    max-height: 200px !important;
    object-fit: contain !important;
  }
}

/* ===== DESKTOP CAROUSEL (Keep Original) ===== */
@media screen and (min-width: 769px) {
  .mobile-hero-static {
    display: none !important;
    visibility: hidden !important;
    height: 0 !important;
    margin: 0 !important;
    padding: 0 !important;
    position: absolute !important;
    left: -9999px !important;
  }

  .hero-carousel-wrapper {
    display: block !important;
  }
}

/* ===== HERO CAROUSEL BASE CARD CONTAINER ===== */
.hero-carousel-wrapper {
  width: 92% !important;
  max-width: 1300px !important;
  margin: 1.5rem auto 0 !important;
  border-radius: 24px !important;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12) !important;
  padding: 0 !important;
  overflow: hidden !important;
  min-height: 0 !important;
  height: auto !important;
  background: transparent !important;
}

#hero-carousel {
  width: 100% !important;
  height: auto !important;
  min-height: 0 !important;
  position: relative !important;
  display: block !important;
  overflow: hidden !important;
  opacity: 1 !important;
  visibility: visible !important;
  border-radius: inherit !important;
  padding: 0 !important;
  margin: 0 !important;
  background: transparent !important;
}

.carousel-slides-wrapper {
  display: block !important;
  width: 100% !important;
  height: auto !important;
  min-height: 0 !important;
  position: relative !important;
  overflow: hidden !important;
  opacity: 1 !important;
  visibility: visible !important;
  border-radius: inherit !important;
  padding: 0 !important;
  margin: 0 !important;
  background: transparent !important;
}

.carousel-slide.active {
  position: relative !important;
  display: block !important;
  width: 100% !important;
  min-width: 100% !important;
  height: auto !important;
  min-height: 0 !important;
  padding: 0 !important;
  margin: 0 !important;
  border-radius: inherit !important;
  opacity: 1 !important;
  visibility: visible !important;
  background: transparent !important;
}

.slide-content {
  position: relative !important;
  z-index: 2 !important;
  width: 100% !important;
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  gap: 0.5rem !important;
  text-align: center !important;
  opacity: 1 !important;
  visibility: visible !important;
}

.eyebrow {
  font-family: 'Playfair Display', 'EB Garamond', 'Crimson Text', serif !important;
  font-size: 1.1rem !important;
  font-weight: 700 !important;
  font-style: italic !important;
  line-height: 1.2 !important;
  text-align: center !important;
  text-transform: none !important;
  margin: 0 0 8px 0 !important;
  color: #7A2828 !important;
  width: 100% !important;
}

.headline {
  font-size: 1.8rem !important;
  font-weight: 800 !important;
  line-height: 1.1 !important;
  margin: 0 0 16px 0 !important;
  width: 100% !important;
  word-break: break-word !important;
  color: #7A2828 !important;
}

.cta-button {
  display: inline-block !important;
  padding: 10px 20px !important;
  background: #D94A38 !important;
  color: #fff !important;
  font-weight: bold !important;
  font-size: 13px !important;
  border-radius: 4px !important;
  text-decoration: none !important;
  border: none !important;
  cursor: pointer !important;
  margin-bottom: 20px !important;
}

.slide-image {
  position: relative !important;
  z-index: 2 !important;
  width: 100% !important;
  min-height: 200px !important;
  display: flex !important;
  justify-content: center !important;
  align-items: center !important;
  opacity: 1 !important;
  visibility: visible !important;
}

.slide-image img {
  position: relative !important;
  z-index: 2 !important;
  max-width: 100% !important;
  max-height: 180px !important;
  height: auto !important;
  object-fit: contain !important;
  display: block !important;
  opacity: 1 !important;
  visibility: visible !important;
}

/* ===== DESKTOP CAROUSEL (Grid Side-by-Side Layout) ===== */
@media screen and (min-width: 1024px) {
  .carousel-slide.active {
    display: grid !important;
    grid-template-columns: 1fr 1.2fr !important;
    align-items: center !important;
    gap: 32px !important;
    text-align: left !important;
    padding: 40px 60px !important;
  }

  .carousel-slide .eyebrow {
    font-family: 'Playfair Display', 'EB Garamond', 'Crimson Text', serif !important;
    font-size: 1.2rem !important;
    font-weight: 700 !important;
    font-style: italic !important;
    text-transform: uppercase !important;
    letter-spacing: 0 !important;
    display: block !important;
    color: #7A2828 !important;
    margin: 0 0 0.75rem 0 !important;
    line-height: 1.2 !important;
    text-align: left !important;
  }

  .carousel-slide .eyebrow::before {
    display: none !important;
  }

  .carousel-slide .headline {
    font-weight: 900 !important;
    text-align: left !important;
    border-bottom: 4px solid #7A2828 !important;
    padding-bottom: 16px !important;
    margin-bottom: 16px !important;
    display: inline-block !important;
  }

  .slide-content {
    text-align: left !important;
    width: 100% !important;
    margin-bottom: 0 !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: flex-start !important;
  }

  .slide-image {
    width: 100% !important;
    display: flex !important;
    justify-content: center !important;
  }

  .slide-image img {
    max-width: 100% !important;
    height: auto !important;
    object-fit: contain !important;
  }
}

/* ===== CAROUSEL SLIDE IMAGE FIX ===== */
.carousel-slide .slide-image {
  min-width: 250px !important;
  min-height: 250px !important;
  width: 100% !important;
  height: auto !important;
  flex: 1 1 auto !important;
}

.carousel-slide .slide-image img {
  width: auto !important;
  height: auto !important;
  max-width: 100% !important;
  max-height: 400px !important;
  display: block !important;
  object-fit: contain !important;
}

/* ===== HERO CAROUSEL BASE STYLES - FORCE VISIBILITY ===== */
.hero-carousel-wrapper {
  display: block !important;
  width: 90% !important;
  max-width: 1300px !important;
  margin: 0 auto 0 auto !important;
  padding: 0 !important;
  min-height: auto !important;
  position: relative !important;
  overflow: hidden !important;
  border-radius: 24px !important;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12) !important;
}

#hero-carousel,
.carousel-slides-wrapper {
  display: block !important;
  width: 100% !important;
  padding: 0 !important;
  margin: 0 !important;
  position: relative !important;
  overflow: hidden !important;
}

.carousel-slides-wrapper {
  display: flex !important;
  transition: transform 0.6s ease !important;
}

/* BASE CAROUSEL SLIDES - STRICT DISPLAY CONTROL */
.carousel-slide {
  display: none !important;
  width: 100% !important;
  min-width: 100% !important;
  box-sizing: border-box !important;
}

/* SHOW ALL SLIDES WITH CONSISTENT DISPLAY */
.carousel-slide {
  display: none !important;
  padding: 0 !important;
  margin: 0 !important;
}

.carousel-slide.active {
  display: flex !important;
  padding: 0 !important;
  margin: 0 !important;
}

/* ===== DESKTOP (>= 1024px) ===== */
@media (min-width: 1024px) {
  .carousel-slide.active {
    flex-direction: row !important;
    justify-content: flex-start !important;
    align-items: center !important;
    min-height: 520px !important;
    padding: 30px 60px 30px 120px !important;
    gap: 60px !important;
  }

  .hero-text-block,
  .slide-content {
    width: 32% !important;
    max-width: 380px !important;
    flex-shrink: 0 !important;
    text-align: left !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: flex-start !important;
    margin-left: 0 !important;
    z-index: 10 !important;
  }

  .hero-product-block,
  .slide-image {
    width: 62% !important;
    display: flex !important;
    justify-content: flex-start !important;
    align-items: center !important;
    z-index: 1 !important;
  }

  .hero-product-block img,
  .slide-image img {
    max-height: 420px !important;
    width: auto !important;
    max-width: 100% !important;
    object-fit: contain !important;
  }

  .script-lead {
    font-size: 52px !important;
    color: #E03E1A !important;
    font-family: 'Playfair Display', serif !important;
    font-weight: 400 !important;
    font-style: italic !important;
    line-height: 1.2 !important;
    margin: 0 0 8px 0 !important;
    letter-spacing: -0.5px !important;
  }

  .bold-headline {
    font-size: 78px !important;
    color: #4A1C1C !important;
    font-family: 'Playfair Display', serif !important;
    font-weight: 700 !important;
    text-transform: uppercase !important;
    line-height: 0.9 !important;
    margin: 12px 0 24px 0 !important;
    letter-spacing: 1px !important;
  }

  .accent-line {
    width: 70px !important;
    height: 4px !important;
    background: #6B2E2E !important;
    margin: 12px 0 24px 0 !important;
  }

  .cta-button {
    background: #E03E1A !important;
    color: #FFFFFF !important;
    font-family: 'Plus Jakarta Sans', sans-serif !important;
    font-weight: 800 !important;
    text-transform: uppercase !important;
    padding: 14px 28px !important;
    border-radius: 0px !important;
    display: inline-block !important;
  }
}

/* ===== TABLET (768px - 1023px) ===== */
@media (min-width: 768px) and (max-width: 1023px) {
  .carousel-slide.active {
    flex-direction: row !important;
    min-height: 420px !important;
    padding: 24px 40px 24px 80px !important;
    align-items: center !important;
    gap: 40px !important;
    justify-content: flex-start !important;
  }

  .hero-text-block,
  .slide-content {
    width: 38% !important;
    margin-left: 0 !important;
    align-items: flex-start !important;
    display: flex !important;
    flex-direction: column !important;
  }

  .hero-product-block,
  .slide-image {
    width: 58% !important;
    justify-content: flex-start !important;
    display: flex !important;
  }

  .hero-product-block img,
  .slide-image img {
    max-height: 340px !important;
    width: auto !important;
    max-width: 100% !important;
  }

  .script-lead {
    font-size: 42px !important;
    color: #E03E1A !important;
    font-family: 'Playfair Display', serif !important;
    font-weight: 400 !important;
    font-style: italic !important;
    letter-spacing: -0.3px !important;
  }

  .bold-headline {
    font-size: 56px !important;
    color: #4A1C1C !important;
    font-family: 'Playfair Display', serif !important;
    font-weight: 700 !important;
    letter-spacing: 0.8px !important;
  }
}

/* ===== MOBILE (< 768px) ===== */
@media (max-width: 767px) {
  .carousel-slide.active {
    flex-direction: column !important;
    min-height: auto !important;
    padding: 32px 20px !important;
    text-align: center !important;
    gap: 0 !important;
    justify-content: center !important;
    align-items: center !important;
  }

  .hero-text-block,
  .slide-content {
    width: 100% !important;
    margin-left: 0 !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    margin-bottom: 24px !important;
  }

  .hero-product-block,
  .slide-image {
    width: 100% !important;
    display: flex !important;
    justify-content: center !important;
  }

  .hero-product-block img,
  .slide-image img {
    max-height: 280px !important;
    width: 100% !important;
    object-fit: contain !important;
  }

  .script-lead {
    font-family: 'Playfair Display', serif !important;
    color: #E03E1A !important;
    font-size: 32px !important;
    font-weight: 400 !important;
    font-style: italic !important;
    line-height: 1.2 !important;
    letter-spacing: -0.2px !important;
  }

  .bold-headline {
    font-family: 'Playfair Display', serif !important;
    font-size: 42px !important;
    font-weight: 700 !important;
    color: #4A1C1C !important;
    text-transform: uppercase !important;
    line-height: 0.9 !important;
    letter-spacing: 0.6px !important;
  }

  .accent-line {
    width: 70px !important;
    height: 4px !important;
    background: #6B2E2E !important;
    margin: 12px auto !important;
  }

  .cta-button {
    width: 100% !important;
    max-width: 240px !important;
    margin: 0 auto !important;
    background: #E03E1A !important;
    color: #FFFFFF !important;
    font-weight: 800 !important;
    text-transform: uppercase !important;
  }
}

/* ===== UNIVERSAL TYPOGRAPHY & COLORS ===== */
.script-lead {
  font-family: 'Caveat', cursive !important;
  color: #E03E1A !important;
  font-weight: 600 !important;
}

.bold-headline {
  font-family: 'Plus Jakarta Sans', 'Syne', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif !important;
  color: #4A1C1C !important;
  font-weight: 900 !important;
  text-transform: uppercase !important;
}

.accent-line {
  background-color: #6B2E2E !important;
  border-radius: 0 !important;
}

.cta-button {
  background-color: #E03E1A !important;
  color: #FFFFFF !important;
  text-transform: uppercase !important;
  font-weight: 800 !important;
}


/* ===== SLIDE 3: PREMIUM SUPERFOODS/SEEDS STYLING ===== */

/* Base styling for Slide 3 */
.carousel-slide.slide-seeds {
  background-color: #11291D !important;
}

/* Slide 3 responsive typography */
@media (min-width: 1024px) {
  .slide-seeds-eyebrow {
    font-size: 0.75rem !important;
    font-weight: 500 !important;
    color: #D4AF37 !important;
  }

  .slide-seeds-title {
    font-size: 3.4rem !important;
    color: #FFFFFF !important;
  }

  .slide-seeds-desc {
    font-size: 0.95rem !important;
    color: #E0EADF !important;
    font-weight: 300 !important;
    max-width: 400px !important;
  }
}

@media (min-width: 768px) and (max-width: 1023px) {
  .hero-text-block {
    padding-left: 3rem !important;
  }

  .slide-seeds-title {
    font-size: 2.3rem !important;
    color: #FFFFFF !important;
  }

  .slide-seeds-desc {
    font-size: 0.9rem !important;
    color: #E0EADF !important;
    font-weight: 300 !important;
  }
}

@media (max-width: 767px) {
  .hero-text-block {
    padding-left: 1.5rem !important;
    text-align: center !important;
  }

  .slide-seeds-title {
    font-size: 1.9rem !important;
    color: #FFFFFF !important;
  }

  .slide-seeds-desc {
    max-width: 100% !important;
    margin-left: auto !important;
    margin-right: auto !important;
    font-size: 0.9rem !important;
    color: #E0EADF !important;
    font-weight: 300 !important;
  }
}

.slide-seeds .script-lead {
  font-family: 'Playfair Display', serif !important;
  color: #7C2A1E !important;
  font-weight: 400 !important;
  font-style: italic !important;
}

.slide-seeds .bold-headline {
  font-family: 'Playfair Display', serif !important;
  font-weight: 700 !important;
  color: #2D231F !important;
  text-transform: uppercase !important;
  letter-spacing: 1px !important;
}

.slide-seeds .accent-line {
  background-color: #7C2A1E !important;
  height: 2px !important;
}

.slide-seeds .cta-button {
  background-color: #E03E1A !important;
  color: #FFFFFF !important;
  font-weight: 700 !important;
  letter-spacing: 1px !important;
  border-radius: 4px !important;
  box-shadow: 0 4px 14px rgba(224, 62, 26, 0.25) !important;
}

/* DESKTOP (>= 1024px) */
@media (min-width: 1024px) {
  .carousel-slide.slide-seeds.active {
    flex-direction: row !important;
    justify-content: space-between !important;
    align-items: center !important;
    min-height: 520px !important;
    padding: 40px 60px 40px 80px !important;
  }

  .slide-seeds .hero-text-block {
    width: 38% !important;
    max-width: 440px !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: flex-start !important;
    text-align: left !important;
  }

  .slide-seeds .hero-product-block {
    width: 58% !important;
    display: flex !important;
    justify-content: flex-end !important;
    align-items: center !important;
  }

  .slide-seeds .hero-product-block img {
    max-height: 420px !important;
    width: auto !important;
    max-width: 100% !important;
    object-fit: contain !important;
    filter: drop-shadow(0 16px 24px rgba(0, 0, 0, 0.08)) !important;
  }

  .slide-seeds .script-lead {
    font-size: 52px !important;
    margin-bottom: 8px !important;
    line-height: 1.2 !important;
    letter-spacing: -0.5px !important;
  }

  .slide-seeds .bold-headline {
    font-size: 78px !important;
    line-height: 0.9 !important;
    margin-bottom: 16px !important;
    letter-spacing: 1px !important;
  }

  .slide-seeds .accent-line {
    width: 44px !important;
    margin-bottom: 24px !important;
  }

  .slide-seeds .cta-button {
    padding: 14px 32px !important;
    font-size: 14px !important;
  }
}

/* TABLET (768px - 1023px) */
@media (min-width: 768px) and (max-width: 1023px) {
  .carousel-slide.slide-seeds.active {
    flex-direction: row !important;
    justify-content: space-between !important;
    align-items: center !important;
    min-height: 440px !important;
    padding: 30px 40px !important;
  }

  .slide-seeds .hero-text-block {
    width: 44% !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: flex-start !important;
    text-align: left !important;
  }

  .slide-seeds .hero-product-block {
    width: 52% !important;
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
  }

  .slide-seeds .hero-product-block img {
    max-height: 330px !important;
    width: auto !important;
    max-width: 100% !important;
    object-fit: contain !important;
  }

  .slide-seeds .script-lead {
    font-size: 42px !important;
    margin-bottom: 6px !important;
    letter-spacing: -0.3px !important;
  }

  .slide-seeds .bold-headline {
    font-size: 56px !important;
    line-height: 0.9 !important;
    margin-bottom: 14px !important;
    letter-spacing: 0.8px !important;
  }

  .slide-seeds .accent-line {
    width: 36px !important;
    margin-bottom: 18px !important;
  }

  .slide-seeds .cta-button {
    padding: 12px 22px !important;
    font-size: 13px !important;
  }
}

/* MOBILE (< 768px) */
@media (max-width: 767px) {
  .carousel-slide.slide-seeds.active {
    flex-direction: column !important;
    justify-content: center !important;
    align-items: center !important;
    min-height: auto !important;
    padding: 36px 20px 40px 20px !important;
    text-align: center !important;
  }

  .slide-seeds .hero-text-block {
    width: 100% !important;
    max-width: 100% !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    text-align: center !important;
    margin-bottom: 28px !important;
  }

  .slide-seeds .hero-product-block {
    width: 100% !important;
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
  }

  .slide-seeds .hero-product-block img {
    max-height: 260px !important;
    width: 100% !important;
    object-fit: contain !important;
  }

  .slide-seeds .script-lead {
    font-size: 32px !important;
    margin-bottom: 6px !important;
    line-height: 1.2 !important;
    letter-spacing: -0.2px !important;
  }

  .slide-seeds .bold-headline {
    font-size: 42px !important;
    line-height: 0.9 !important;
    margin-bottom: 12px !important;
    letter-spacing: 0.6px !important;
  }

  .slide-seeds .accent-line {
    width: 50px !important;
    margin: 0 auto 18px auto !important;
  }

  .slide-seeds .cta-button {
    width: 100% !important;
    max-width: 240px !important;
    padding: 12px 20px !important;
    font-size: 13px !important;
    margin: 0 auto !important;
  }
}

/* ===== SLIDE 2: PREMIUM ALMONDS SHOWCASE ===== */

/* Base styling for Slide 2 */
.carousel-slide.slide-almonds {
  background-color: #2D1417 !important;
}

.slide-almonds-text {
  max-width: 520px !important;
  display: flex !important;
  flex-direction: column !important;
  align-items: flex-start !important;
  z-index: 10 !important;
  visibility: visible !important;
  opacity: 1 !important;
  position: relative !important;
}

.slide-almonds-subheading {
  font-family: 'Montserrat', sans-serif !important;
  font-size: 0.95rem !important;
  font-weight: 300 !important;
  font-style: normal !important;
  color: #D4AF37 !important;
  margin: 0 0 16px 0 !important;
  line-height: 1.6 !important;
  letter-spacing: 2px !important;
  text-transform: uppercase !important;
  display: block !important;
  opacity: 1 !important;
}

.slide-almonds-title {
  font-family: 'Crimson Text', serif !important;
  font-size: 3.8rem !important;
  font-weight: 700 !important;
  text-transform: uppercase !important;
  color: #FFFFFF !important;
  line-height: 1.15 !important;
  margin: 0 0 28px 0 !important;
  letter-spacing: 1px !important;
  display: block !important;
  opacity: 1 !important;
}

.slide-almonds-cta {
  display: inline-block !important;
  background: #D4AF37 !important;
  color: #2D1417 !important;
  padding: 14px 28px !important;
  border-radius: 50px !important;
  text-transform: uppercase !important;
  letter-spacing: 1.5px !important;
  font-weight: 700 !important;
  font-size: 0.85rem !important;
  text-decoration: none !important;
  transition: all 0.3s ease !important;
  border: none !important;
  cursor: pointer !important;
}

.slide-almonds-cta:hover {
  background: #E8C547 !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 12px 24px rgba(212, 175, 55, 0.35) !important;
}

.slide-almonds-image {
  flex: 1 !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  transition: transform 0.6s ease !important;
  filter: drop-shadow(0px 15px 25px rgba(0, 0, 0, 0.5)) !important;
}

.slide-almonds-image:hover {
  transform: scale(1.02) !important;
}

/* Desktop (≥1024px) */
@media (min-width: 1024px) {
  .carousel-slide.slide-almonds {
    padding: 30px 60px 30px 120px !important;
    gap: 60px !important;
  }

  .slide-almonds-text {
    width: 32% !important;
    max-width: 450px !important;
  }

  .slide-almonds-title {
    font-size: 56px !important;
  }
}

/* Tablet (768px - 1023px) */
@media (min-width: 768px) and (max-width: 1023px) {
  .carousel-slide.slide-almonds {
    padding: 24px 40px 24px 80px !important;
    gap: 40px !important;
  }

  .slide-almonds-text {
    width: 38% !important;
  }

  .slide-almonds-subheading {
    font-size: 0.9rem !important;
    letter-spacing: 1.8px !important;
  }

  .slide-almonds-title {
    font-size: 42px !important;
  }
}

/* Mobile (< 768px) */
@media (max-width: 767px) {
  .carousel-slide.slide-almonds {
    flex-direction: column !important;
    padding: 32px 20px !important;
    gap: 20px !important;
    text-align: center !important;
  }

  .slide-almonds-text {
    width: 100% !important;
    max-width: 100% !important;
    align-items: center !important;
  }

  .slide-almonds-subheading {
    font-size: 0.85rem !important;
    letter-spacing: 1.5px !important;
  }

  .slide-almonds-title {
    font-size: 32px !important;
  }

  .slide-almonds-image {
    width: 100% !important;
    max-height: 300px !important;
  }

  .slide-almonds-image img {
    max-height: 300px !important;
  }
}

/* =========================================================================
   HERO CAROUSEL: PERMANENT RESPONSIVE BANNER DISPLAY (Mobile, Tablet & Desktop)
   Fixes: iPad Mini (768x1024), Tablets & Mobile photo squishing / dead space.
   Each banner is a 2.84:1 panoramic marketing image. Container hugs the photo cleanly.
   ========================================================================= */

.hero-carousel-wrapper {
  display: block !important;
  width: 92% !important;
  max-width: 1300px !important;
  margin: 1.5rem auto 0 !important;
  border-radius: 24px !important;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12) !important;
  overflow: hidden !important;
  padding: 0 !important;
  background: transparent !important;
  min-height: 0 !important;
  height: auto !important;
  position: relative !important;
}

#hero-carousel {
  width: 100% !important;
  height: auto !important;
  min-height: 0 !important;
  max-height: none !important;
  position: relative !important;
  display: block !important;
  overflow: hidden !important;
  border-radius: inherit !important;
  background: transparent !important;
  padding: 0 !important;
  margin: 0 !important;
  opacity: 1 !important;
  visibility: visible !important;
}

.carousel-slides-wrapper {
  display: block !important;
  width: 100% !important;
  height: auto !important;
  min-height: 0 !important;
  max-height: none !important;
  position: relative !important;
  overflow: hidden !important;
  border-radius: inherit !important;
  background: transparent !important;
  padding: 0 !important;
  margin: 0 !important;
}

.carousel-slide {
  width: 100% !important;
  min-width: 100% !important;
  height: auto !important;
  min-height: 0 !important;
  max-height: none !important;
  padding: 0 !important;
  margin: 0 !important;
  border-radius: inherit !important;
  overflow: hidden !important;
  background: transparent !important;
  box-sizing: border-box !important;
}

.carousel-slide.active {
  display: block !important;
  width: 100% !important;
  min-width: 100% !important;
  height: auto !important;
  min-height: 0 !important;
  max-height: none !important;
  padding: 0 !important;
  margin: 0 !important;
  opacity: 1 !important;
  visibility: visible !important;
}

.carousel-slide:not(.active) {
  display: none !important;
  opacity: 0 !important;
  visibility: hidden !important;
}

.carousel-slide img,
.carousel-slide.active img {
  width: 100% !important;
  max-width: 100% !important;
  height: auto !important;
  max-height: none !important;
  min-height: 0 !important;
  aspect-ratio: 2114 / 744 !important;
  object-fit: cover !important;
  object-position: center !important;
  display: block !important;
  margin: 0 !important;
  padding: 0 !important;
  border-radius: inherit !important;
  box-sizing: border-box !important;
}

/* Arrow Navigation: Centered on the Banner Photo */
.hero-carousel-wrapper .carousel-btn,
#hero-carousel .carousel-btn {
  position: absolute !important;
  top: 50% !important;
  transform: translateY(-50%) !important;
  z-index: 25 !important;
  pointer-events: auto !important;
  width: 46px !important;
  height: 46px !important;
  border-radius: 50% !important;
  background: rgba(255, 255, 255, 0.82) !important;
  color: #2E4A23 !important;
  border: 1px solid rgba(0, 0, 0, 0.08) !important;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.16) !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  font-size: 20px !important;
  cursor: pointer !important;
  transition: all 0.25s ease !important;
}

.hero-carousel-wrapper .carousel-btn:hover,
#hero-carousel .carousel-btn:hover {
  background: rgba(255, 255, 255, 0.98) !important;
  transform: translateY(-50%) scale(1.08) !important;
}

.hero-carousel-wrapper .carousel-btn.prev,
#hero-carousel .carousel-btn.prev {
  left: clamp(12px, 2.5vw, 24px) !important;
  right: auto !important;
}

.hero-carousel-wrapper .carousel-btn.next,
#hero-carousel .carousel-btn.next {
  right: clamp(12px, 2.5vw, 24px) !important;
  left: auto !important;
}

/* Tablet (iPad Mini, iPad Air, iPad Pro - 768px to 1024px) */
@media (max-width: 1024px) {
  .hero-carousel-wrapper {
    width: 92% !important;
    max-width: 960px !important;
    margin: 1.25rem auto 0 !important;
    border-radius: 20px !important;
    min-height: 0 !important;
    height: auto !important;
  }

  #hero-carousel,
  .carousel-slides-wrapper,
  .carousel-slide,
  .carousel-slide.active {
    min-height: 0 !important;
    height: auto !important;
    max-height: none !important;
  }

  .carousel-slide img,
  .carousel-slide.active img {
    width: 100% !important;
    height: auto !important;
    max-height: none !important;
    min-height: 0 !important;
    aspect-ratio: 2114 / 744 !important;
    object-fit: cover !important;
    display: block !important;
    margin: 0 !important;
    padding: 0 !important;
  }

  .hero-carousel-wrapper .carousel-btn,
  #hero-carousel .carousel-btn {
    width: 42px !important;
    height: 42px !important;
    font-size: 18px !important;
  }
}

/* Mobile phones (≤ 600px) */
@media (max-width: 600px) {
  .hero-carousel-wrapper {
    width: 94% !important;
    margin: 0.75rem auto 0 !important;
    border-radius: 16px !important;
    min-height: 0 !important;
    height: auto !important;
  }

  #hero-carousel,
  .carousel-slides-wrapper,
  .carousel-slide,
  .carousel-slide.active {
    min-height: 0 !important;
    height: auto !important;
    max-height: none !important;
  }

  .carousel-slide img,
  .carousel-slide.active img {
    width: 100% !important;
    height: auto !important;
    max-height: none !important;
    min-height: 0 !important;
    aspect-ratio: 2114 / 744 !important;
    object-fit: cover !important;
    display: block !important;
    margin: 0 !important;
    padding: 0 !important;
  }

  .hero-carousel-wrapper .carousel-btn,
  #hero-carousel .carousel-btn {
    width: 32px !important;
    height: 32px !important;
    font-size: 13px !important;
  }

  .hero-carousel-wrapper .carousel-btn.prev,
  #hero-carousel .carousel-btn.prev {
    left: 8px !important;
  }

  .hero-carousel-wrapper .carousel-btn.next,
  #hero-carousel .carousel-btn.next {
    right: 8px !important;
  }
}

/* =========================================================================
   DEEP RESPONSIVE FIX: Mobile & Tablet (max-width: 1024px)
   Fixes: heading pseudo-elements, list item truncation, overflow, typography
   ========================================================================= */

@media (max-width: 1024px) {

  /* CRITICAL: Prevent horizontal scrolling while preserving smooth vertical page scroll */
  html {
    width: 100% !important;
    max-width: 100% !important;
    overflow-x: hidden !important;
    -webkit-overflow-scrolling: touch !important;
    box-sizing: border-box !important;
  }

  body {
    width: 100% !important;
    max-width: 100% !important;
    overflow-x: clip !important;
    overflow-y: visible !important;
    -webkit-overflow-scrolling: touch !important;
    box-sizing: border-box !important;
  }

  main,
  .pp-main {
    width: 100% !important;
    max-width: 100% !important;
    overflow: visible !important;
    overflow-x: visible !important;
    overflow-y: visible !important;
    box-sizing: border-box !important;
  }

  /* All container elements must respect viewport bounds */
  .wrap,
  .pp-hero {
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
    overflow-x: visible !important;
    padding-left: clamp(1rem, 4vw, 2rem) !important;
    padding-right: clamp(1rem, 4vw, 2rem) !important;
  }

  .pp-main,
  section {
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
  }

  /* Hide footer brand name on mobile and tablet - keep logo only */

  /* ===== HEADING & PSEUDO-ELEMENT FIXES ===== */
  /* Ensure eyebrow pseudo-elements don't overlap text */
  .eyebrow {
    font-size: clamp(1.2rem, 3vw, 2rem) !important;
    gap: 0.4em !important;
  }

  .eyebrow::before {
    display: none !important;
  }

  /* Ensure section titles are readable on small screens */
  .section-title {
    font-size: clamp(1.4rem, 5vw, 2.4rem) !important;
    line-height: 1.2 !important;
    letter-spacing: -0.005em !important;
  }

  .section-title em {
    font-style: italic !important;
    font-weight: 500 !important;
  }

  /* ===== LIST ITEM & BULLET FIXES ===== */
  /* Use proper flex layout to prevent text clipping */
  .pp-list {
    margin-top: 1rem !important;
    display: flex !important;
    flex-direction: column !important;
    gap: 0.75rem !important;
  }

  .pp-list li {
    display: flex !important;
    align-items: flex-start !important;
    gap: 0.75rem !important;
    padding-left: 0 !important;
    position: relative !important;
    color: var(--ink-soft) !important;
    font-size: clamp(0.85rem, 2.5vw, 0.95rem) !important;
    line-height: 1.6 !important;
  }

  /* Bullet point: use flex-shrink 0 to prevent collapsing */
  .pp-list li::before {
    content: "✦" !important;
    position: static !important;
    flex-shrink: 0 !important;
    color: var(--gold) !important;
    font-size: 0.6em !important;
    margin-top: 0.2em !important;
  }

  /* Text container in list items */
  .pp-list li::after {
    display: none !important;
  }

  /* Fallback: ensure list items don't have overflow issues */
  ul.pp-list {
    list-style: none !important;
    padding-left: 0 !important;
    margin-left: 0 !important;
  }

  /* ===== TWO-COLUMN SECTION FIXES ===== */
  /* Stack two-column layouts on smaller screens */
  .pp-two-col {
    display: flex !important;
    flex-direction: column !important;
    gap: clamp(2rem, 5vw, 3rem) !important;
    align-items: stretch !important;
  }

  .pp-two-col>div {
    width: 100% !important;
    max-width: 100% !important;
  }

  /* ===== TYPOGRAPHY & SPACING SCALING ===== */
  /* Scale typography proportionally */
  .section-sub {
    font-size: clamp(0.9rem, 2.8vw, 1rem) !important;
    line-height: 1.7 !important;
    max-width: 100% !important;
  }

  .pp-tagline {
    font-size: clamp(0.9rem, 2.8vw, 1rem) !important;
    line-height: 1.65 !important;
  }

  /* Section padding: reduce excessive padding on small screens */
  .pp-section {
    padding-top: clamp(1.5rem, 4vw, 2rem) !important;
    padding-bottom: clamp(1.5rem, 4vw, 2rem) !important;
    margin-top: 0.5rem !important;
    margin-bottom: 0.5rem !important;
  }

  .band {
    padding-block: clamp(1.2rem, 3vw, 1.8rem) !important;
  }

  /* Reduce hero section padding */
  .pp-hero {
    padding-block: clamp(1rem, 2.5vw, 1.5rem) !important;
    gap: clamp(1rem, 3vw, 1.5rem) !important;
  }

  /* ===== CARD & CONTENT BOX FIXES ===== */
  /* Ensure all product variety cards fit properly */
  .pp-varieties {
    gap: clamp(1rem, 3vw, 1.5rem) !important;
    max-width: 100% !important;
  }

  .pp-variety {
    overflow: visible !important;
    flex-wrap: nowrap !important;
  }

  .pp-variety-media {
    min-width: auto !important;
    min-height: auto !important;
  }

  .pp-variety-body {
    min-width: 0 !important;
  }

  /* ===== PHOTO & IMAGE SIZING ===== */
  .pp-photo {
    max-width: 100% !important;
    width: 100% !important;
    margin: 0 auto !important;
    height: auto !important;
  }

  .pp-photo img {
    max-width: 100% !important;
    height: auto !important;
    object-fit: contain !important;
  }

  /* ===== BUTTON & CTA SIZING ===== */
  .pp-cta {
    flex-direction: column !important;
    gap: 0.75rem !important;
  }

  .pp-cta .btn {
    width: 100% !important;
    padding: clamp(0.75rem, 2vw, 1rem) clamp(1rem, 3vw, 1.5rem) !important;
    font-size: clamp(0.7rem, 2vw, 0.8rem) !important;
  }

  /* ===== TRUST & INFO ITEMS ===== */
  .pp-trust {
    flex-direction: column !important;
    gap: 0.8rem !important;
  }

  .pp-trust-item {
    font-size: clamp(0.7rem, 2vw, 0.75rem) !important;
    gap: 0.4rem !important;
  }

  /* ===== RELATED PRODUCTS GRID ===== */
  .pp-related-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: clamp(0.8rem, 3vw, 1.2rem) !important;
    max-width: 100% !important;
  }

  /* Mobile: single column for related products */
  @media (max-width: 480px) {
    .pp-related-grid {
      grid-template-columns: 1fr !important;
    }
  }

  /* ===== FAQ SECTION FIXES ===== */
  .faq-list {
    gap: 0.75rem !important;
  }

  .faq-item {
    padding: clamp(1rem, 2.5vw, 1.2rem) !important;
  }

  .faq-item summary {
    font-size: clamp(0.9rem, 2.8vw, 1rem) !important;
  }

  /* ===== EYEBROW LABEL FIXES ===== */
  /* Ensure eyebrow labels don't create spacing issues */
  .section-head .eyebrow {
    margin-bottom: 0.5rem !important;
    display: block !important;
  }

  /* ===== CLOSING SECTION FIXES ===== */
  .pp-closing {
    max-width: 100% !important;
    padding: clamp(1rem, 3vw, 1.5rem) !important;
  }

  .pp-storage {
    font-size: clamp(0.9rem, 2.8vw, 1rem) !important;
  }

  .pp-promise {
    font-size: clamp(0.85rem, 2.5vw, 0.95rem) !important;
    line-height: 1.7 !important;
  }

  /* ===== BREADCRUMB FIXES ===== */
  .pp-breadcrumb {
    font-size: clamp(0.7rem, 2vw, 0.8rem) !important;
    gap: 0.5rem !important;
    flex-wrap: wrap !important;
  }

  /* ===== HEADER SPACING ===== */
  .pp-main {
    padding-top: clamp(80px, 15vw, 00px) !important;
  }
}

/* Tablet-specific optimizations (768px to 1024px) */
@media (min-width: 769px) and (max-width: 1024px) {

  /* Tablet: more breathing room but still responsive */
  .pp-section {
    padding-top: 1.5rem !important;
    padding-bottom: 1.5rem !important;
  }

  .section-title {
    font-size: clamp(1.8rem, 4vw, 2.2rem) !important;
  }

  .pp-cta {
    flex-direction: row !important;
    flex-wrap: wrap !important;
  }

  .pp-cta .btn {
    flex: 1 1 auto !important;
    min-width: 140px !important;
  }

  /* Tablet: two columns for related products */
  .pp-related-grid {
    grid-template-columns: repeat(3, 1fr) !important;
  }

  .pp-related-grid img {
    max-height: 350px !important;
    object-fit: contain !important;
  }

  /* Tablet: Footer grid adjust */
  .footer-grid {
    grid-template-columns: 1.2fr 1fr 1fr !important;
    gap: 2rem !important;
    padding: 2.5rem !important;
  }

}

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

  /* Performant mobile overflow prevention without universal selector layout thrashing */
  html,
  body {
    overflow-x: hidden !important;
    max-width: 100vw !important;
  }

  .hs-track,
  .heritage-showcase .hs-track,
  #hsTrack {
    max-width: none !important;
    width: max-content !important;
    flex-shrink: 0 !important;
  }

  .pp-hero {
    flex-direction: column !important;
  }

  /* Mobile: three columns for related products */
  .pp-related-grid {
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 1rem !important;
  }

  .pp-related-grid img {
    max-height: 300px !important;
    object-fit: contain !important;
  }

  /* Mobile: stack FAQ items */
  .faq-list {
    display: flex !important;
    flex-direction: column !important;
  }

  /* Reduce section head margin on mobile */
  .section-head {
    margin-bottom: clamp(1.5rem, 3vw, 2rem) !important;
  }

  /* Eyebrow adjustments for mobile */
  .eyebrow {
    font-size: clamp(1rem, 2.5vw, 1.5rem) !important;
  }

  /* Mobile button full-width in CTAs */
  .pp-cta .btn {
    width: 100% !important;
  }

  /* Mobile: Footer full-width single column */
  .footer-grid {
    grid-template-columns: 1fr !important;
    gap: 1.5rem !important;
    padding: 1.5rem !important;
  }

  .footer-brand {
    max-width: 100% !important;
    padding: 1.5rem !important;
    text-align: center !important;
  }


  .footer-col {
    text-align: center !important;
  }

  .footer-col h5 {
    font-size: clamp(0.75rem, 2.5vw, 0.88rem) !important;
  }

  .footer-col ul {
    gap: 0.6rem !important;
  }

  .footer-col a {
    font-size: clamp(0.85rem, 2.5vw, 0.95rem) !important;
  }

  .footer-col a::before {
    display: none !important;
  }
}

/* =========================================================================
   COMPREHENSIVE RESPONSIVE FIX: Word-Wrapping, Overlapping Text, & Overflow
   ========================================================================= */

@media (max-width: 1024px) {

  /* ===== BUG FIX 1: WORD-WRAPPING IN TITLES ===== */
  /* Prevent awkward word breaks in product/variety titles */
  h3,
  .product-card h3,
  .variety h3,
  .pp-variety h3,
  .quick-tile span,
  .card-title,
  .section-title,
  .item-title {
    word-break: normal !important;
    hyphens: manual !important;
    word-wrap: break-word !important;
    overflow-wrap: break-word !important;
  }

  /* Ensure card titles have enough space */
  .quick-tile span {
    max-width: 100% !important;
    width: 100% !important;
    display: block !important;
    padding: 0 0.5rem !important;
  }

  .pp-variety-body h3 {
    word-break: normal !important;
    max-width: 100% !important;
    padding: 0 !important;
  }

  /* ===== BUG FIX 2: OVERLAPPING & DUPLICATE TEXT IN FOOTER/HEADER ===== */
  /* Footer: convert to vertical stack on smaller screens */
  .footer-grid {
    display: flex !important;
    flex-direction: column !important;
    gap: 2rem !important;
    position: relative !important;
  }

  .footer-brand {
    position: static !important;
    width: 100% !important;
    max-width: 100% !important;
  }

  .footer-col {
    position: static !important;
    width: 100% !important;
    text-align: left !important;
  }

  /* Remove arrow pseudo-elements that cause overlap */
  .footer-col a::before {
    display: none !important;
  }

  /* Header: prevent text overlap & switch to drawer on tablet / mobile */
  .site-header .bar {
    position: relative !important;
    gap: 0.75rem !important;
    justify-content: space-between !important;
  }

  .nav-links {
    display: none !important;
  }

  .nav-toggle {
    display: flex !important;
    flex-shrink: 0 !important;
  }

  .brand {
    min-width: 0 !important;
    flex: 0 1 auto !important;
    flex-shrink: 0 !important;
    gap: 0.75rem !important;
  }

  .brand .mark {
    width: 54px !important;
    height: 54px !important;
    flex-shrink: 0 !important;
  }

  .brand-name {
    padding-left: 0.65rem !important;
    flex-shrink: 0 !important;
    min-width: 0 !important;
  }

  .brand-name .top {
    white-space: nowrap !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
    font-size: clamp(1.1rem, 2.2vw, 1.45rem) !important;
    line-height: 1.15 !important;
  }

  .brand-name .bottom {
    white-space: nowrap !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
    font-size: clamp(0.58rem, 1.1vw, 0.7rem) !important;
    letter-spacing: 0.15em !important;
  }

  .header-cta {
    display: flex !important;
    align-items: center !important;
    gap: 0.75rem !important;
    flex-shrink: 0 !important;
    margin-left: auto !important;
  }

  /* Remove decorative pseudo-elements that might overlap */
  .footer-col h5::after {
    display: none !important;
  }

  /* ===== BUG FIX 3: LIST & BULLET ALIGNMENT / CLIPPING ===== */
  /* Ensure lists in all sections use flex layout */
  ul,
  .pp-list,
  .list-content {
    display: flex !important;
    flex-direction: column !important;
    gap: 0.8rem !important;
    padding-left: 0 !important;
    margin-left: 0 !important;
  }

  li,
  .list-item {
    display: flex !important;
    align-items: flex-start !important;
    gap: 12px !important;
    padding-left: 0 !important;
    margin-left: 0 !important;
  }

  /* Bullet containers: prevent shrinking */
  li::before,
  .list-item::before {
    flex-shrink: 0 !important;
    flex-grow: 0 !important;
    position: static !important;
    top: auto !important;
    left: auto !important;
  }

  /* Text content in lists */
  li>span,
  .list-item>span {
    flex: 1 !important;
    min-width: 0 !important;
  }

  /* ===== BUG FIX 4: CONTAINER WIDTHS & HORIZONTAL OVERFLOW ===== */
  /* CRITICAL: All main wrappers must respect viewport bounds */
  .wrap,
  section,
  article,
  .container,
  .content-wrap {
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
    padding-left: clamp(1rem, 4vw, 2rem) !important;
    padding-right: clamp(1rem, 4vw, 2rem) !important;
  }

  /* Floating widgets: contained positioning */
  .whatsapp-float,
  [class*="float"],
  [class*="widget"] {
    position: fixed !important;
    right: 1rem !important;
    bottom: 1rem !important;
    z-index: 999 !important;
    margin: 0 !important;
    max-width: calc(100% - 2rem) !important;
  }

  /* Grid layouts: stack or reduce columns */
  .grid,
  .product-grid,
  .quick-grid,
  .card-grid {
    width: 100% !important;
    max-width: 100% !important;
    overflow-x: visible !important;
  }

  /* Product cards: ensure readability */
  .product-card,
  .quick-tile,
  .card,
  .tile {
    width: 100% !important;
    max-width: 100% !important;
    overflow: visible !important;
  }

  /* Images: responsive sizing */
  img,
  svg,
  picture {
    max-width: 100% !important;
    height: auto !important;
    display: block !important;
  }

  /* ===== ADDITIONAL RESPONSIVE FIXES ===== */
  /* Buttons: proper sizing and spacing */
  .btn,
  button,
  [role="button"] {
    min-height: 44px !important;
    padding: clamp(0.7rem, 2vw, 1rem) clamp(1rem, 3vw, 1.5rem) !important;
    font-size: clamp(0.7rem, 2vw, 0.9rem) !important;
  }

  /* Ensure text doesn't overflow containers */
  p,
  span,
  a,
  li {
    word-wrap: break-word !important;
    overflow-wrap: break-word !important;
  }

  /* Headings: responsive sizing */
  h1,
  h2,
  h3,
  h4,
  h5,
  h6 {
    word-break: normal !important;
    hyphens: manual !important;
  }

  /* Tables: responsive handling */
  table {
    max-width: 100% !important;
    width: 100% !important;
    overflow-x: auto !important;
  }

  /* Remove any absolute positioning that causes overlap */
  [style*="position: absolute"],
  [style*="position:absolute"] {
    position: static !important;
  }

  /* ===== PRODUCT CARD TEXT WRAPPING FIXES ===== */
  /* Fix awkward word breaks in product titles and descriptions */
  .pp-variety-body h3,
  .pp-variety-body p,
  .product-card h3,
  .product-card p,
  .quick-tile span {
    word-break: normal !important;
    word-wrap: break-word !important;
    overflow-wrap: break-word !important;
    hyphens: none !important;
  }

  /* Mobile: Stack product variety cards vertically */
  @media (max-width: 768px) {
    .pp-variety {
      flex-direction: column !important;
      align-items: center !important;
      text-align: center !important;
      gap: 1rem !important;
    }

    .pp-variety-media {
      width: 100% !important;
      max-width: 280px !important;
      margin: 0 auto !important;
      height: auto !important;
    }

    .pp-variety-body {
      width: 100% !important;
      max-width: 100% !important;
      padding: 0 1rem !important;
    }

    .pp-variety-body h3 {
      font-size: clamp(1.1rem, 4vw, 1.4rem) !important;
      word-break: normal !important;
      word-wrap: break-word !important;
      overflow-wrap: break-word !important;
      line-height: 1.3 !important;
    }

    .pp-variety-body p {
      font-size: clamp(0.9rem, 2.5vw, 1rem) !important;
      word-break: normal !important;
      word-wrap: break-word !important;
      overflow-wrap: break-word !important;
      line-height: 1.6 !important;
    }

    /* Product cards: better spacing for text */
    .product-card {
      flex-direction: column !important;
      align-items: center !important;
      text-align: center !important;
    }

    .product-card h3 {
      font-size: clamp(1.1rem, 4vw, 1.3rem) !important;
      margin-top: 0.75rem !important;
      word-break: normal !important;
      overflow-wrap: break-word !important;
    }

    .product-card p {
      font-size: clamp(0.85rem, 2.3vw, 0.95rem) !important;
      margin-top: 0.5rem !important;
      word-break: normal !important;
      overflow-wrap: break-word !important;
    }
  }
}

/* =========================================================================
   RAISINS PAGE & GENERAL UI/TYPOGRAPHY FIXES
   Text Duplication, FAQ Accordions, Image Centering, Footer Cleanup
   ========================================================================= */

@media (max-width: 1024px) {

  /* ===== FIX 1: TEXT DUPLICATION / SHADOW GLITCHES ===== */
  /* Remove or reduce excessive text-shadow that causes overlap/duplication */
  h1,
  h2,
  h3,
  h4,
  h5,
  h6 {
    text-shadow: none !important;
  }

  .section-title {
    text-shadow: none !important;
  }

  /* Footer links: remove text-shadow on hover to prevent duplication */
  .footer-col a:hover {
    text-shadow: none !important;
  }

  /* Ensure footer menu links render as single text items */
  .footer-col a {
    position: relative !important;
    display: inline !important;
  }

  .footer-col a::before {
    display: none !important;
  }

  /* ===== FIX 2: FAQ ACCORDIONS & DARK BANNER CARD ===== */
  /* Prevent text overlap in accordion triggers */
  .faq-item summary {
    line-height: 1.5 !important;
    min-height: 2.5rem !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
    white-space: normal !important;
  }

  .faq-item summary::after {
    position: relative !important;
    left: auto !important;
    top: auto !important;
    flex-shrink: 0 !important;
  }

  /* FAQ answer text: prevent overlap */
  .faq-item p {
    line-height: 1.8 !important;
    margin-top: 0.5rem !important;
    overflow: visible !important;
    word-break: normal !important;
  }

  /* Dark banner card: fix spacing and z-index */
  .footer-grid {
    position: relative !important;
    z-index: 1 !important;
  }

  .footer-grid::before {
    z-index: 0 !important;
    pointer-events: none !important;
  }

  .footer-brand,
  .footer-col {
    position: relative !important;
    z-index: 2 !important;
  }

  /* Ensure header text doesn't overlap body text */
  .footer-col h5 {
    margin-bottom: 1rem !important;
    padding-bottom: 0.5rem !important;
  }

  /* ===== FIX 3: PRODUCT VARIETIES RESPONSIVE GRID ===== */
  /* Product variety cards: 2 in a row on tablet (min-width: 601px) */
  .pp-varieties {
    width: 100% !important;
    display: grid !important;
    grid-template-columns: repeat(2, 1fr) !important;
    gap: clamp(1.4rem, 2.5vw, 2.2rem) !important;
    justify-content: center !important;
  }

  .pp-varieties:has(.pp-variety:first-child:last-child) {
    grid-template-columns: minmax(0, 360px) !important;
    justify-content: center !important;
  }

  .pp-varieties:has(.pp-variety:nth-child(2):last-child) {
    grid-template-columns: repeat(2, minmax(0, 360px)) !important;
    justify-content: center !important;
  }

  .pp-variety {
    width: 100% !important;
    margin: 0 auto !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    text-align: center !important;
    position: relative !important;
    height: 100% !important;
    overflow: visible !important;
  }

  .pp-variety-media {
    width: 100% !important;
    max-width: 100% !important;
    height: clamp(220px, 24vw, 260px) !important;
    min-height: 220px !important;
    max-height: 260px !important;
    margin: 0 auto !important;
    padding: 1rem !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    background: var(--ivory-deep) !important;
    border-bottom: 1px solid var(--gold-line-soft) !important;
    overflow: hidden !important;
    box-sizing: border-box !important;
    position: relative !important;
  }

  .pp-variety-media picture {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 100% !important;
    height: 100% !important;
    max-height: 100% !important;
    margin: 0 auto !important;
  }

  .pp-variety-media img,
  .pp-variety-thumb {
    max-width: 100% !important;
    max-height: 100% !important;
    width: auto !important;
    height: 100% !important;
    object-fit: contain !important;
    display: block !important;
    margin: 0 auto !important;
    transition: transform 0.4s var(--ease-soft) !important;
  }

  .pp-variety-body {
    width: 100% !important;
    max-width: 100% !important;
    padding: 1.2rem 1.2rem 1.6rem !important;
    display: flex !important;
    flex-direction: column !important;
    flex: 1 1 auto !important;
    justify-content: space-between !important;
    align-items: center !important;
    text-align: center !important;
    box-sizing: border-box !important;
    position: relative !important;
    z-index: 2 !important;
  }

  .pp-variety-body h3 {
    width: 100% !important;
    font-size: clamp(1.15rem, 2.2vw, 1.4rem) !important;
    margin: 0.4rem 0 0.5rem 0 !important;
    line-height: 1.3 !important;
    color: var(--ink) !important;
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    word-break: normal !important;
    overflow-wrap: break-word !important;
  }

  .pp-variety-body p {
    width: 100% !important;
    font-size: clamp(0.85rem, 1.8vw, 0.95rem) !important;
    margin: 0.3rem 0 0.8rem 0 !important;
    line-height: 1.6 !important;
    color: var(--ink-soft) !important;
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    word-break: normal !important;
    overflow-wrap: break-word !important;
  }

  .pp-variety-link {
    display: inline-flex !important;
    align-items: center !important;
    gap: 0.4rem !important;
    margin-top: auto !important;
    color: var(--gold-deep) !important;
    font-weight: 700 !important;
    font-size: 0.75rem !important;
    letter-spacing: 0.1em !important;
    text-transform: uppercase !important;
    visibility: visible !important;
    opacity: 1 !important;
  }

  /* "You Might Also Like" cards */
  .pp-related-grid {
    width: 100% !important;
  }

  .pp-related-grid a {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    text-align: center !important;
    width: 100% !important;
  }

  .pp-related-grid a>span:first-child {
    width: 140px !important;
    height: 140px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    margin: 0 auto !important;
  }

  .pp-related-grid img {
    width: 100% !important;
    height: 100% !important;
    max-width: 140px !important;
    max-height: 140px !important;
    margin: 0 auto !important;
    display: block !important;
    object-fit: contain !important;
    object-position: center !important;
  }

  /* General product cards */
  .quick-tile {
    width: 100% !important;
    margin: 0 auto !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
  }

  .quick-tile-media {
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 auto !important;
  }

  .quick-tile-media img {
    max-width: 100% !important;
    margin: 0 auto !important;
  }

  /* ===== FIX 4: FOOTER COPYRIGHT CLEANUP ===== */
  /* Wrap copyright text in container with fixed padding */
  .footer-bottom {
    position: relative !important;
    width: 100% !important;
    padding: 1.5rem !important;
    overflow: hidden !important;
    background: transparent !important;
  }

  .footer-bottom span {
    display: block !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
    max-width: 100% !important;
    word-wrap: break-word !important;
  }

  /* Ensure footer copyright text stays within bounds */
  .wrap .footer-bottom {
    max-width: 100% !important;
  }
}

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

  /* Remove text shadows on mobile to prevent rendering issues */
  .section-title,
  h1,
  h2,
  h3 {
    text-shadow: none !important;
  }

  /* FAQ: improve spacing on mobile */
  .faq-item {
    padding: 1rem !important;
  }

  .faq-item summary {
    padding: 1rem 0 !important;
    font-size: clamp(0.95rem, 3vw, 1.1rem) !important;
  }

  /* Footer on mobile: full-width copyright with proper padding */
  .footer-bottom {
    padding: 1.5rem !important;
    flex-direction: column !important;
    align-items: center !important;
    text-align: center !important;
  }

  .footer-bottom span {
    font-size: clamp(0.7rem, 2vw, 0.78rem) !important;
  }

  /* Product images on mobile: full-width with proper spacing */
  .pp-variety-media {
    padding: 1rem 0 !important;
  }

  .quick-tile-media {
    padding: 0.5rem 0 !important;
    background: transparent !important;
    background-color: transparent !important;
  }

  /* Ensure card images don't clip on edges */
  img {
    max-width: calc(100% - 0.5rem) !important;
    margin-left: 0.25rem !important;
    margin-right: 0.25rem !important;
  }
}

/* Final override: Remove all backgrounds from quick-tile-media globally */
.quick-tile-media {
  background: transparent !important;
  background-color: transparent !important;
}

/* Shop by Category: Ensure all category names & descriptions are 100% visible on all mobile devices */
.quick-tile {
  height: auto !important;
  max-height: none !important;
}

.quick-tile-name {
  display: block !important;
  height: auto !important;
  min-height: fit-content !important;
  max-height: none !important;
  flex-shrink: 0 !important;
  overflow: visible !important;
  white-space: normal !important;
  text-overflow: unset !important;
  line-height: 1.4 !important;
  opacity: 1 !important;
  visibility: visible !important;
}

.quick-tile-bio {
  display: block !important;
  height: auto !important;
  flex-shrink: 0 !important;
  overflow: visible !important;
  opacity: 1 !important;
  visibility: visible !important;
}

/* Mobile phone screens: stack variety cards 1 in a row */
@media (max-width: 600px) {
  .pp-varieties {
    grid-template-columns: 1fr !important;
    gap: clamp(1.2rem, 3vw, 1.6rem) !important;
  }

  .pp-varieties:has(.pp-variety:nth-child(2):last-child) {
    grid-template-columns: 1fr !important;
  }
}

/* Mobile product page: Remove excessive header & breadcrumb gap */
@media (max-width: 768px) {
  .pp-main {
    padding-top: 0 !important;
  }

  .pp-breadcrumb {
    padding-top: 0.35rem !important;
    padding-bottom: 0.2rem !important;
    margin-top: 0 !important;
    margin-bottom: 0 !important;
    align-items: center !important;
  }

  .pp-breadcrumb a,
  .pp-breadcrumb span,
  .pp-breadcrumb em {
    line-height: 1.3 !important;
    min-height: auto !important;
  }

  .pp-hero {
    padding-top: 0 !important;
    padding-bottom: 0.8rem !important;
    gap: 0.6rem !important;
  }

  .pp-photo {
    margin: 0 auto !important;
    padding: 0 !important;
  }
}

/* =========================================================================
   DESKTOP: "GO ON, MOVE YOUR CURSOR" SECTION SEPARATOR LINES
   ========================================================================= */
@media (min-width: 769px) {
  .showcase {
    border-top: 1.5px solid var(--gold-line) !important;
    border-bottom: 1.5px solid var(--gold-line) !important;
    background: linear-gradient(180deg, rgba(245, 238, 221, 0.45) 0%, rgba(251, 246, 236, 0.75) 50%, rgba(245, 238, 221, 0.45) 100%) !important;
    margin-top: 2.2rem !important;
    margin-bottom: 1.5rem !important;
    box-shadow: inset 0 2px 8px rgba(124, 90, 36, 0.04), inset 0 -2px 8px rgba(124, 90, 36, 0.04);
  }
}

@media (max-width: 768px) {
  .showcase {
    border-top: none !important;
    border-bottom: none !important;
  }
}

/* =========================================================================
   UNIVERSAL VARIETY CARD SIZING: PREVENT IMAGES OVERLAPPING TEXT
   Guarantees pouch images fit inside media box on iPad Pro (1024x1366),
   iPad Mini, Tablets, Desktop and Mobile devices.
   ========================================================================= */
.pp-variety {
  display: flex !important;
  flex-direction: column !important;
  height: 100% !important;
  position: relative !important;
  overflow: visible !important;
}

.pp-variety-media {
  width: 100% !important;
  max-width: 100% !important;
  height: 240px !important;
  min-height: 240px !important;
  max-height: 240px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  padding: 1rem !important;
  background: var(--ivory-deep) !important;
  border-bottom: 1px solid var(--gold-line-soft) !important;
  overflow: hidden !important;
  box-sizing: border-box !important;
  position: relative !important;
}

.pp-variety-media picture {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: 100% !important;
  height: 100% !important;
  max-height: 100% !important;
}

.pp-variety-media img,
.pp-variety-thumb,
.pp-variety-media picture img {
  max-width: 100% !important;
  max-height: 200px !important;
  width: auto !important;
  height: auto !important;
  object-fit: contain !important;
  display: block !important;
  margin: 0 auto !important;
}

.pp-variety-body {
  width: 100% !important;
  padding: 1.2rem 1rem 1.6rem !important;
  display: flex !important;
  flex-direction: column !important;
  flex: 1 1 auto !important;
  align-items: center !important;
  text-align: center !important;
  box-sizing: border-box !important;
  position: relative !important;
  z-index: 2 !important;
}

/* =========================================================================
   UNIVERSAL TABLET & MOBILE HEADER FIX (iPad Air 820px, iPad Pro 1024px, etc.)
   Prevents desktop nav links colliding with brand name.
   Cleanly switches to hamburger drawer on touch/tablet screens <= 1024px.
   ========================================================================= */
@media (max-width: 1024px) {
  .site-header .bar {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    padding: 0.65rem 1.1rem !important;
    gap: 0.75rem !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }

  .site-header .nav-links {
    display: none !important;
  }

  .site-header .nav-toggle {
    display: flex !important;
    flex-shrink: 0 !important;
    width: 44px !important;
    height: 44px !important;
    align-items: center !important;
    justify-content: center !important;
    background: none !important;
    border: none !important;
    cursor: pointer !important;
    z-index: 900 !important;
  }

  .site-header .brand {
    display: flex !important;
    align-items: center !important;
    flex: 0 1 auto !important;
    flex-shrink: 0 !important;
    min-width: 0 !important;
    gap: 0.75rem !important;
    text-decoration: none !important;
  }

  .site-header .brand .mark {
    width: 56px !important;
    height: 56px !important;
    flex-shrink: 0 !important;
    object-fit: contain !important;
  }

  .site-header .brand-name {
    padding-left: 0.65rem !important;
    border-left: 1px solid var(--gold-line) !important;
    flex-shrink: 0 !important;
    min-width: 0 !important;
    line-height: 1.2 !important;
  }

  .site-header .brand-name .top {
    font-family: var(--f-display) !important;
    font-weight: 500 !important;
    font-style: italic !important;
    font-size: clamp(1.15rem, 2.2vw, 1.45rem) !important;
    white-space: nowrap !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
    line-height: 1.15 !important;
    color: var(--ink) !important;
    display: block !important;
  }

  .site-header .brand-name .bottom {
    font-family: var(--f-body) !important;
    font-size: clamp(0.58rem, 1.1vw, 0.7rem) !important;
    letter-spacing: 0.15em !important;
    text-transform: uppercase !important;
    white-space: nowrap !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
    color: var(--gold-deep) !important;
    display: block !important;
    margin-top: 2px !important;
  }

  .site-header .header-cta {
    display: flex !important;
    align-items: center !important;
    gap: 0.75rem !important;
    flex-shrink: 0 !important;
    margin-left: auto !important;
  }

  .site-header .header-cta .btn-ghost {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    font-size: 0.78rem !important;
    font-weight: 600 !important;
    letter-spacing: 0.1em !important;
    text-transform: uppercase !important;
    padding: 0.5rem 1.15rem !important;
    min-height: 38px !important;
    border: 1px solid var(--gold-line) !important;
    border-radius: 999px !important;
    color: var(--ink) !important;
    white-space: nowrap !important;
    text-decoration: none !important;
  }
}

@media (max-width: 640px) {
  .site-header .header-cta .btn-ghost {
    display: none !important;
  }

  .site-header .brand .mark {
    width: 48px !important;
    height: 48px !important;
  }

  .site-header .brand-name .top {
    font-size: clamp(0.95rem, 4vw, 1.15rem) !important;
  }

  .site-header .brand-name .bottom {
    font-size: 0.55rem !important;
    letter-spacing: 0.1em !important;
  }
}

@media (min-width: 1025px) {
  .site-header .nav-links {
    display: flex !important;
    align-items: center !important;
    gap: clamp(1rem, 1.8vw, 2.1rem) !important;
  }

  .site-header .nav-toggle {
    display: none !important;
  }

  .site-header .brand {
    flex-shrink: 0 !important;
  }

  .site-header .brand-name .top {
    white-space: nowrap !important;
  }
}

/* =========================================================================
   UNIVERSAL TABLET & MOBILE FOOTER CARD FIX (iPad Air 820px, iPad Pro 1024px)
   Balances the 3-column footer card across iPad Pro and iPad Air.
   Prevents awkward 1-column stacking and giant empty whitespace on tablets.
   ========================================================================= */

/* Base & Desktop (> 1080px) */
.footer-redesigned,
.footer-main-grid.footer-redesigned {
  display: grid !important;
  grid-template-columns: 1.15fr 0.95fr 1.35fr !important;
  gap: 2.5rem !important;
  padding: 2.8rem 2.4rem !important;
  align-items: start !important;
  box-sizing: border-box !important;
  width: 100% !important;
  background: #faf9f9 !important;
  border: 3px solid #C9A046 !important;
  border-radius: 24px !important;
  margin: 2.5rem auto !important;
  box-shadow: 0 16px 48px rgba(124, 90, 36, 0.35), inset 0 1px 0 rgba(255, 255, 255, 0.1) !important;
  position: relative !important;
}

.footer-redesigned .footer-brand-column {
  display: flex !important;
  flex-direction: column !important;
  gap: 0.9rem !important;
  padding-right: 0 !important;
  align-items: flex-start !important;
  text-align: left !important;
}

.footer-redesigned .footer-logo-box {
  display: flex !important;
  flex-direction: column !important;
  align-items: flex-start !important;
  justify-content: flex-start !important;
  padding: 0 !important;
  margin: 0 !important;
  text-align: left !important;
}

.footer-redesigned .footer-logo-box img,
.footer-redesigned .footer-logo {
  display: block !important;
  width: 80px !important;
  max-width: 80px !important;
  height: auto !important;
  margin: 0 0 8px 0 !important;
  flex-shrink: 0 !important;
  object-fit: contain !important;
}

.footer-redesigned .footer-email-link {
  display: inline-flex !important;
  align-items: center !important;
  gap: 0.45rem !important;
  padding: 0.5rem 1rem !important;
  background: rgba(180, 134, 58, 0.08) !important;
  border: 1px solid var(--gold-line) !important;
  border-radius: 999px !important;
  color: var(--ink) !important;
  font-size: 0.88rem !important;
  font-weight: 500 !important;
  text-decoration: none !important;
  white-space: nowrap !important;
  transition: all 0.3s ease !important;
  align-self: flex-start !important;
}

.footer-redesigned .footer-email-link:hover {
  background: var(--gold) !important;
  color: var(--white) !important;
  border-color: var(--gold) !important;
}

.footer-redesigned .footer-links-column {
  display: flex !important;
  flex-direction: column !important;
  text-align: left !important;
}

.footer-redesigned .footer-links-column h3,
.footer-redesigned .footer-newsletter-column h3 {
  font-size: 0.95rem !important;
  letter-spacing: 0.12em !important;
  text-transform: uppercase !important;
  color: var(--ink) !important;
  font-weight: 700 !important;
  margin: 0 0 1.1rem 0 !important;
  font-family: var(--f-display) !important;
}

.footer-redesigned .footer-links-column ul {
  list-style: none !important;
  padding: 0 !important;
  margin: 0 !important;
  display: flex !important;
  flex-direction: column !important;
  gap: 0.7rem !important;
}

.footer-redesigned .footer-links-column a {
  color: var(--ink-soft) !important;
  text-decoration: none !important;
  font-size: 0.9rem !important;
  transition: color 0.3s ease !important;
}

.footer-redesigned .footer-links-column a:hover {
  color: var(--gold) !important;
}

.footer-redesigned .footer-newsletter-column {
  display: flex !important;
  flex-direction: column !important;
  text-align: left !important;
}

.footer-redesigned .footer-newsletter-column p {
  font-size: 0.85rem !important;
  color: var(--ink-soft) !important;
  line-height: 1.55 !important;
  margin: 0 0 1.1rem 0 !important;
}

.footer-redesigned .newsletter-form {
  display: flex !important;
  gap: 0.5rem !important;
  margin-bottom: 0 !important;
  width: 100% !important;
}

.footer-redesigned .newsletter-form input {
  flex: 1 !important;
  min-width: 0 !important;
  padding: 0.7rem 0.9rem !important;
  border: 1.5px solid var(--gold-line) !important;
  border-radius: 6px !important;
  font-size: 0.88rem !important;
  background: var(--white) !important;
  color: var(--ink) !important;
}

.footer-redesigned .newsletter-form button {
  padding: 0.7rem 1.3rem !important;
  background: var(--gold) !important;
  color: var(--white) !important;
  border: none !important;
  border-radius: 6px !important;
  font-size: 0.85rem !important;
  font-weight: 700 !important;
  cursor: pointer !important;
  white-space: nowrap !important;
  transition: background 0.3s ease !important;
}

.footer-redesigned .newsletter-form button:hover {
  background: var(--gold-deep) !important;
}

/* iPad Pro (1024x1366, 992px to 1080px) */
@media (min-width: 992px) and (max-width: 1080px) {

  .footer-redesigned,
  .footer-main-grid.footer-redesigned {
    grid-template-columns: 1.05fr 0.95fr 1.35fr !important;
    gap: 1.8rem !important;
    padding: 2.4rem 1.8rem !important;
  }

  .footer-redesigned .footer-email-link {
    font-size: 0.82rem !important;
    padding: 0.45rem 0.85rem !important;
  }
}

/* iPad Air (820x1180, 768px to 991px) */
@media (min-width: 768px) and (max-width: 991px) {

  .footer-redesigned,
  .footer-main-grid.footer-redesigned {
    grid-template-columns: 1fr 0.85fr 1.3fr !important;
    gap: 1.4rem !important;
    padding: 2rem 1.4rem !important;
  }

  .footer-redesigned .footer-logo-box img,
  .footer-redesigned .footer-logo {
    width: 68px !important;
    max-width: 68px !important;
  }

  .footer-redesigned .footer-email-link {
    font-size: 0.78rem !important;
    padding: 0.4rem 0.75rem !important;
  }

  .footer-redesigned .footer-links-column h3,
  .footer-redesigned .footer-newsletter-column h3 {
    font-size: 0.88rem !important;
    margin-bottom: 0.85rem !important;
  }

  .footer-redesigned .footer-links-column ul {
    gap: 0.55rem !important;
  }

  .footer-redesigned .footer-links-column a {
    font-size: 0.84rem !important;
  }

  .footer-redesigned .footer-newsletter-column p {
    font-size: 0.78rem !important;
    line-height: 1.45 !important;
    margin-bottom: 0.85rem !important;
  }

  .footer-redesigned .newsletter-form input {
    padding: 0.6rem 0.75rem !important;
    font-size: 0.82rem !important;
  }

  .footer-redesigned .newsletter-form button {
    padding: 0.6rem 1rem !important;
    font-size: 0.82rem !important;
  }
}

/* Mobile Screens (<= 767px) - Centered, Balanced, Symmetrical Luxury Layout */
@media (max-width: 767px) {

  .footer-redesigned,
  .footer-main-grid.footer-redesigned {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    gap: 1.6rem !important;
    padding: 2rem 1.25rem 2.2rem !important;
    margin: 1.5rem auto !important;
    text-align: center !important;
    border-radius: 18px !important;
    border: 2.5px solid #C9A046 !important;
    width: 100% !important;
    box-sizing: border-box !important;
    box-shadow: 0 12px 32px rgba(124, 90, 36, 0.25) !important;
  }

  /* 1. Brand & Logo Section */
  .footer-redesigned .footer-brand-column {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    text-align: center !important;
    width: 100% !important;
    padding: 0 0 1.4rem 0 !important;
    margin: 0 !important;
    border-bottom: 1px solid rgba(180, 134, 58, 0.18) !important;
    gap: 0.85rem !important;
  }

  .footer-redesigned .footer-logo-box {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    padding: 0 !important;
    margin: 0 !important;
    text-align: center !important;
  }

  .footer-redesigned .footer-logo-box img,
  .footer-redesigned .footer-logo {
    width: 68px !important;
    max-width: 68px !important;
    height: auto !important;
    margin: 0 auto 6px auto !important;
    display: block !important;
  }

  .footer-redesigned .footer-email-link {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 0.45rem !important;
    padding: 0.5rem 1.2rem !important;
    background: rgba(180, 134, 58, 0.08) !important;
    border: 1px solid var(--gold-line) !important;
    border-radius: 999px !important;
    font-size: 0.84rem !important;
    font-weight: 600 !important;
    color: var(--ink) !important;
    margin: 0 auto !important;
    align-self: center !important;
    text-decoration: none !important;
    white-space: nowrap !important;
    transition: all 0.25s ease !important;
  }

  .footer-redesigned .footer-email-link:hover {
    background: var(--gold) !important;
    color: var(--white) !important;
  }

  /* 2. Important Links Section - Balanced 2x2 Grid */
  .footer-redesigned .footer-links-column {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    text-align: center !important;
    width: 100% !important;
    padding: 0 0 1.4rem 0 !important;
    margin: 0 !important;
    border-bottom: 1px solid rgba(180, 134, 58, 0.18) !important;
  }

  .footer-redesigned .footer-links-column h3 {
    font-size: 0.95rem !important;
    letter-spacing: 0.12em !important;
    text-transform: uppercase !important;
    color: var(--ink) !important;
    font-weight: 700 !important;
    margin: 0 0 1rem 0 !important;
    text-align: center !important;
    width: 100% !important;
    font-family: var(--f-display) !important;
  }

  .footer-redesigned .footer-links-column ul {
    display: grid !important;
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 0.75rem 1.2rem !important;
    width: 100% !important;
    max-width: 320px !important;
    margin: 0 auto !important;
    padding: 0 !important;
    list-style: none !important;
    text-align: center !important;
  }

  .footer-redesigned .footer-links-column li {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    padding: 0 !important;
    margin: 0 !important;
  }

  .footer-redesigned .footer-links-column a {
    display: inline-block !important;
    font-size: 0.88rem !important;
    font-weight: 600 !important;
    color: var(--ink-soft) !important;
    padding: 0.55rem 0.6rem !important;
    border-radius: 8px !important;
    background: rgba(245, 238, 221, 0.45) !important;
    border: 1px solid rgba(180, 134, 58, 0.2) !important;
    width: 100% !important;
    box-sizing: border-box !important;
    text-align: center !important;
    white-space: nowrap !important;
    transition: all 0.25s ease !important;
    text-decoration: none !important;
  }

  .footer-redesigned .footer-links-column a:hover {
    color: var(--gold-deep) !important;
    background: rgba(180, 134, 58, 0.12) !important;
    border-color: var(--gold-line) !important;
  }

  /* 3. The Premium Crunch Club Section */
  .footer-redesigned .footer-newsletter-column {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    text-align: center !important;
    width: 100% !important;
    padding: 0 !important;
    margin: 0 !important;
  }

  .footer-redesigned .footer-newsletter-column h3 {
    font-size: 0.95rem !important;
    letter-spacing: 0.12em !important;
    text-transform: uppercase !important;
    color: var(--ink) !important;
    font-weight: 700 !important;
    margin: 0 0 0.55rem 0 !important;
    text-align: center !important;
    width: 100% !important;
    font-family: var(--f-display) !important;
  }

  .footer-redesigned .footer-newsletter-column p {
    font-size: 0.84rem !important;
    color: var(--ink-soft) !important;
    line-height: 1.5 !important;
    max-width: 360px !important;
    margin: 0 auto 1.2rem auto !important;
    text-align: center !important;
  }

  .footer-redesigned .newsletter-form {
    display: flex !important;
    flex-direction: column !important;
    gap: 0.75rem !important;
    width: 100% !important;
    max-width: 360px !important;
    margin: 0 auto !important;
    box-sizing: border-box !important;
  }

  .footer-redesigned .newsletter-form input {
    width: 100% !important;
    min-height: 44px !important;
    padding: 0.75rem 1rem !important;
    border: 1.5px solid var(--gold-line) !important;
    border-radius: 8px !important;
    font-size: 0.88rem !important;
    background: var(--white) !important;
    color: var(--ink) !important;
    text-align: center !important;
    box-sizing: border-box !important;
  }

  .footer-redesigned .newsletter-form button {
    width: 100% !important;
    min-height: 44px !important;
    padding: 0.8rem 1.4rem !important;
    background: var(--gold) !important;
    color: var(--white) !important;
    border: none !important;
    border-radius: 8px !important;
    font-size: 0.88rem !important;
    font-weight: 700 !important;
    letter-spacing: 0.08em !important;
    text-transform: uppercase !important;
    cursor: pointer !important;
    box-shadow: 0 4px 14px rgba(180, 134, 58, 0.28) !important;
    transition: all 0.3s ease !important;
  }

  .footer-redesigned .newsletter-form button:hover {
    background: var(--gold-deep) !important;
  }

  .site-footer {
    padding-bottom: 5.5rem !important;
  }

  .footer-bottom {
    padding-top: 1.5rem !important;
    padding-bottom: 2rem !important;
    margin-top: 1.5rem !important;
  }

  .footer-bottom span {
    display: inline-block !important;
    max-width: 90% !important;
    font-size: 0.82rem !important;
    line-height: 1.6 !important;
  }
}

/* =========================================================================
   MASTER FIX: UNIFORM SIZING FOR "YOU MIGHT ALSO LIKE" (.pp-related-grid)
   ========================================================================= */
.pp-related-grid {
  display: grid !important;
  grid-template-columns: repeat(3, 1fr) !important;
  gap: clamp(1.2rem, 3vw, 2.5rem) !important;
  max-width: 840px !important;
  margin: 0 auto !important;
  align-items: stretch !important;
  justify-content: center !important;
}

.pp-related-grid .quick-tile,
.pp-related-grid a {
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  justify-content: flex-end !important;
  text-align: center !important;
  text-decoration: none !important;
  background: transparent !important;
  background-color: transparent !important;
  border: none !important;
  box-shadow: none !important;
  padding: 0 !important;
  width: 100% !important;
  margin: 0 auto !important;
}

.pp-related-grid .quick-tile-media,
.pp-related-grid a>span:first-child {
  width: 100% !important;
  max-width: 220px !important;
  height: 220px !important;
  min-height: 220px !important;
  max-height: 220px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  margin: 0 auto 12px auto !important;
  background: transparent !important;
  background-color: transparent !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  overflow: visible !important;
  position: relative !important;
}

.pp-related-grid .quick-tile-media picture,
.pp-related-grid picture {
  width: 100% !important;
  height: 100% !important;
  max-height: 220px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  margin: 0 auto !important;
}

.pp-related-grid .quick-tile-media img,
.pp-related-grid img {
  width: auto !important;
  height: auto !important;
  max-width: 190px !important;
  max-height: 200px !important;
  object-fit: contain !important;
  object-position: center bottom !important;
  display: block !important;
  margin: 0 auto !important;
  filter: drop-shadow(0 6px 14px rgba(0, 0, 0, 0.09)) !important;
  transition: transform 0.3s ease !important;
}

/* For photos with square backgrounds (bowls/dishes like pine nuts, dates, saffron), add smooth rounded corners */
.pp-related-grid img[src*="pine-nuts"],
.pp-related-grid img[src*="walnuts"],
.pp-related-grid img[src*="figs"],
.pp-related-grid img[src*="dates"],
.pp-related-grid img[src*="saffron"],
.pp-related-grid img[src*="spices"],
.pp-related-grid img[src*="makhana"] {
  border-radius: 16px !important;
  box-shadow: 0 4px 14px rgba(43, 32, 21, 0.12) !important;
}

.pp-related-grid .quick-tile:hover img,
.pp-related-grid a:hover img {
  transform: translateY(-4px) scale(1.03) !important;
}

.pp-related-grid .quick-tile span:last-child,
.pp-related-grid a>span:last-child {
  font-family: 'Plus Jakarta Sans', 'Inter', sans-serif !important;
  font-size: 13px !important;
  font-weight: 700 !important;
  letter-spacing: 1.5px !important;
  text-transform: uppercase !important;
  color: #2D231F !important;
  margin-top: 6px !important;
  display: block !important;
  text-align: center !important;
  white-space: nowrap !important;
}

@media (max-width: 768px) {
  .pp-related-grid {
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 0.8rem !important;
  }

  .pp-related-grid .quick-tile-media,
  .pp-related-grid a>span:first-child {
    max-width: 140px !important;
    height: 150px !important;
    min-height: 150px !important;
    max-height: 150px !important;
  }

  .pp-related-grid .quick-tile-media img,
  .pp-related-grid img {
    max-width: 125px !important;
    max-height: 135px !important;
  }

  .pp-related-grid .quick-tile span:last-child,
  .pp-related-grid a>span:last-child {
    font-size: 11px !important;
    letter-spacing: 1px !important;
  }
}

@media (max-width: 440px) {

  .pp-related-grid .quick-tile-media,
  .pp-related-grid a>span:first-child {
    max-width: 105px !important;
    height: 120px !important;
    min-height: 120px !important;
    max-height: 120px !important;
  }

  .pp-related-grid .quick-tile-media img,
  .pp-related-grid img {
    max-width: 95px !important;
    max-height: 105px !important;
  }

  .pp-related-grid .quick-tile span:last-child,
  .pp-related-grid a>span:last-child {
    font-size: 10px !important;
    letter-spacing: 0.5px !important;
  }
}

/* =========================================================================
   MASTER FIX: QUALITY JOURNEY (ASSURANCE) SECTION ALIGNMENT & SPACING
   Fixes huge vertical gaps on iPad Air (820x1180), iPad Mini (768x1024), etc.
   ========================================================================= */
.quality-journey .t-item,
.timeline--horizontal .t-item {
  min-height: auto !important;
  height: auto !important;
}

/* Desktop: 4 columns in a row */
@media (min-width: 1025px) {
  .quality-journey .timeline--horizontal {
    display: grid !important;
    grid-template-columns: repeat(4, 1fr) !important;
    gap: 1.5rem !important;
    align-items: stretch !important;
  }

  .quality-journey .timeline--horizontal .t-item {
    padding: 2.2rem 1.4rem 1.8rem !important;
    min-height: auto !important;
    height: 100% !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    text-align: center !important;
  }
}

/* Tablet (iPad Mini 768px, iPad Air 820px, iPad Pro 1024px): Neat 2x2 grid */
@media (min-width: 601px) and (max-width: 1024px) {
  .quality-journey .timeline--horizontal {
    display: grid !important;
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 1.5rem !important;
    align-items: stretch !important;
    max-width: 740px !important;
    margin: 0 auto !important;
  }

  .quality-journey .timeline--horizontal .t-item {
    min-height: auto !important;
    height: 100% !important;
    padding: 1.8rem 1.5rem !important;
    margin: 0 !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    text-align: center !important;
    border-radius: 16px !important;
    background: linear-gradient(170deg, var(--white) 0%, var(--ivory) 100%) !important;
    box-shadow: 0 4px 16px rgba(43, 32, 21, 0.08) !important;
    border: 1px solid var(--gold-line-soft) !important;
  }

  .quality-journey .timeline--horizontal .t-node {
    margin: 0 auto 12px auto !important;
    width: 52px !important;
    height: 52px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
  }

  .quality-journey .timeline--horizontal .t-body {
    width: 100% !important;
    text-align: center !important;
  }

  .quality-journey .timeline--horizontal .t-body .t-year {
    font-size: 0.8rem !important;
    margin-bottom: 0.3rem !important;
    text-align: center !important;
    color: var(--gold-deep) !important;
    font-weight: 700 !important;
    text-transform: uppercase !important;
    letter-spacing: 0.08em !important;
  }

  .quality-journey .timeline--horizontal .t-body h3 {
    font-size: 1.25rem !important;
    margin-bottom: 0.6rem !important;
    text-align: center !important;
    color: var(--ink) !important;
  }

  .quality-journey .timeline--horizontal .t-body p {
    font-size: 0.92rem !important;
    line-height: 1.6 !important;
    margin: 0 !important;
    text-align: center !important;
    color: var(--ink-soft) !important;
  }
}

/* Mobile (<= 600px): Clean vertical stack without huge gaps */
@media (max-width: 600px) {
  .quality-journey .timeline--horizontal {
    display: flex !important;
    flex-direction: column !important;
    gap: 1rem !important;
    max-width: 480px !important;
    margin: 0 auto !important;
  }

  .quality-journey .timeline--horizontal .t-item {
    min-height: auto !important;
    height: auto !important;
    padding: 1.4rem 1.2rem !important;
    margin-bottom: 0 !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    text-align: center !important;
    border-radius: 14px !important;
    background: linear-gradient(170deg, var(--white) 0%, var(--ivory) 100%) !important;
    box-shadow: 0 3px 12px rgba(43, 32, 21, 0.06) !important;
    border: 1px solid var(--gold-line-soft) !important;
  }

  .quality-journey .timeline--horizontal .t-node {
    margin: 0 auto 10px auto !important;
    width: 46px !important;
    height: 46px !important;
  }

  .quality-journey .timeline--horizontal .t-body .t-year {
    font-size: 0.75rem !important;
    margin-bottom: 0.2rem !important;
    text-align: center !important;
  }

  .quality-journey .timeline--horizontal .t-body h3 {
    font-size: 1.15rem !important;
    margin-bottom: 0.4rem !important;
    text-align: center !important;
  }

  /* =========================================================================
   MASTER FIX: MOBILE & TABLET DRAWER "PRODUCTS" BUTTON SIZING & ALIGNMENT
   Overrides generic button rules (e.g. line 12027) so "Products" matches
   Home, Heritage, Quality, Contact EXACTLY across all mobile and tablet screens.
   ========================================================================= */
  .mobile-drawer .mdrawer-trigger,
  button.mdrawer-trigger,
  .mdrawer-trigger {
    all: unset !important;
    box-sizing: border-box !important;
    font-family: var(--f-display) !important;
    font-size: 1.7rem !important;
    font-weight: 600 !important;
    line-height: 1.25 !important;
    color: var(--ink) !important;
    background: none !important;
    background-color: transparent !important;
    border: none !important;
    padding: 0 !important;
    margin: 0 !important;
    min-height: 0 !important;
    box-shadow: none !important;
    cursor: pointer !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    text-align: center !important;
    text-decoration: none !important;
    outline: none !important;
    -webkit-appearance: none !important;
    appearance: none !important;
    transition: color 0.3s ease !important;
  }

  .mobile-drawer .mdrawer-trigger:hover,
  .mobile-drawer .mdrawer-trigger:focus,
  .mobile-drawer a:hover {
    color: var(--gold-deep) !important;
  }
}

/* Tablet & Mobile responsive scaling: Keep Home, Heritage, Products, Quality, Contact identical */
@media (max-width: 1024px) {

  .mobile-drawer>a,
  .mobile-drawer .mdrawer-trigger,
  button.mdrawer-trigger {
    font-family: var(--f-display) !important;
    font-size: clamp(1.6rem, 3.5vw, 2.1rem) !important;
    font-weight: 600 !important;
    line-height: 1.25 !important;
    color: var(--ink) !important;
    text-align: center !important;
    min-height: 0 !important;
    padding: 0 !important;
    margin: 0 !important;
  }
}

@media (max-width: 600px) {

  .mobile-drawer>a,
  .mobile-drawer .mdrawer-trigger,
  button.mdrawer-trigger {
    font-size: 1.6rem !important;
  }
}

/* =========================================================================
   MASTER FIX: FOOTER BOTTOM COPYRIGHT CENTER ALIGNMENT
   Ensures © 2026 Sha Bhabootmal Sons. All rights reserved. is perfectly
   centered on all mobile and tablet viewports.
   ========================================================================= */
.footer-bottom,
footer .footer-bottom,
.site-footer .footer-bottom {
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  justify-content: center !important;
  text-align: center !important;
  width: 100% !important;
  max-width: 100% !important;
  margin: 2rem auto 0 auto !important;
  padding: 1.8rem 1rem !important;
  box-sizing: border-box !important;
}

.footer-bottom span,
footer .footer-bottom span,
.site-footer .footer-bottom span {
  display: block !important;
  text-align: center !important;
  width: 100% !important;
  max-width: 640px !important;
  margin: 0 auto !important;
  font-size: clamp(0.8rem, 2vw, 0.9rem) !important;
  line-height: 1.6 !important;
  color: var(--ink-soft) !important;
  letter-spacing: 0.02em !important;
}
/* Hide hero carousel navigation dots completely across Desktop, Tablet & Mobile */
.hero-carousel-dots,
#heroDots,
.hero-dot,
#hero-carousel .carousel-dots,
.hero-carousel-wrapper .carousel-dots,
#hero-carousel .dot,
.hero-carousel-wrapper .dot,
.hero-carousel-wrapper .carousel-nav {
  display: none !important;
  visibility: hidden !important;
  opacity: 0 !important;
  pointer-events: none !important;
  height: 0 !important;
  width: 0 !important;
  overflow: hidden !important;
}

/* Tablet (iPad Mini / iPad Air / iPad Pro) */
@media screen and (max-width: 1024px) {
  .hero-carousel-dots,
  #heroDots,
  .hero-dot,
  #hero-carousel .carousel-dots,
  .hero-carousel-wrapper .carousel-dots,
  #hero-carousel .dot,
  .hero-carousel-wrapper .dot {
    display: none !important;
    visibility: hidden !important;
    opacity: 0 !important;
    pointer-events: none !important;
    height: 0 !important;
    width: 0 !important;
    overflow: hidden !important;
  }
}

/* Mobile (all phones) */
@media screen and (max-width: 768px) {
  .hero-carousel-dots,
  #heroDots,
  .hero-dot,
  #hero-carousel .carousel-dots,
  .hero-carousel-wrapper .carousel-dots,
  #hero-carousel .dot,
  .hero-carousel-wrapper .dot {
    display: none !important;
    visibility: hidden !important;
    opacity: 0 !important;
    pointer-events: none !important;
    height: 0 !important;
    width: 0 !important;
    overflow: hidden !important;
  }
}

/* ==========================================================================
   PRODUCT CARDS IMAGE FULL PRESENTATION (Desktop, Tablet, Mobile)
   Ensures pouch packaging and product pictures are 100% full, never cut off
   ========================================================================== */
.p-media {
  position: relative !important;
  aspect-ratio: 1 / 1.05 !important;
  background: radial-gradient(circle at 50% 45%, #ffffff 0%, #f7f2e7 65%, #ece3cf 100%) !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  overflow: hidden !important;
  padding: 12px !important;
  box-sizing: border-box !important;
}

.p-media picture {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: 100% !important;
  height: 100% !important;
  max-width: 100% !important;
  max-height: 100% !important;
}

.p-media img,
.p-media picture img,
.p-media img.p-cutout,
.p-media picture img.p-cutout {
  position: relative !important;
  inset: auto !important;
  display: block !important;
  width: auto !important;
  height: auto !important;
  max-width: 88% !important;
  max-height: 88% !important;
  object-fit: contain !important;
  object-position: center center !important;
  margin: auto !important;
}

/* Tablet (iPad Mini, iPad Air, iPad Pro - 768px to 1024px) */
@media screen and (max-width: 1024px) {
  .p-media {
    aspect-ratio: 1 / 1.1 !important;
    padding: clamp(10px, 2.5vw, 16px) !important;
  }

  .p-media img,
  .p-media picture img,
  .p-media img.p-cutout,
  .p-media picture img.p-cutout {
    max-width: 88% !important;
    max-height: 88% !important;
    object-fit: contain !important;
  }
}

/* Mobile (all smartphones - 320px to 768px) */
@media screen and (max-width: 768px) {
  .p-media {
    aspect-ratio: 1 / 1.15 !important;
    padding: 10px !important;
  }

  .p-media img,
  .p-media picture img,
  .p-media img.p-cutout,
  .p-media picture img.p-cutout {
    max-width: 86% !important;
    max-height: 86% !important;
    object-fit: contain !important;
  }
}

/* =========================================================================
   MOBILE DRAWER COLLECTION LINKS (legacy.html & index.html)
   ========================================================================= */
.mobile-drawer .mdrawer-shop-link {
  color: var(--gold-deep) !important;
  font-weight: 700 !important;
}

/* Ensure View Full Collection options are permanently hidden on mobile & tablet */
@media (max-width: 1024px) {
  .mdrawer-viewall-card,
  .mdrawer-cta-btn,
  .nav-dropdown-viewall {
    display: none !important;
    visibility: hidden !important;
    height: 0 !important;
    margin: 0 !important;
    padding: 0 !important;
    pointer-events: none !important;
  }
}


