/* ==========================================================================
   MUY RICO — TROPICAL EDITORIAL WHIMSY DESIGN SYSTEM
   Based on Coquí & Crème with GSAP motion
   ========================================================================== */

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

:root {
  --color-bg-sand: #faf5ef;
  --color-pastry-pink: #fbcbc9;
  --color-accent-coral: #f7a8a4;
  --color-palm-green: #1e4636;
  --color-mid-green: #40916c;
  --color-light-green: #74c69d;
  --color-bright-hibiscus: #d93d59;
  --color-red-hibiscus: #e63946;
  --color-text-cocoa: #2c2523;
  --color-text-muted: #706561;
  --color-white: #ffffff;
  --color-card-bg: rgba(255,255,255,0.78);
  --color-sidebar-bg: #fff8f4;
  --font-serif: 'Cormorant Garamond', 'Playfair Display', serif;
  --font-sans: 'Quicksand', 'Nunito', sans-serif;
  --shadow-3d-soft: 0 10px 30px rgba(247,168,164,0.18);
  --shadow-3d-deep: 0 20px 50px rgba(44,37,35,0.09), 0 5px 18px rgba(247,168,164,0.14);
  --shadow-card: 0 4px 24px rgba(44,37,35,0.07), 0 1px 4px rgba(247,168,164,0.1);
  --shadow-card-hover: 0 16px 48px rgba(44,37,35,0.11), 0 4px 16px rgba(247,168,164,0.18);
  --transition-elastic: all 0.42s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  --transition-smooth: all 0.3s ease;
  --sidebar-width: 280px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-sans);
  background-color: var(--color-bg-sand);
  color: var(--color-text-cocoa);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; font-family: var(--font-sans); border: none; background: none; }

:focus-visible {
  outline: 2.5px solid var(--color-bright-hibiscus);
  outline-offset: 3px;
  border-radius: 4px;
}

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

/* ==========================================================================
   BOTANICAL LAYER (fixed background)
   ========================================================================== */

/* Botanical layer removed: leaving only the current background image(s) already set in each page */
.botanical-layer { display: none; }


/* ==========================================================================
   MONSTERA — Subtle Leaf Movement (dependency-free CSS, layered PNGs)
   Based on assets/site/README.md
   ========================================================================== */

:root {
  /* Movement strength: 0.6 barely there, 1.6 stronger breeze */
  --sway: 1;
}

.botanical-layer .monstera-scene {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

/* base (cream backdrop with soft cast shadows baked in) */
.monstera-base {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  /* Prevent the fixed background from visually bleeding through sections */
  mix-blend-mode: normal;
}

/* Ensure stacking stays correct */
#story { position: relative; z-index: 2; }
.featured-section { position: relative; z-index: 1; }
.site-shell { z-index: 1; }
.main-content { z-index: 2; }




/* leaf cut-outs */
.monstera-leaf {
  position: absolute;
  z-index: 1;
  pointer-events: none;
  /* feathered cut-out edges look soft; keep blending subtle */
  transform-origin: center;
  will-change: transform;
}

/* position these to match their original spots (tuned for your 16:9 scene) */
.monstera-leaf--left {
  bottom: 10%;
  left: 4%;
  width: 42%;
  transform-origin: 68% 100%;
  animation: leafSwayLeft 4.8s ease-in-out infinite;
}

.monstera-leaf--topright {
  top: 8%;
  right: 3%;
  width: 38%;
  transform-origin: 25% 90%;
  animation: leafSwayTopRight 5.6s ease-in-out infinite;
}

@keyframes leafSwayLeft {
  0%   { transform: rotate(calc(-2deg * var(--sway))) translate(0px, 0px); }
  35%  { transform: rotate(calc(3deg * var(--sway))) translate(3px, -2px); }
  70%  { transform: rotate(calc(-1.5deg * var(--sway))) translate(-2px, 2px); }
  100% { transform: rotate(calc(-2deg * var(--sway))) translate(0px, 0px); }
}

@keyframes leafSwayTopRight {
  0%   { transform: rotate(calc(1.5deg * var(--sway))) translate(0px, 0px); }
  40%  { transform: rotate(calc(-3deg * var(--sway))) translate(-3px, 2px); }
  75%  { transform: rotate(calc(2deg * var(--sway))) translate(2px, -2px); }
  100% { transform: rotate(calc(1.5deg * var(--sway))) translate(0px, 0px); }
}

@media (prefers-reduced-motion: reduce) {
  .monstera-leaf--left,
  .monstera-leaf--topright {
    animation: none !important;
    transform: none !important;
  }
}


.bota-cluster { position: absolute; }

.bota-tl { top: -30px; left: var(--sidebar-width); width: 280px; }
.bota-tr { top: -30px; right: 0; width: 310px; }
.bota-lm { top: 38%; left: var(--sidebar-width); width: 200px; }
.bota-rm { top: 55%; right: 0; width: 220px; }
.bota-bot { bottom: -20px; left: calc(var(--sidebar-width) + 15%); width: 250px; }

.bota-cluster svg { display: block; }

.bota-tl .leaf-wave-1 { position: absolute; top: 0; left: 0; width: 200px; transform-origin: bottom center; }
.bota-tl .leaf-wave-2 { position: absolute; top: 30px; left: 120px; width: 150px; transform-origin: bottom center; }
.bota-tl .hib-tl { position: absolute; top: 100px; left: 140px; width: 70px; }
.bota-tl .hib-tl2 { position: absolute; top: 10px; left: 50px; width: 55px; }

.bota-tr .leaf-wave-3 { position: absolute; top: 0; right: 0; width: 220px; transform-origin: bottom center; }
.bota-tr .leaf-wave-4 { position: absolute; top: 40px; right: 160px; width: 140px; transform-origin: bottom center; }
.bota-tr .hib-tr { position: absolute; top: 120px; right: 150px; width: 68px; }
.bota-tr .hib-tr2 { position: absolute; top: 20px; right: 30px; width: 50px; }

.bota-lm .leaf-wave-5 { position: absolute; top: 0; left: 0; width: 180px; transform-origin: right center; }
.bota-lm .hib-lm { position: absolute; top: 80px; left: 100px; width: 58px; }

.bota-rm .leaf-wave-2 { position: absolute; top: 0; right: 0; width: 170px; transform-origin: left center; }
.bota-rm .hib-rm { position: absolute; top: 90px; right: 100px; width: 62px; }

.bota-bot .leaf-wave-3 { position: absolute; bottom: 0; left: 30px; width: 200px; transform-origin: bottom center; }
.bota-bot .hib-bot1 { position: absolute; bottom: 80px; left: 170px; width: 65px; }
.bota-bot .hib-bot2 { position: absolute; bottom: 140px; left: 60px; width: 48px; }

.leaf-wave-1, .leaf-wave-2, .leaf-wave-3, .leaf-wave-4, .leaf-wave-5,
.hibiscus, .scatter-hib, .rs-hib, .card-leaf-corner {
  filter: drop-shadow(6px 12px 14px rgba(44, 37, 35, 0.16))
          drop-shadow(1px 2px 4px rgba(44, 37, 35, 0.12));
  transition: filter 0.3s ease, transform 0.3s ease;
}

.leaf-wave-1:hover, .leaf-wave-2:hover, .leaf-wave-3:hover,
.leaf-wave-4:hover, .leaf-wave-5:hover, .hibiscus:hover {
  filter: drop-shadow(10px 20px 24px rgba(44, 37, 35, 0.22))
          drop-shadow(2px 4px 6px rgba(44, 37, 35, 0.14))
          brightness(1.03);
}

/* ==========================================================================
   LAYOUT SHELL
   ========================================================================== */

.site-shell {
  display: grid;
  grid-template-columns: var(--sidebar-width) minmax(0, 1fr);
  min-height: 100vh;
  align-items: start;
  position: relative;
  z-index: 1;
}

/* ==========================================================================
   SIDEBAR
   ========================================================================== */

.sidebar {
  position: sticky;
  top: 0;
  height: 100vh;
  width: var(--sidebar-width);
  background: var(--color-sidebar-bg);
  display: flex;
  flex-direction: column;
  padding: 2rem 1.6rem;
  gap: 1.8rem;
  border-right: 1px solid rgba(247,168,164,0.22);
  overflow-y: auto;
  overflow-x: hidden;
  z-index: 20;
}

.sidebar-monstera {
  position: absolute;
  top: -10px;
  right: -10px;
  width: 120px;
  pointer-events: none;
  opacity: 0.9;
}

.sidebar-brand { display: flex; flex-direction: column; gap: 0.25rem; position: relative; z-index: 1; }

.brand-link { display: flex; flex-direction: column; line-height: 1; align-items: flex-start; }
.brand-logo {
  width: 170px;
  height: auto;
  display: block;
  margin-bottom: 0.15rem;
}
.brand-line2 {
  font-family: var(--font-serif);
  font-size: 2.1rem;
  font-style: italic;
  font-weight: 400;
  color: var(--color-bright-hibiscus);
  letter-spacing: 0.01em;
}
.brand-line1 {
  display: none;
}
.brand-tagline {
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  margin-top: 0.4rem;
}

.sidebar-nav { display: flex; flex-direction: column; gap: 0.6rem; }
.nav-group-label {
  font-size: 0.62rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-accent-coral);
  font-weight: 600;
  padding-bottom: 0.3rem;
  border-bottom: 1px solid rgba(247,168,164,0.28);
}

.filter-list { display: flex; flex-direction: column; gap: 0.2rem; }
.filter-link {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  padding: 0.4rem 0.6rem;
  border-radius: 50px;
  transition: var(--transition-smooth);
  font-weight: 500;
}
.filter-link:hover, .filter-link.active {
  background: rgba(251,203,201,0.4);
  color: var(--color-text-cocoa);
}
.filter-count {
  font-size: 0.65rem;
  background: var(--color-pastry-pink);
  color: var(--color-text-cocoa);
  border-radius: 50px;
  padding: 0.1rem 0.45rem;
  font-weight: 600;
}

.section-list { display: flex; flex-direction: column; gap: 0.1rem; }
.section-link {
  font-size: 0.88rem;
  color: var(--color-text-muted);
  padding: 0.35rem 0.6rem;
  border-radius: 50px;
  transition: var(--transition-smooth);
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.section-link:hover, .section-link.active {
  color: var(--color-palm-green);
  background: rgba(30,70,54,0.07);
  transform: translateX(4px);
}

.lang-switch-wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.lang-switch {
  display: inline-flex;
  background: var(--color-white);
  border-radius: 50px;
  box-shadow: var(--shadow-3d-soft);
  border: 1px solid rgba(44,37,35,0.06);
  overflow: hidden;
}
.lang-switch button {
  border: none;
  background: transparent;
  padding: 6px 14px;
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 0.75rem;
  cursor: pointer;
  color: var(--color-text-muted);
  transition: var(--transition-smooth);
}
.lang-switch button.active { background: var(--color-palm-green); color: var(--color-white); }
.lang-switch button:not(.active):hover { color: var(--color-bright-hibiscus); }

.cookie-card {
  margin-top: auto;
  background: var(--color-card-bg);
  border-radius: 40px 12px 40px 12px;
  padding: 1.1rem 1rem;
  box-shadow: var(--shadow-3d-soft);
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  border: 1px solid rgba(247,168,164,0.2);
  backdrop-filter: blur(14px);
}
.cookie-hibiscus { line-height: 1; }
.cookie-text { font-size: 0.78rem; color: var(--color-text-muted); line-height: 1.5; }
.cookie-actions { display: flex; gap: 0.5rem; }

/* ==========================================================================
   BUTTONS
   ========================================================================== */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50px;
  font-family: var(--font-sans);
  font-weight: 600;
  letter-spacing: 0.04em;
  transition: var(--transition-elastic);
  cursor: pointer;
  font-size: 0.85rem;
  padding: 0.55rem 1.3rem;
  white-space: nowrap;
  position: relative;
  overflow: hidden;
  border: none;
}
.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: rgba(255,255,255,0.15);
  opacity: 0;
  transition: opacity 0.2s;
}
.btn:hover::after { opacity: 1; }
.btn:hover { transform: translateY(-3px); }
.btn:active { transform: translateY(0); }

.btn-coral {
  background: linear-gradient(135deg, #f7a8a4, #e63946);
  color: var(--color-white);
  box-shadow: 0 4px 18px rgba(230,57,70,0.38);
}
.btn-coral:hover { box-shadow: 0 8px 28px rgba(230,57,70,0.45); }

.btn-palm {
  background: linear-gradient(135deg, #40916c, #1e4636);
  color: var(--color-white);
  box-shadow: 0 4px 18px rgba(30,70,54,0.32);
}
.btn-palm:hover { box-shadow: 0 8px 28px rgba(30,70,54,0.42); }

.btn-ghost {
  background: transparent;
  color: var(--color-text-cocoa);
  border: 1.5px solid rgba(44,37,35,0.22);
}
.btn-ghost:hover {
  border-color: var(--color-accent-coral);
  color: var(--color-bright-hibiscus);
  background: rgba(251,203,201,0.14);
}
.btn-ghost-sm {
  background: transparent;
  color: var(--color-text-muted);
  font-size: 0.8rem;
  padding: 0.4rem 1rem;
  border: 1px solid rgba(112,101,97,0.22);
  border-radius: 50px;
  transition: var(--transition-smooth);
  font-family: var(--font-sans);
  cursor: pointer;
}
.btn-ghost-sm:hover {
  color: var(--color-text-cocoa);
  border-color: var(--color-accent-coral);
  transform: translateY(-2px);
}
.btn-lg { padding: 0.75rem 1.8rem; font-size: 0.9rem; }
.btn-xl { padding: 0.9rem 2.2rem; font-size: 0.95rem; }

/* ==========================================================================
   MAIN CONTENT
   ========================================================================== */

.main-content { position: relative; min-height: 100vh; z-index: 2; }

/* ==========================================================================
   HERO SECTION
   ========================================================================== */

.hero-section {
  position: relative;
  padding: 5rem 4rem 4rem;
  min-height: 90vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  z-index: 1;

  /* set IMG_0264.webp as the main background for the hero area */
  background-image: url('IMG_0264.webp');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;

  /* keep a subtle editorial gradient overlay for readability */
  background-blend-mode: overlay;
  background-color: rgba(250,245,239,0.55);
}

.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2rem;
}
.eyebrow-line {
  flex: 1;
  height: 1px;
  background: linear-gradient(to right, var(--color-accent-coral), transparent);
  max-width: 60px;
}
.eyebrow-text {
  font-size: 0.7rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--color-accent-coral);
  font-weight: 600;
}

.hero-headline {
  font-family: var(--font-serif);
  font-size: clamp(3.8rem, 8vw, 7rem);
  font-weight: 500;
  line-height: 0.92;
  letter-spacing: -0.01em;
  color: var(--color-text-cocoa);
  margin-bottom: 1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.hero-headline-top { display: block; color: var(--color-palm-green); }
.hero-headline-mid {
  display: inline-block;
  margin: -0.25rem 0 0;
  color: var(--color-bright-hibiscus);
  font-size: 1em;
  transform: translateY(-0.2rem);
  align-self: center;
}
.hero-muy-rico-line {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  margin-top: 0.2rem;
}
.hero-headline-bottom { display: block; color: var(--color-bright-hibiscus); }
.italic { font-style: italic; }

.hero-divider { width: 180px; margin-bottom: 1.2rem; opacity: 0.8; }

.hero-subheadline {
  font-family: var(--font-serif);
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 400;
  color: var(--color-text-muted);
  margin-bottom: 1.2rem;
  letter-spacing: 0.02em;
}

.hero-description {
  font-size: 1rem;
  color: var(--color-text-muted);
  max-width: 520px;
  line-height: 1.7;
  margin-bottom: 2.2rem;
}

.hero-ctas { display: flex; gap: 1rem; flex-wrap: wrap; }

.hero-scroll-hint {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 3rem;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  opacity: 0.65;
}
.hero-scroll-hint svg { width: 16px; height: 16px; }

/* ==========================================================================
   WAVE DIVIDERS
   ========================================================================== */

.wave-divider { width: 100%; line-height: 0; overflow: hidden; }
.wave-divider svg { width: 100%; display: block; }

/* ==========================================================================
   FEATURED / STORY SECTIONS
   ========================================================================== */

.featured-section {
  padding: 4rem 4rem 5rem;
  position: relative;
  z-index: 1;
  background: linear-gradient(180deg, rgba(212,237,218,0.18) 0%, rgba(250,245,239,0) 100%);
}

/* Our Story layout tweaks */
#story {
  display: flex;
  flex-direction: column;
  align-items: center;
}



#story > .section-label-row,
#story > .featured-grid {
  width: 100%;
  max-width: 980px;
  margin-left: auto;
  margin-right: auto;
}




.section-label-row {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  margin-bottom: 3rem;
  position: relative;
  z-index: 1;
}
.section-label {
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-accent-coral);
  font-weight: 600;
  white-space: nowrap;
}
.section-rule {
  flex: 1;
  height: 1px;
  background: linear-gradient(to right, rgba(247,168,164,0.45), transparent);
}

/* Scope: make the Our Story header text not coral/pink */
#story .section-label {
  color: var(--color-text-cocoa);
}
#story .section-rule {
  background: linear-gradient(to right, rgba(44,37,35,0.25), transparent);
}

/* Move the Michigan Cottage Food Law title/label down to match the Our Story heading alignment */
#cottage-laws .section-label-row {
  margin-top: 3.2rem;
}


.featured-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 1;
}

/* Product Visual */
.product-visual-wrapper { position: relative; display: flex; justify-content: center; }

/* Story photo (Jeff & Rebecca) */
.story-photo {
  justify-content: center;
}
.story-photo-img {
  width: 420px;
  max-width: 100%;
  height: auto;
  border-radius: 26px;
  box-shadow: none;
  filter: none;
}


.product-display {
  position: relative;
  text-align: center;
  transition: var(--transition-elastic);
}
.product-display:hover { transform: translateY(-10px); }


.product-visual { position: relative; display: inline-block; }
.product-image-container {
  position: relative;
  z-index: 2;
  width: 340px;
  height: 340px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.product-image {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 8px 24px rgba(241, 239, 239, 0.28));
  transition: var(--transition-elastic);
}
.product-display:hover .product-image {
  filter: drop-shadow(0 18px 42px rgba(247,168,164,0.45));
}
.product-pedestal {
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  width: 200px;
  height: 30px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.92), var(--color-pastry-pink));
  border-radius: 50%;
  z-index: 1;
  opacity: 0.75;
}
.product-shadow {
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 180px;
  height: 22px;
  background: radial-gradient(ellipse, rgba(247,168,164,0.38) 0%, transparent 70%);
  border-radius: 50%;
  z-index: 0;
}

/* Floating tags */
.floating-tags { position: absolute; top: 0; left: 0; right: 0; bottom: 0; pointer-events: none; }
.floating-tag {
  position: absolute;
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 600;
  padding: 0.3rem 0.75rem;
  border-radius: 50px;
  background: rgba(255,255,255,0.88);
  color: var(--color-text-muted);
  box-shadow: var(--shadow-3d-soft);
  backdrop-filter: blur(8px);
}
.tag-1 { top: 10%; left: -20px; }
.tag-2 { top: 55%; right: -10px; }
.tag-3 { bottom: 15%; left: -5px; }

/* Product Copy */
.product-copy { display: flex; flex-direction: column; gap: 1rem; }
.product-category-pill {
  display: inline-flex;
  align-items: center;
  /* remove the pink/coral header pill styling */
  background: rgba(250,245,239,0.0);
  color: var(--color-text-cocoa);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.3rem 0.9rem;
  border-radius: 50px;
  width: fit-content;
}
.product-name {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 500;
  line-height: 1.05;
  color: var(--color-text-cocoa);
  letter-spacing: 0.01em;
}
.product-description {
  font-size: 0.95rem;
  color: var(--color-text-muted);
  line-height: 1.7;
  max-width: 380px;
}
.product-price-row {
  display: flex;
  align-items: baseline;
  gap: 1rem;
  margin-top: 0.3rem;
}
.product-price {
  font-family: var(--font-serif);
  font-size: 2.4rem;
  font-weight: 600;
  color: var(--color-palm-green);
}
.product-availability {
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-mid-green);
  font-weight: 600;
}
.product-actions { display: flex; gap: 0.8rem; flex-wrap: wrap; align-items: center; }

/* Info Rows */
.product-info-rows, .card-info-rows {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  margin-top: 0.5rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(247,168,164,0.22);
}
.info-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.35rem 0;
  gap: 1rem;
}
.info-label {
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-accent-coral);
  font-weight: 600;
  white-space: nowrap;
  flex-shrink: 0;
}
.info-value { font-size: 0.82rem; color: var(--color-text-cocoa); text-align: right; }

/* Values list */
.values-list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 0.8rem; }
.values-list li { display: flex; align-items: flex-start; gap: 0.7rem; font-size: 0.92rem; color: var(--color-text-cocoa); line-height: 1.55; }
.values-list .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--color-accent-coral); margin-top: 6px; flex-shrink: 0; }

/* ==========================================================================
   CARDS & GRIDS
   ========================================================================== */

.editorial-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  position: relative;
  z-index: 1;
}

.location-card {
  background: var(--color-card-bg);
  border-radius: 40px 12px 40px 12px;
  padding: 2.2rem;
  box-shadow: var(--shadow-card);
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
  transition: var(--transition-elastic);
  backdrop-filter: blur(14px);
  border: 1px solid rgba(247,168,164,0.16);
  position: relative;
  overflow: hidden;
}
.location-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-card-hover);
}
.card-coral { border-color: rgba(230,57,70,0.12); }
.card-coral .card-vibe { background: rgba(247,168,164,0.18); }
.card-leaf-corner {
  position: absolute;
  top: -10px;
  right: -10px;
  opacity: 0.8;
  pointer-events: none;
}

.card-header { display: flex; align-items: flex-start; gap: 1rem; }
.card-icon { font-size: 2rem; flex-shrink: 0; line-height: 1; }
.card-region {
  font-size: 0.65rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-mid-green);
  font-weight: 600;
  margin-bottom: 0.25rem;
}
.card-name {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 1.2;
  color: var(--color-text-cocoa);
}
.card-vibe {
  background: rgba(212,237,218,0.32);
  border-radius: 12px 30px 12px 30px;
  padding: 0.8rem 1rem;
}
.vibe-text {
  font-family: var(--font-serif);
  font-size: 0.92rem;
  font-style: italic;
  color: var(--color-text-muted);
  line-height: 1.5;
}
.card-description { font-size: 0.88rem; color: var(--color-text-muted); line-height: 1.65; }
.card-cta { display: inline-flex; align-items: center; justify-content: center; margin-top: auto; width: fit-content; font-size: 0.8rem; }

.laws-box {
  background: var(--color-card-bg);
  border-radius: 12px 32px 12px 32px;
  padding: 1.4rem 1.6rem;
  box-shadow: var(--shadow-card);
  border: 1px solid rgba(247,168,164,0.16);
  transition: var(--transition-smooth);
  backdrop-filter: blur(8px);
  margin-top: 1.2rem;
}
.laws-box:hover { transform: translateX(4px); box-shadow: var(--shadow-card-hover); }
.laws-box h3 { font-family: var(--font-serif); font-size: 1.3rem; color: var(--color-palm-green); margin: 0 0 0.6rem 0; }
.laws-box p { font-size: 0.85rem; color: var(--color-text-muted); line-height: 1.6; margin: 0 0 0.6rem 0; }
.laws-box .label-badge {
  display: inline-block;
  background: var(--color-pastry-pink);
  color: var(--color-bright-hibiscus);
  font-weight: 700;
  font-size: 0.62rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 0.2rem 0.7rem;
  border-radius: 50px;
  margin-bottom: 0.6rem;
}

.contact-row { display: flex; gap: 1.2rem; flex-wrap: wrap; margin-top: 2.5rem; }
.contact-chip {
  background: var(--color-card-bg);
  border-radius: 16px;
  padding: 1.1rem 1.4rem;
  box-shadow: var(--shadow-card);
  min-width: 200px;
  backdrop-filter: blur(8px);
  border: 1px solid rgba(247,168,164,0.12);
  transition: var(--transition-smooth);
}
.contact-chip:hover { transform: translateY(-4px); box-shadow: var(--shadow-card-hover); }
.contact-chip strong { display: block; font-family: var(--font-serif); font-size: 1.1rem; color: var(--color-palm-green); margin-bottom: 0.25rem; }
.contact-chip span { font-size: 0.85rem; color: var(--color-text-muted); line-height: 1.5; }

/* ==========================================================================
   PRODUCT TILES (ORDER PAGE)
   ========================================================================== */

.products-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 2rem; margin-bottom: 4rem; position: relative; z-index: 1; }
.product-tile {
  background: var(--color-card-bg);
  border-radius: 24px;
  padding: 1.8rem;
  box-shadow: var(--shadow-card);
  transition: var(--transition-elastic);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(247,168,164,0.12);
}
.product-tile:hover { transform: translateY(-8px); box-shadow: var(--shadow-card-hover); }
.tile-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 0.9rem; }
.tile-icon { font-size: 2.2rem; line-height: 1; }
.tile-tag {
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  background: var(--color-pastry-pink);
  color: var(--color-bright-hibiscus);
  padding: 0.25rem 0.7rem;
  border-radius: 50px;
}
.tile-title { font-family: var(--font-serif); font-size: 1.5rem; color: var(--color-palm-green); margin: 0 0 0.4rem 0; }
.tile-desc { font-size: 0.88rem; color: var(--color-text-muted); line-height: 1.55; margin-bottom: 1.2rem; flex: 1; }
.tile-bottom { display: flex; align-items: center; justify-content: space-between; margin-top: auto; }
.tile-price { font-family: var(--font-serif); font-size: 1.4rem; font-weight: 700; color: var(--color-text-cocoa); }
.tile-actions { display: flex; align-items: center; gap: 0.6rem; }
.qty-btn {
  width: 30px; height: 30px; border-radius: 50%;
  border: 1px solid rgba(44,37,35,0.12);
  background: var(--color-white);
  cursor: pointer;
  font-weight: 700;
  font-size: 1rem;
  color: var(--color-palm-green);
  transition: var(--transition-smooth);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-sans);
}
.qty-btn:hover { background: var(--color-pastry-pink); border-color: var(--color-accent-coral); }
.qty-value { font-weight: 700; width: 22px; text-align: center; display: inline-block; font-size: 0.9rem; }
.add-btn {
  background: var(--color-bright-hibiscus);
  color: var(--color-white);
  border: none;
  border-radius: 50px;
  padding: 0.5rem 1rem;
  font-weight: 700;
  font-size: 0.78rem;
  cursor: pointer;
  transition: var(--transition-smooth);
  box-shadow: 0 4px 12px rgba(217,61,89,0.2);
  font-family: var(--font-sans);
}
.add-btn:hover { background: #be2e47; transform: translateY(-2px); }
.add-btn.added { background: var(--color-palm-green); }

/* ==========================================================================
   ORDER PANEL & FORM
   ========================================================================== */

.order-panel {
  background: var(--color-card-bg);
  border-radius: 32px;
  padding: 2.5rem;
  box-shadow: var(--shadow-3d-deep);
  margin-bottom: 4rem;
  backdrop-filter: blur(14px);
  border: 1px solid rgba(247,168,164,0.16);
  position: relative;
  z-index: 1;
}
.order-panel h3 { font-family: var(--font-serif); font-size: 1.8rem; color: var(--color-palm-green); margin: 0 0 1.2rem 0; }
.cart-list { list-style: none; padding: 0; margin: 0 0 1.2rem 0; max-height: 240px; overflow-y: auto; }
.cart-list li { display: flex; justify-content: space-between; align-items: center; padding: 0.6rem 0; border-bottom: 1px solid rgba(44,37,35,0.05); font-size: 0.9rem; }
.cart-list li .name { color: var(--color-text-cocoa); font-weight: 600; }
.cart-list li .amount { color: var(--color-text-muted); font-size: 0.82rem; }
.cart-empty { color: var(--color-text-muted); font-style: italic; font-size: 0.9rem; padding: 0.6rem 0; }
.cart-total {
  display: flex;
  justify-content: space-between;
  font-family: var(--font-serif);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--color-palm-green);
  padding: 0.8rem 0;
  border-top: 2px solid rgba(44,37,35,0.06);
  margin-bottom: 1.2rem;
}
.form-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem; }
.form-grid .full { grid-column: 1 / -1; }
.field label {
  display: block;
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--color-text-muted);
  margin-bottom: 0.4rem;
}
.field input, .field textarea, .field select {
  width: 100%;
  padding: 0.75rem 1rem;
  border-radius: 14px;
  border: 1px solid rgba(44,37,35,0.1);
  background: var(--color-bg-sand);
  font-family: var(--font-sans);
  font-size: 0.92rem;
  color: var(--color-text-cocoa);
  outline: none;
  transition: var(--transition-smooth);
}
.field input:focus, .field textarea:focus, .field select:focus {
  border-color: var(--color-accent-coral);
  box-shadow: 0 0 0 3px rgba(247,168,164,0.15);
}
.field textarea { min-height: 90px; resize: vertical; }
.submit-area { margin-top: 1.2rem; display: flex; align-items: center; gap: 1.2rem; flex-wrap: wrap; }
.notice { font-size: 0.82rem; color: var(--color-text-muted); line-height: 1.5; max-width: 480px; }
.notice a { color: var(--color-bright-hibiscus); }

.confirmation {
  display: none;
  background: rgba(212,237,218,0.5);
  border-left: 4px solid var(--color-palm-green);
  padding: 1.2rem 1.5rem;
  border-radius: 14px;
  margin-top: 1.2rem;
  backdrop-filter: blur(8px);
}
.confirmation h4 { margin: 0 0 0.4rem 0; font-family: var(--font-serif); color: var(--color-palm-green); font-size: 1.2rem; }
.confirmation p { margin: 0; font-size: 0.88rem; color: var(--color-text-muted); line-height: 1.5; }

/* ==========================================================================
   ORDER SECTION (dark CTA)
   ========================================================================== */

.order-section {
  padding: 4rem 4rem;
  background: linear-gradient(135deg, var(--color-palm-green) 0%, #163528 100%);
  position: relative;
  overflow: hidden;
}
.order-section::before {
  content: '';
  position: absolute;
  top: -40%;
  right: -5%;
  width: 550px;
  height: 550px;
  background: radial-gradient(circle, rgba(251,203,201,0.12) 0%, transparent 60%);
  pointer-events: none;
}
.order-leaf-tl { position: absolute; top: -20px; left: -20px; pointer-events: none; opacity: 0.9; }
.order-leaf-br { position: absolute; bottom: -20px; right: -20px; pointer-events: none; opacity: 0.8; transform: rotate(180deg); }
.order-leaf-tl svg, .order-leaf-br svg { width: 160px; }
.order-inner { text-align: center; position: relative; z-index: 1; }
.order-hibiscus { margin-bottom: 1.2rem; display: flex; justify-content: center; }
.order-title {
  font-family: var(--font-serif);
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  font-weight: 500;
  color: var(--color-white);
  line-height: 1.1;
  margin-bottom: 1.2rem;
}
.order-title .italic { color: var(--color-pastry-pink); }
.order-description {
  font-size: 0.95rem;
  color: rgba(250,245,239,0.75);
  max-width: 440px;
  margin: 0 auto 2.5rem;
  line-height: 1.7;
}
.order-ctas { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
.order-ctas .btn-ghost {
  color: var(--color-white);
  border-color: rgba(255,255,255,0.35);
}
.order-ctas .btn-ghost:hover {
  border-color: var(--color-pastry-pink);
  color: var(--color-pastry-pink);
  background: rgba(251,203,201,0.1);
}

/* ==========================================================================
   FOOTER
   ========================================================================== */

.site-footer {
  padding: 3rem 4rem 2.5rem;
  text-align: center;
  background: var(--color-bg-sand);
  border-top: 1px solid rgba(247,168,164,0.22);
  position: relative;
  overflow: hidden;
}
.footer-leaf-l {
  position: absolute;
  left: -20px;
  bottom: -10px;
  pointer-events: none;
  opacity: 0.7;
}
.footer-leaf-r {
  position: absolute;
  right: -20px;
  bottom: -10px;
  pointer-events: none;
  opacity: 0.6;
  transform: scaleX(-1);
}
.footer-leaf-l svg, .footer-leaf-r svg { width: 110px; }
.footer-hib-row {
  display: flex;
  justify-content: center;
  margin-bottom: 0.8rem;
}
.footer-coqui-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  font-size: 1.1rem;
  margin-bottom: 1.2rem;
  opacity: 0.7;
}
.divider-dot { font-size: 0.5rem; color: var(--color-mid-green); }
.footer-copyright { font-size: 0.78rem; color: var(--color-text-muted); letter-spacing: 0.04em; }
.footer-tagline {
  display: block;
  margin-top: 0.25rem;
  font-family: var(--font-serif);
  font-style: italic;
  color: var(--color-mid-green);
  font-size: 0.88rem;
}

/* ==========================================================================
   COQUÍ FROGS (subtle, fewer, out of text)
   ========================================================================== */



/* ==========================================================================
   REVEAL ANIMATIONS
   ========================================================================== */

.reveal { opacity: 0; transform: translateY(20px); }

/* ==========================================================================
   RESPONSIVE
   ========================================================================== */

@media (max-width: 1024px) {
  :root { --sidebar-width: 240px; }
  .hero-section { padding: 4rem 3rem; }
  .featured-section { padding: 3rem 3rem 4rem; }
  .boutiques-section { padding: 4rem 3rem; }
  .roadmap-section { padding: 4rem 3rem 5rem; }
  .order-section { padding: 4rem 3rem; }
  .site-footer { padding: 2.5rem 3rem; }
  .featured-grid { gap: 2.5rem; }
  .product-image-container { width: 280px; height: 280px; }
}

@media (max-width: 820px) {
  .site-shell { grid-template-columns: 1fr; }
  .sidebar {
    position: relative;
    width: 100%;
    height: auto;
    flex-direction: row;
    flex-wrap: wrap;
    padding: 1.2rem 1.5rem;
    gap: 1rem;
    border-right: none;
    border-bottom: 1px solid rgba(247,168,164,0.22);
    overflow: visible;
  }
  .sidebar-brand { flex-shrink: 0; }
  .brand-line1, .brand-line2 { font-size: 1.5rem; }
  .sidebar-nav { flex-direction: row; flex-wrap: wrap; gap: 0.4rem; }
  .nav-group-label { display: none; }
  .filter-list, .section-list { flex-direction: row; flex-wrap: wrap; gap: 0.3rem; }
  .cookie-card { margin-top: 0; flex-direction: row; align-items: center; flex-wrap: wrap; width: 100%; }
  .sidebar-monstera { display: none; }

  .hero-section { padding: 3rem 1.5rem; min-height: auto; }
  .hero-headline { font-size: 3rem; }
  .featured-section { padding: 2.5rem 1.5rem; }
  .featured-grid { grid-template-columns: 1fr; gap: 2rem; }
  .product-image-container { width: 240px; height: 240px; margin: 0 auto; }
  .floating-tags { display: none; }
  .boutiques-section { padding: 3rem 1.5rem; }
  .boutiques-grid { grid-template-columns: 1fr; }
  .editorial-grid { grid-template-columns: 1fr; }
  .roadmap-section { padding: 3rem 1.5rem 4rem; }
  .order-section { padding: 3.5rem 1.5rem; }
  .site-footer { padding: 2rem 1.5rem; }
  .form-grid { grid-template-columns: 1fr; }
  .products-grid { grid-template-columns: 1fr; }

  .bota-tl, .bota-tr, .bota-lm, .bota-rm, .bota-bot { display: none; }
  .section-leaf-accent, .roadmap-scatter { display: none; }
  .coqui-frog-sprite { display: none; }
}

@media (max-width: 480px) {
  .hero-headline { font-size: 2.6rem; }
  .hero-section { padding: 2rem 1rem; }
  .featured-section, .boutiques-section, .order-section { padding: 2rem 1rem; }
  .product-image-container { width: 200px; height: 200px; }
}
