/* ================================================================
   HILLCREST HONEY — style.css
   ================================================================
   Table of Contents:
   1.  CSS Custom Properties (Design Tokens)
   2.  Reset & Base
   3.  Typography
   4.  Utility Classes
   5.  Buttons
   6.  Navigation
   7.  Hero Section
   8.  Torn Paper Edge Dividers
   9.  Features / Benefits Section
   10. Shop / Product Cards Section
   11. Story Section
   12. Beekeeper / Why Local Section
   13. FAQ Section
   14. Contact Section
   15. Footer
   16. Cart Drawer
   17. Cart Toggle Button
   18. Animations & Transitions
   19. Responsive — Tablet (max 900px)
   20. Responsive — Mobile (max 600px)
   ================================================================ */


/* ----------------------------------------------------------------
   1. CSS CUSTOM PROPERTIES (Design Tokens)
   REPLACE: Adjust these values to change the global colour scheme,
   typography, and spacing across the entire site.
   ---------------------------------------------------------------- */
:root {
  /* Colours */
  --color-cream:        #FAF7F0;
  --color-cream-dark:   #F0EBE0;
  --color-cream-deeper: #E8E0D0;
  --color-amber:        #C8860A;
  --color-amber-hover:  #A86F08;
  --color-amber-light:  #F0C060;
  --color-amber-pale:   #FDF3DC;
  --color-brown-dark:   #2C1810;
  --color-brown-mid:    #5C3D28;
  --color-brown-light:  #8B6040;
  --color-text:         #3D2B1F;
  --color-text-muted:   #7A5C44;
  --color-white:        #FFFFFF;
  --color-border:       rgba(139, 96, 64, 0.2);

  /* Typography */
  --font-serif:    'Playfair Display', 'Georgia', serif;
  --font-elegant:  'Cormorant Garamond', 'Georgia', serif;
  --font-sans:     'Lato', 'Helvetica Neue', Arial, sans-serif;

  /* Spacing */
  --space-xs:   0.5rem;
  --space-sm:   1rem;
  --space-md:   2rem;
  --space-lg:   4rem;
  --space-xl:   6rem;
  --space-xxl:  8rem;

  /* Layout */
  --max-width:    1200px;
  --nav-height:   80px;
  --radius-sm:    6px;
  --radius-md:    12px;
  --radius-lg:    20px;
  --radius-pill:  100px;

  /* Shadows */
  --shadow-sm:  0 2px 8px rgba(44, 24, 16, 0.08);
  --shadow-md:  0 6px 24px rgba(44, 24, 16, 0.12);
  --shadow-lg:  0 16px 48px rgba(44, 24, 16, 0.16);

  /* Transitions */
  --transition-fast:   150ms ease;
  --transition-base:   250ms ease;
  --transition-slow:   400ms ease;
}


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

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

body {
  background-color: var(--color-cream);
  color: var(--color-text);
  font-family: var(--font-sans);
  font-weight: 400;
  line-height: 1.7;
  overflow-x: hidden;
}

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

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

ul, ol {
  list-style: none;
}

input, textarea, button, select {
  font: inherit;
  color: inherit;
}

button {
  cursor: pointer;
  background: none;
  border: none;
}

details > summary {
  list-style: none;
}
details > summary::-webkit-details-marker {
  display: none;
}


/* ----------------------------------------------------------------
   3. TYPOGRAPHY
   ---------------------------------------------------------------- */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-serif);
  font-weight: 600;
  line-height: 1.25;
  color: var(--color-brown-dark);
}

h1 { font-size: clamp(2.4rem, 5vw, 3.8rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); }
h3 { font-size: clamp(1.3rem, 2.5vw, 1.8rem); }

p {
  font-size: 1rem;
  line-height: 1.75;
  color: var(--color-text-muted);
}

em {
  font-style: italic;
  font-family: var(--font-elegant);
  font-weight: 400;
}

strong {
  font-weight: 700;
  color: var(--color-text);
}


/* ----------------------------------------------------------------
   4. UTILITY CLASSES
   ---------------------------------------------------------------- */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--space-md);
}

.section-heading {
  font-family: var(--font-serif);
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 600;
  color: var(--color-brown-dark);
  line-height: 1.25;
  text-align: center;
  margin-bottom: var(--space-md);
}

.section-heading--left {
  text-align: left;
}

.section-subtext {
  font-size: 1.05rem;
  color: var(--color-text-muted);
  text-align: center;
  max-width: 600px;
  margin: 0 auto var(--space-lg);
  line-height: 1.8;
}

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


/* ----------------------------------------------------------------
   5. BUTTONS
   ---------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.85rem 2rem;
  border-radius: var(--radius-pill);
  font-family: var(--font-sans);
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: none;
  transition: background-color var(--transition-base),
              color var(--transition-base),
              border-color var(--transition-base),
              transform var(--transition-fast),
              box-shadow var(--transition-base);
  cursor: pointer;
  white-space: nowrap;
  text-decoration: none;
  border: 2px solid transparent;
  line-height: 1;
}

.btn:focus-visible {
  outline: 3px solid var(--color-amber);
  outline-offset: 3px;
}

/* Primary — amber fill */
.btn-primary {
  background-color: var(--color-amber);
  color: var(--color-white);
  border-color: var(--color-amber);
  box-shadow: 0 2px 12px rgba(200, 134, 10, 0.3);
}

.btn-primary:hover {
  background-color: var(--color-amber-hover);
  border-color: var(--color-amber-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(200, 134, 10, 0.4);
}

.btn-primary:active {
  transform: translateY(0);
}

/* Outline — transparent with dark border */
.btn-outline {
  background-color: transparent;
  color: var(--color-brown-dark);
  border-color: var(--color-brown-dark);
}

.btn-outline:hover {
  background-color: var(--color-brown-dark);
  color: var(--color-cream);
  transform: translateY(-2px);
}

/* Outline dark variant on light backgrounds */
.btn-outline--dark {
  border-color: var(--color-amber);
  color: var(--color-amber);
}

.btn-outline--dark:hover {
  background-color: var(--color-amber);
  color: var(--color-white);
  transform: translateY(-2px);
}

/* Buy button — full width on mobile */
.btn-buy {
  flex: 1;
  min-width: 0;
  text-align: center;
}


/* ----------------------------------------------------------------
   6. NAVIGATION
   ---------------------------------------------------------------- */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--nav-height);
  background-color: rgba(250, 247, 240, 0.95);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--color-border);
  transition: box-shadow var(--transition-base);
}

.site-header.scrolled {
  box-shadow: var(--shadow-md);
}

.nav-container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--space-md);
  height: 100%;
  display: flex;
  align-items: center;
  gap: var(--space-md);
}

/* Logo */
.nav-logo {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  line-height: 1;
  text-decoration: none;
  flex-shrink: 0;
}

.logo-main {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--color-brown-dark);
  letter-spacing: 0.01em;
}

.logo-sub {
  font-family: var(--font-sans);
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.25em;
  color: var(--color-brown-light);
  text-transform: uppercase;
  margin-top: 1px;
}

/* Logo image — navbar */
.nav-logo-img {
  height: 52px;
  width: auto;
  display: block;
  object-fit: contain;
}

/* Logo image — footer */
.footer-logo-img {
  height: 176px;
  width: auto;
  display: block;
  object-fit: contain;
}

/* Nav links */
.nav-links {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  margin: 0 auto;
  list-style: none;
}

.nav-links > li {
  position: relative;
}

.nav-links > li > a {
  display: flex;
  align-items: center;
  gap: 0.3rem;
  padding: 0.5rem 0.85rem;
  font-size: 0.9rem;
  font-weight: 400;
  color: var(--color-text-muted);
  border-radius: var(--radius-sm);
  transition: color var(--transition-fast), background-color var(--transition-fast);
  text-decoration: none;
}

.nav-links > li > a:hover {
  color: var(--color-brown-dark);
  background-color: rgba(200, 134, 10, 0.08);
}

.dropdown-arrow {
  font-size: 0.65rem;
  transition: transform var(--transition-base);
}

/* Dropdown menu */
.nav-dropdown:hover .dropdown-menu,
.nav-dropdown:focus-within .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.nav-dropdown:hover .dropdown-arrow {
  transform: rotate(180deg);
}

.dropdown-menu {
  position: absolute;
  top: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%) translateY(-8px);
  min-width: 180px;
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  padding: 0.5rem 0;
  list-style: none;
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--transition-base), transform var(--transition-base), visibility var(--transition-base);
  z-index: 100;
}

.dropdown-menu li a {
  display: block;
  padding: 0.6rem 1.25rem;
  font-size: 0.88rem;
  color: var(--color-text-muted);
  transition: background-color var(--transition-fast), color var(--transition-fast);
}

.dropdown-menu li a:hover {
  background-color: var(--color-amber-pale);
  color: var(--color-amber);
}

/* Nav CTA button */
.nav-cta {
  flex-shrink: 0;
  padding: 0.6rem 1.4rem;
  font-size: 0.88rem;
}

/* Hamburger toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px;
  height: 36px;
  padding: 6px;
  margin-left: auto;
  border-radius: var(--radius-sm);
  transition: background-color var(--transition-fast);
}

.nav-toggle:hover {
  background-color: rgba(200, 134, 10, 0.1);
}

.nav-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  background-color: var(--color-brown-dark);
  border-radius: 2px;
  transition: transform var(--transition-base), opacity var(--transition-base);
}

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


/* ----------------------------------------------------------------
   7. HERO SECTION — full-width banner with text overlay
   ---------------------------------------------------------------- */
.hero {
  position: relative;
  width: 100%;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

/* Full-width image block flush to the top */
.hero-banner {
  position: relative;
  width: 100%;
  /* Reserve space for the nav bar so image starts right below it */
  padding-top: var(--nav-height);
  line-height: 0;
}

.hero-banner-img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
  object-position: center top;
}

/* Text + CTA block below the image */
.hero-content {
  background-color: var(--color-cream);
  display: flex;
  justify-content: center;
  padding: var(--space-lg) var(--space-md) var(--space-md);
}

.hero-text {
  max-width: 640px;
  text-align: center;
}

.hero-headline {
  font-family: var(--font-serif);
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  font-weight: 600;
  color: var(--color-brown-dark);
  line-height: 1.15;
  margin-bottom: var(--space-md);
  letter-spacing: -0.01em;
}

.hero-headline em {
  font-family: var(--font-elegant);
  font-size: 1.05em;
  color: var(--color-amber);
  display: block;
}

.hero-subtext {
  font-size: 1.1rem;
  color: var(--color-text-muted);
  line-height: 1.8;
  margin-bottom: var(--space-lg);
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
  align-items: center;
  justify-content: center;
}

/* Outline button variant that works on the cream background */
.hero-btn-outline {
  border-color: var(--color-brown-dark);
  color: var(--color-brown-dark);
}
.hero-btn-outline:hover {
  background-color: var(--color-brown-dark);
  color: var(--color-cream);
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-12px); }
}


/* ----------------------------------------------------------------
   8. TORN PAPER EDGE DIVIDERS
   ---------------------------------------------------------------- */
.torn-edge {
  width: 100%;
  overflow: hidden;
  line-height: 0;
  pointer-events: none;
}

.torn-edge svg {
  display: block;
  width: 100%;
  height: 60px;
}

.torn-edge--top {
  margin-bottom: -1px;
}

.torn-edge--bottom {
  margin-top: -1px;
}


/* ----------------------------------------------------------------
   9. FEATURES / BENEFITS SECTION
   ---------------------------------------------------------------- */
.features {
  position: relative;
  background-color: var(--color-cream);
  padding: 0;
  overflow: hidden;
}

.features-inner {
  max-width: 800px;
  margin: 0 auto;
  padding-bottom: var(--space-xl);
  text-align: center;
  position: relative;
  z-index: 1;
}

.features-lead-img {
  display: block;
  width: min(100%, 800px);
  margin: 0 auto var(--space-md);
  border-radius: var(--radius-lg);
  object-fit: cover;
  box-shadow: var(--shadow-md);
}

.features-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-md) var(--space-lg);
  margin-top: var(--space-lg);
  text-align: left;
}

.features-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
  list-style: none;
}

.features-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.95rem;
  color: var(--color-text-muted);
  line-height: 1.6;
}

.feature-icon {
  color: var(--color-amber);
  font-size: 0.7rem;
  margin-top: 0.35rem;
  flex-shrink: 0;
}

.bee-deco {
  position: absolute;
  opacity: 0.35;
  pointer-events: none;
  z-index: 0;
}

.bee-deco--features {
  width: 80px;
  top: 30px;
  right: 15%;
  transform: rotate(-20deg);
}


/* ----------------------------------------------------------------
   10. SHOP / PRODUCT CARDS SECTION
   ---------------------------------------------------------------- */
.shop {
  background-color: var(--color-cream-dark);
  padding: var(--space-lg) var(--space-md) var(--space-xl);
  position: relative;
}

.shop-inner {
  max-width: var(--max-width);
  margin: 0 auto;
}

.shop-header {
  text-align: center;
  margin-bottom: var(--space-lg);
}

.product-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-lg);
  max-width: 900px;
  margin: 0 auto;
}

/* Product card */
.product-card {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition-base), box-shadow var(--transition-base);
  display: flex;
  flex-direction: column;
  border: 1px solid var(--color-border);
}

.product-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

/* Featured card (medium jar) */
.product-card--featured {
  border-color: var(--color-amber-light);
  box-shadow: 0 0 0 2px rgba(200, 134, 10, 0.15), var(--shadow-sm);
}

.product-card__image-wrap {
  position: relative;
  background: var(--color-cream);
  padding: var(--space-md);
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 260px;
  overflow: hidden;
}

.product-card__img {
  width: 100%;
  max-width: 280px;
  height: 280px;
  object-fit: contain;
  /* White/light background jars look best with a subtle drop shadow */
  filter: drop-shadow(0 8px 24px rgba(120, 70, 0, 0.12));
  transition: transform var(--transition-slow);
}

.product-card:hover .product-card__img {
  transform: scale(1.04);
}

.product-badge {
  position: absolute;
  top: var(--space-sm);
  left: var(--space-sm);
  background: var(--color-cream-deeper);
  color: var(--color-brown-mid);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.3rem 0.75rem;
  border-radius: var(--radius-pill);
  border: 1px solid var(--color-border);
}

.product-badge--featured {
  background: var(--color-amber);
  color: var(--color-white);
  border-color: var(--color-amber);
}

.product-card__body {
  padding: var(--space-md);
  display: flex;
  flex-direction: column;
  flex: 1;
}

.product-card__name {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--color-brown-dark);
  margin-bottom: 0.25rem;
}

.product-card__size {
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-amber);
  margin-bottom: var(--space-sm);
}

.product-card__desc {
  font-size: 0.92rem;
  color: var(--color-text-muted);
  line-height: 1.7;
  margin-bottom: var(--space-md);
  flex: 1;
}

.product-card__price {
  margin-bottom: var(--space-sm);
}

.price-amount {
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 600;
  color: var(--color-brown-dark);
}

/* Quantity selector + buy button row */
.product-card__controls {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  flex-wrap: wrap;
}

.qty-selector {
  display: flex;
  align-items: center;
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius-pill);
  overflow: hidden;
  background: var(--color-cream);
  flex-shrink: 0;
}

.qty-btn {
  width: 36px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: var(--color-brown-mid);
  background: none;
  border: none;
  cursor: pointer;
  transition: background-color var(--transition-fast), color var(--transition-fast);
  line-height: 1;
}

.qty-btn:hover {
  background-color: var(--color-amber-pale);
  color: var(--color-amber);
}

.qty-input {
  width: 42px;
  height: 40px;
  text-align: center;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--color-brown-dark);
  background: none;
  border: none;
  border-left: 1.5px solid var(--color-border);
  border-right: 1.5px solid var(--color-border);
  -moz-appearance: textfield;
  appearance: textfield;
  outline: none;
}

.qty-input::-webkit-inner-spin-button,
.qty-input::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* Shop note / shipping info */
.shop-note {
  text-align: center;
  font-size: 0.85rem;
  color: var(--color-text-muted);
  margin-top: var(--space-lg);
  padding: var(--space-sm) var(--space-md);
  background: rgba(200, 134, 10, 0.06);
  border-radius: var(--radius-md);
  border: 1px solid rgba(200, 134, 10, 0.15);
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}


/* ----------------------------------------------------------------
   11. STORY SECTION
   ---------------------------------------------------------------- */
.story {
  background-color: var(--color-cream);
  position: relative;
  padding: 0;
}

.story-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
  align-items: center;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: var(--space-xl) var(--space-md);
}

.story-image {
  position: relative;
}

.story-img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.story-text {
  padding: var(--space-md) 0;
}

.story-text .section-heading {
  margin-bottom: var(--space-md);
}

.story-text p {
  margin-bottom: var(--space-sm);
  font-size: 1rem;
  line-height: 1.85;
}

.story-text .btn {
  margin-top: var(--space-md);
}


/* ----------------------------------------------------------------
   12. BEEKEEPER / WHY LOCAL SECTION
   ---------------------------------------------------------------- */
.beekeeper {
  background-color: var(--color-cream-dark);
  padding: 0;
  position: relative;
  overflow: hidden;
}

.beekeeper-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
  align-items: center;
  max-width: var(--max-width);
  margin: 0 auto;
  padding-bottom: var(--space-xl);
}

.beekeeper-text .section-heading {
  margin-bottom: var(--space-lg);
}

.beekeeper-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  list-style: none;
}

.beekeeper-list li {
  display: flex;
  align-items: flex-start;
  gap: var(--space-sm);
}

.list-icon {
  color: var(--color-amber);
  font-size: 0.7rem;
  margin-top: 0.4rem;
  flex-shrink: 0;
}

.beekeeper-list li > div {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.beekeeper-list li strong {
  font-size: 0.95rem;
  color: var(--color-brown-dark);
  font-weight: 700;
}

.beekeeper-list li p {
  font-size: 0.9rem;
  color: var(--color-text-muted);
  line-height: 1.6;
  margin: 0;
}

.beekeeper-image {
  position: relative;
}

.beekeeper-img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}


/* ----------------------------------------------------------------
   13. FAQ SECTION
   ---------------------------------------------------------------- */
.faq {
  background-color: var(--color-cream);
  position: relative;
  padding: 0;
}

.faq-inner {
  max-width: 760px;
  margin: 0 auto;
  padding: var(--space-xl) var(--space-md);
}

.faq-inner .section-heading {
  margin-bottom: var(--space-lg);
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.faq-item {
  border-bottom: 1px solid var(--color-border);
}

.faq-item:first-child {
  border-top: 1px solid var(--color-border);
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-sm);
  padding: 1.25rem 0;
  font-family: var(--font-serif);
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--color-brown-dark);
  cursor: pointer;
  user-select: none;
  transition: color var(--transition-fast);
}

.faq-question:hover {
  color: var(--color-amber);
}

.faq-icon {
  flex-shrink: 0;
  font-size: 1.2rem;
  color: var(--color-amber);
  transition: transform var(--transition-base);
  line-height: 1;
}

details[open] .faq-icon {
  transform: rotate(45deg);
}

.faq-answer {
  padding: 0 0 1.25rem;
  animation: faqOpen 0.25s ease;
}

.faq-answer p {
  font-size: 0.95rem;
  line-height: 1.8;
  color: var(--color-text-muted);
}

@keyframes faqOpen {
  from { opacity: 0; transform: translateY(-6px); }
  to   { opacity: 1; transform: translateY(0); }
}


/* ----------------------------------------------------------------
   14. CONTACT SECTION
   ---------------------------------------------------------------- */
.contact {
  background-color: var(--color-cream-deeper);
  padding: var(--space-xl) var(--space-md);
}

.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: var(--space-xl);
  align-items: start;
  max-width: var(--max-width);
  margin: 0 auto;
}

.contact-text .section-heading {
  margin-bottom: var(--space-md);
}

.contact-text p {
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: var(--space-lg);
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
  list-style: none;
}

.contact-details li {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.contact-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-amber);
}

.contact-details a,
.contact-details span {
  font-size: 0.95rem;
  color: var(--color-text-muted);
  transition: color var(--transition-fast);
}

.contact-details a:hover {
  color: var(--color-amber);
}

/* Contact form */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  background: var(--color-white);
  padding: var(--space-lg);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--color-border);
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.form-group label {
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--color-brown-mid);
}

.form-group input,
.form-group textarea {
  padding: 0.85rem 1rem;
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius-sm);
  background: var(--color-cream);
  font-size: 0.95rem;
  color: var(--color-text);
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
  resize: vertical;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--color-amber);
  box-shadow: 0 0 0 3px rgba(200, 134, 10, 0.12);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(122, 92, 68, 0.5);
}

.form-note {
  font-size: 0.88rem;
  color: var(--color-text-muted);
  min-height: 1.4em;
}

.form-note.success {
  color: #2a7a3b;
}

.form-note.error {
  color: #c0392b;
}


/* ----------------------------------------------------------------
   15. FOOTER
   ---------------------------------------------------------------- */
.site-footer {
  background-color: var(--color-brown-dark);
  color: rgba(250, 247, 240, 0.85);
  padding: var(--space-xl) var(--space-md) var(--space-md);
}

.footer-inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: var(--space-lg);
  max-width: var(--max-width);
  margin: 0 auto;
  padding-bottom: var(--space-lg);
  border-bottom: 1px solid rgba(250, 247, 240, 0.12);
}

/* footer-brand logo text rules kept for fallback; image used instead */
.footer-brand .logo-main {
  color: var(--color-cream);
  font-size: 1.4rem;
}

.footer-brand .logo-sub {
  color: rgba(250, 247, 240, 0.5);
}

.footer-tagline {
  margin-top: var(--space-sm);
  font-size: 1.76rem;
  color: rgba(250, 247, 240, 0.55);
  font-style: italic;
  font-family: var(--font-elegant);
}

.footer-nav ul {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  list-style: none;
}

.footer-nav a {
  font-size: 0.9rem;
  color: rgba(250, 247, 240, 0.7);
  transition: color var(--transition-fast);
}

.footer-nav a:hover {
  color: var(--color-amber-light);
}

.footer-social-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(250, 247, 240, 0.45);
  margin-bottom: 0.75rem;
}

.social-links {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.social-links a {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.88rem;
  color: rgba(250, 247, 240, 0.7);
  transition: color var(--transition-fast);
}

.social-links a:hover {
  color: var(--color-amber-light);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: var(--space-sm);
  max-width: var(--max-width);
  margin: var(--space-md) auto 0;
}

.footer-bottom p {
  font-size: 0.82rem;
  color: rgba(250, 247, 240, 0.45);
}

.footer-stripe-note a {
  color: rgba(250, 247, 240, 0.6);
  text-decoration: underline;
  transition: color var(--transition-fast);
}

.footer-stripe-note a:hover {
  color: var(--color-amber-light);
}


/* ----------------------------------------------------------------
   16. CART DRAWER
   ---------------------------------------------------------------- */
.cart-drawer {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: flex;
  justify-content: flex-end;
}

.cart-drawer[hidden] {
  display: none;
}

.cart-drawer__overlay {
  position: absolute;
  inset: 0;
  background: rgba(44, 24, 16, 0.5);
  backdrop-filter: blur(2px);
  animation: fadeIn var(--transition-base);
}

.cart-drawer__panel {
  position: relative;
  width: 100%;
  max-width: 420px;
  height: 100%;
  background: var(--color-white);
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-lg);
  animation: slideInRight var(--transition-slow);
}

@keyframes slideInRight {
  from { transform: translateX(100%); }
  to   { transform: translateX(0); }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

.cart-drawer__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--space-md);
  border-bottom: 1px solid var(--color-border);
}

.cart-drawer__header h2 {
  font-size: 1.2rem;
}

.cart-close {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 1rem;
  color: var(--color-text-muted);
  transition: background-color var(--transition-fast), color var(--transition-fast);
}

.cart-close:hover {
  background-color: var(--color-cream-dark);
  color: var(--color-brown-dark);
}

.cart-drawer__body {
  flex: 1;
  overflow-y: auto;
  padding: var(--space-md);
}

.cart-empty {
  text-align: center;
  color: var(--color-text-muted);
  padding: var(--space-lg) 0;
  font-style: italic;
  font-family: var(--font-elegant);
  font-size: 1.05rem;
}

/* Cart item */
.cart-item {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  padding: var(--space-sm) 0;
  border-bottom: 1px solid var(--color-border);
}

.cart-item__img {
  width: 64px;
  height: 64px;
  object-fit: contain;
  border-radius: var(--radius-sm);
  background: var(--color-cream);
  flex-shrink: 0;
}

.cart-item__info {
  flex: 1;
}

.cart-item__name {
  font-family: var(--font-serif);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--color-brown-dark);
}

.cart-item__size {
  font-size: 0.78rem;
  color: var(--color-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.cart-item__price {
  font-family: var(--font-serif);
  font-size: 1rem;
  font-weight: 600;
  color: var(--color-brown-dark);
  white-space: nowrap;
}

.cart-item__remove {
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 0.85rem;
  color: var(--color-text-muted);
  transition: background-color var(--transition-fast), color var(--transition-fast);
}

.cart-item__remove:hover {
  background-color: #fde8e8;
  color: #c0392b;
}

.cart-drawer__footer {
  padding: var(--space-md);
  border-top: 1px solid var(--color-border);
  background: var(--color-cream);
}

.cart-drawer__footer[hidden] {
  display: none;
}

.cart-total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--color-brown-dark);
  margin-bottom: var(--space-sm);
}

.cart-checkout-note {
  font-size: 0.8rem;
  color: var(--color-text-muted);
  margin-bottom: var(--space-sm);
  line-height: 1.5;
}

.cart-checkout-btn {
  width: 100%;
}


/* ----------------------------------------------------------------
   17. CART TOGGLE BUTTON (floating)
   ---------------------------------------------------------------- */
.cart-toggle {
  position: fixed;
  bottom: var(--space-md);
  right: var(--space-md);
  z-index: 1500;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--color-amber);
  color: var(--color-white);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(200, 134, 10, 0.45);
  transition: background-color var(--transition-fast), transform var(--transition-fast), box-shadow var(--transition-fast);
  border: none;
  cursor: pointer;
}

.cart-toggle:hover {
  background-color: var(--color-amber-hover);
  transform: scale(1.08);
  box-shadow: 0 6px 28px rgba(200, 134, 10, 0.55);
}

.cart-count {
  position: absolute;
  top: -4px;
  right: -4px;
  min-width: 20px;
  height: 20px;
  border-radius: var(--radius-pill);
  background: var(--color-brown-dark);
  color: var(--color-white);
  font-size: 0.7rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 4px;
  border: 2px solid var(--color-white);
  transition: transform var(--transition-fast);
}

.cart-count.bump {
  animation: bump 0.3s ease;
}

@keyframes bump {
  0%, 100% { transform: scale(1); }
  50%       { transform: scale(1.4); }
}


/* ----------------------------------------------------------------
   18. ANIMATIONS & TRANSITIONS
   ---------------------------------------------------------------- */

/* Scroll-reveal: elements start hidden, JS adds .visible */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }


/* ----------------------------------------------------------------
   19. RESPONSIVE — TABLET (max-width: 900px)
   ---------------------------------------------------------------- */
@media (max-width: 900px) {

  :root {
    --space-xl:  4rem;
    --space-xxl: 6rem;
  }

  /* Nav */
  .nav-links,
  .nav-cta {
    display: none;
  }

  .nav-toggle {
    display: flex;
  }

  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: var(--nav-height);
    left: 0;
    right: 0;
    background: var(--color-cream);
    padding: var(--space-md);
    border-bottom: 1px solid var(--color-border);
    box-shadow: var(--shadow-md);
    gap: 0.25rem;
    z-index: 999;
  }

  .nav-links.open > li > a {
    padding: 0.75rem 1rem;
    font-size: 1rem;
  }

  .nav-links.open .nav-cta-mobile {
    display: inline-flex;
    margin-top: var(--space-sm);
    align-self: flex-start;
  }

  .dropdown-menu {
    position: static;
    transform: none;
    opacity: 1;
    visibility: visible;
    box-shadow: none;
    border: none;
    padding: 0 0 0 1rem;
    background: transparent;
  }

  /* Hero */
  .hero-content {
    padding: var(--space-md) var(--space-md) var(--space-lg);
  }

  /* Product cards */
  .product-cards {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-md);
  }

  /* Story */
  .story-inner {
    grid-template-columns: 1fr;
    gap: var(--space-lg);
  }

  .story-img {
    height: 320px;
  }

  /* Beekeeper */
  .beekeeper-inner {
    grid-template-columns: 1fr;
    gap: var(--space-lg);
  }

  .beekeeper-img {
    height: 360px;
  }

  /* Contact */
  .contact-inner {
    grid-template-columns: 1fr;
    gap: var(--space-lg);
  }

  /* Footer */
  .footer-inner {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-md);
  }

  .footer-brand {
    grid-column: 1 / -1;
  }
}


/* ----------------------------------------------------------------
   20. RESPONSIVE — MOBILE (max-width: 600px)
   ---------------------------------------------------------------- */
@media (max-width: 600px) {

  :root {
    --space-lg:  2.5rem;
    --space-xl:  3rem;
    --nav-height: 68px;
  }

  /* Hero */
  .hero-buttons {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-buttons .btn {
    text-align: center;
    justify-content: center;
  }

  /* Features */
  .features-grid {
    grid-template-columns: 1fr;
    gap: var(--space-sm);
  }

  /* Product cards — stack on mobile */
  .product-cards {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin: 0 auto;
  }

  .product-card__image-wrap {
    min-height: 220px;
  }

  .product-card__img {
    max-width: 200px;
    height: 200px;
  }

  /* Story */
  .story-img {
    height: 240px;
  }

  /* Beekeeper */
  .beekeeper-img {
    height: 280px;
  }

  /* Contact form */
  .contact-form {
    padding: var(--space-md);
  }

  /* Footer */
  .footer-inner {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
  }

  /* Cart drawer */
  .cart-drawer__panel {
    max-width: 100%;
  }

  /* Shop note */
  .shop-note {
    font-size: 0.8rem;
    line-height: 1.8;
  }
}
