:root {
  /* Core honey */
  --honey-500: #e0a13c;
  --honey-600: #c9822b;
  --honey-300: #f3c86b;
  --honey-100: #fbefd6;

  /* Naturals / earth */
  --forest-700: #2f3b2e;
  --forest-800: #232c22;
  --bark-600: #5a4632;
  --brown-800: #2c2019;
  --brown-900: #211812;
  --cream-50: #fbf8f1;
  --cream-100: #f5efe2;
  --white: #ffffff;

  /* Support */
  --sage-400: #8fa382;
  --ink-900: #1c1a17;

  /* Semantic */
  --bg: var(--cream-50);
  --surface: #ffffff;
  --surface-warm: #fdfaf3;
  --text: var(--ink-900);
  --muted: #6b6154;
  --accent: var(--honey-500);
  --accent-strong: var(--honey-600);
  --border: #ece3d3;

  --shadow-sm: 0 2px 10px rgba(47, 59, 46, 0.05);
  --shadow: 0 24px 60px -20px rgba(90, 70, 50, 0.22);
  --shadow-lg: 0 40px 90px -30px rgba(90, 70, 50, 0.3);
  --radius: 4px;
  --radius-lg: 4px;
  --radius-sm: 3px;
  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
body {
  margin: 0;
  font-family: 'Inter', system-ui, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.7;
  font-size: 1.02rem;
}

h1, h2, h3 {
  font-family: 'Fraunces', 'Cormorant Garamond', Georgia, serif;
  font-weight: 500;
  line-height: 1.12;
  letter-spacing: -0.01em;
  color: var(--forest-700);
  margin: 0 0 0.6rem;
}
h1 { font-size: clamp(2.6rem, 6vw, 4.6rem); }
h2 { font-size: clamp(1.9rem, 3.6vw, 2.9rem); }
h3 { font-size: 1.3rem; }
p { margin: 0 0 1rem; }

a { color: inherit; text-decoration: none; }
img { display: block; width: 100%; height: auto; object-fit: cover; }
.container { width: min(1200px, calc(100% - 2.5rem)); margin: 0 auto; }

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: 0.74rem;
  font-weight: 600;
  color: var(--accent-strong);
  margin: 0 0 0.9rem;
}
.lead { font-size: 1.15rem; color: var(--muted); }

.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;
}
.skip-link {
  position: absolute; left: -999px; top: 0;
  background: var(--forest-700); color: white; padding: 0.75rem 1rem; z-index: 100; border-radius: 0 0 10px 0;
}
.skip-link:focus { left: 0; top: 0; }

/* Reveal animation — only hide when JS is active, so content is never stuck invisible */
.js [data-reveal] {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}
.js [data-reveal].is-visible { opacity: 1; transform: none; }
/* Safety net: if the observer never fires, reveal everything after a short delay */
.js [data-reveal] { animation: revealFallback 0s linear 2.5s forwards; }
@keyframes revealFallback { to { opacity: 1; transform: none; } }
[data-reveal].is-visible { animation: none; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  [data-reveal] { opacity: 1 !important; transform: none !important; transition: none; }
}

/* Announcement bar */
.announcement-bar { background: var(--forest-700); color: var(--cream-50); text-align: center; font-size: 0.82rem; letter-spacing: 0.02em; }
.announcement-bar p { margin: 0; padding: 0.55rem 0; }
.announcement-bar .container { display: flex; justify-content: center; }

/* Header */
.site-header {
  position: sticky; top: 0; z-index: 30;
  backdrop-filter: blur(16px);
  background: rgba(251, 248, 241, 0.82);
  border-bottom: 1px solid var(--border);
}
.nav-actions { display: flex; align-items: center; gap: 1rem; }
.lang-toggle { display: inline-flex; gap: 0.35rem; font-size: 0.85rem; font-weight: 600; color: var(--muted); }
.lang-toggle a { color: var(--muted); }
.lang-toggle a.active { color: var(--forest-700); }
.btn-sm { padding: 0.6rem 1.1rem; font-size: 0.88rem; }
.nav-shell { display: flex; align-items: center; justify-content: space-between; padding: 1.1rem 0; gap: 1rem; }
.brand { display: inline-flex; align-items: center; gap: 0.6rem; font-family: 'Fraunces', serif; font-weight: 600; font-size: 1.25rem; letter-spacing: 0.01em; color: var(--forest-700); }
.brand-logo { height: 52px; width: auto; }
.footer-brand .brand-logo { height: 58px; }
.brand-mark { display: inline-grid; place-items: center; width: 2.1rem; height: 2.1rem; border-radius: 999px; background: linear-gradient(135deg, var(--honey-500), var(--honey-300)); color: var(--forest-800); box-shadow: var(--shadow-sm); font-size: 0.9rem; }
.site-nav { display: flex; align-items: center; gap: 1.4rem; font-size: 0.94rem; }
.site-nav a { color: var(--muted); font-weight: 500; position: relative; padding: 0.2rem 0; }
.site-nav a::after { content: ''; position: absolute; left: 0; bottom: -2px; width: 0; height: 2px; background: var(--accent); transition: width 0.3s var(--ease); }
.site-nav a.active, .site-nav a:hover { color: var(--forest-700); }
.site-nav a.active::after, .site-nav a:hover::after { width: 100%; }
/* Nav dropdown */
.nav-dropdown { position: relative; }
.nav-dropdown > a::after, .nav-dropdown > .nav-dropdown-toggle::after { content: '▾'; font-size: 0.7em; margin-left: 0.3rem; opacity: 0.7; }
.nav-dropdown-menu { position: absolute; top: 100%; left: 50%; transform: translateX(-50%) translateY(8px); min-width: 210px; background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); box-shadow: var(--shadow); padding: 0.5rem; display: flex; flex-direction: column; gap: 0.1rem; opacity: 0; visibility: hidden; transition: opacity 0.2s var(--ease), transform 0.2s var(--ease); z-index: 40; }
.nav-dropdown:hover .nav-dropdown-menu, .nav-dropdown:focus-within .nav-dropdown-menu { opacity: 1; visibility: visible; transform: translateX(-50%) translateY(2px); }
.nav-dropdown-menu a { padding: 0.55rem 0.8rem; border-radius: var(--radius-sm); font-size: 0.92rem; }
.nav-dropdown-menu a::after { display: none; }
.nav-dropdown-menu a:hover { background: var(--cream-100); color: var(--forest-700); }
.menu-toggle { display: none; background: none; border: 0; padding: 0.25rem; cursor: pointer; }
.menu-toggle span { display: block; width: 1.5rem; height: 2px; background: var(--forest-700); margin: 0.28rem 0; transition: 0.3s var(--ease); }

/* Buttons */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.4rem;
  padding: 0.95rem 1.7rem; border-radius: var(--radius-sm); font-weight: 600; font-size: 0.98rem;
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease), background 0.25s var(--ease);
  cursor: pointer; border: 1.5px solid transparent;
}
.btn-primary { background: var(--accent); color: var(--forest-800); box-shadow: 0 12px 30px -10px rgba(224, 161, 60, 0.7); }
.btn-primary:hover { background: var(--accent-strong); transform: translateY(-2px); box-shadow: 0 18px 40px -12px rgba(201, 130, 43, 0.75); }
.btn-secondary { background: transparent; border-color: var(--forest-700); color: var(--forest-700); }
.btn-secondary:hover { background: var(--forest-700); color: var(--cream-50); transform: translateY(-2px); }

/* Hero */
.hero-fullscreen { position: relative; min-height: 92vh; display: flex; align-items: center; overflow: hidden; }
.hero-background { position: absolute; inset: 0; z-index: 0; }
.hero-background img { width: 100%; height: 100%; object-fit: cover; transform: scale(1.05); animation: heroZoom 18s var(--ease) forwards; }
@keyframes heroZoom { to { transform: scale(1); } }
.hero-background::after { content: ''; position: absolute; inset: 0; background: linear-gradient(105deg, rgba(35, 44, 34, 0.82) 0%, rgba(35, 44, 34, 0.5) 45%, rgba(35, 44, 34, 0.15) 100%); }
.hero-content { position: relative; z-index: 1; padding: 8rem 0 6rem; }
.hero-copy { max-width: 680px; color: white; }
.hero-copy .eyebrow { color: var(--honey-300); }
.hero-copy h1 { color: white; }
.hero-copy .lead { color: rgba(255, 255, 255, 0.9); max-width: 560px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 0.9rem; margin: 1.8rem 0 1.6rem; }
.hero-copy .btn-secondary { border-color: rgba(255, 255, 255, 0.6); color: white; }
.hero-copy .btn-secondary:hover { background: white; color: var(--forest-700); }
.hero-badges { display: flex; flex-wrap: wrap; gap: 0.6rem; margin-top: 1.6rem; }
.hero-badges span { padding: 0.5rem 1rem; border-radius: 999px; background: rgba(255, 255, 255, 0.12); border: 1px solid rgba(255, 255, 255, 0.28); color: white; font-size: 0.86rem; letter-spacing: 0.02em; backdrop-filter: blur(4px); }

/* Sections */
.section { padding: 6rem 0; }
.section-alt { background: var(--cream-100); }
.section-heading { margin-bottom: 3rem; }
.section-heading.centered { text-align: center; max-width: 720px; margin-left: auto; margin-right: auto; }

.intro-band { padding: 4.5rem 0; }
.intro-card {
  display: grid; grid-template-columns: 1fr 1fr; gap: 2.5rem; align-items: center;
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-lg);
  padding: 3rem; box-shadow: var(--shadow);
}
.intro-card h2 { margin: 0; }
.intro-card p { margin: 0; color: var(--muted); font-size: 1.08rem; }

/* Cards */
.card-grid { display: grid; gap: 1.6rem; }
.three-up { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.card { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm); transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease), border-color 0.35s var(--ease); }
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.product-card { transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease), border-color 0.35s var(--ease); }
.product-card:hover { border-color: var(--brown-800); }
.card .img-wrap { overflow: hidden; }
.card img { aspect-ratio: 4 / 3; transition: transform 0.6s var(--ease); }
.card:hover img { transform: scale(1.05); }
.card-body { padding: 1.5rem 1.6rem 1.7rem; }
.card-body p { color: var(--muted); }
.card-link { color: var(--accent-strong); font-weight: 600; display: inline-flex; align-items: center; gap: 0.35rem; }
.card-link::after { content: '→'; transition: transform 0.25s var(--ease); }
.card:hover .card-link::after { transform: translateX(4px); }

/* Story */
.story-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: center; }
.story-image-wrap { position: relative; }
.story-image-wrap img { border-radius: var(--radius-lg); min-height: 420px; box-shadow: var(--shadow-lg); }
.story-list { display: grid; gap: 0.9rem; margin-top: 1.6rem; }
.story-list > div { padding: 1rem 1.2rem; border: 1px solid var(--border); border-radius: var(--radius); background: var(--surface); display: flex; gap: 0.9rem; align-items: baseline; }
.story-list strong { color: var(--forest-700); font-family: 'Fraunces', serif; font-size: 1.05rem; min-width: 84px; }
.story-list span { color: var(--muted); }

/* Stats */
.stats-row { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 1.4rem; }
.stat-card { background: var(--surface-warm); border: 1px solid var(--border); border-radius: var(--radius); padding: 2rem 1.5rem; text-align: center; }
.stat-card strong { display: block; font-family: 'Fraunces', serif; font-size: 2rem; margin-bottom: 0.4rem; color: var(--accent-strong); font-weight: 500; }
.stat-card span { color: var(--muted); }

/* Pickup */
.pickup-grid, .consult-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: center; }
.pickup-card { padding-right: 1rem; }
.pickup-card > p { color: var(--muted); }
.pickup-details { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin: 1.6rem 0 2rem; }
.pickup-details p { margin: 0; padding: 1rem 1.2rem; background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); }
.pickup-details strong { color: var(--forest-700); }
.pickup-image img { border-radius: var(--radius-lg); min-height: 420px; box-shadow: var(--shadow-lg); }

/* FAQ */
.faq-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1.2rem; }
.faq-card { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); padding: 1.6rem; box-shadow: var(--shadow-sm); }
.faq-card h3 { color: var(--forest-700); }
.faq-card p { margin: 0; color: var(--muted); }

/* Consult */
.consult-copy p { color: var(--muted); }
.consult-media .img-wrap { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-lg); }
.consult-media img { aspect-ratio: 3 / 4; transition: transform 0.7s var(--ease); }
.consult-grid:hover .consult-media img { transform: scale(1.03); }
.consult-card { background: var(--forest-700); color: var(--cream-50); border-radius: var(--radius-lg); padding: 2.5rem; box-shadow: var(--shadow); }
.consult-card h3 { color: var(--honey-300); }
.consult-card p { color: rgba(255, 255, 255, 0.82); margin: 0; }

/* Blog */
.blog-card { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); padding: 1.8rem; box-shadow: var(--shadow-sm); transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease); }
.blog-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.blog-card p { color: var(--muted); }

/* Newsletter */
.newsletter-section { padding-bottom: 6rem; }
.newsletter-card {
  background: linear-gradient(135deg, var(--forest-700), var(--forest-800));
  border-radius: var(--radius-lg); padding: 3.5rem; box-shadow: var(--shadow-lg);
  display: grid; grid-template-columns: 1.3fr 1fr; gap: 2.5rem; align-items: center;
  position: relative; overflow: hidden;
}
.newsletter-card::before { content: ''; position: absolute; top: -40%; right: -10%; width: 380px; height: 380px; background: radial-gradient(circle, rgba(224, 161, 60, 0.35), transparent 70%); }
.newsletter-card::after { content: ''; position: absolute; inset: 0; z-index: 0; opacity: 0.5; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='56' height='100' viewBox='0 0 56 100'%3E%3Cg fill='none' stroke='%23e0a13c' stroke-opacity='0.12' stroke-width='1.5'%3E%3Cpath d='M28 0l24 14v28L28 56 4 42V14z'/%3E%3Cpath d='M28 44l24 14v28L28 100 4 86V58z'/%3E%3C/g%3E%3C/svg%3E"); background-size: 44px auto; }
.newsletter-card > * { position: relative; z-index: 1; }
.newsletter-card > div { position: relative; }
.newsletter-card .eyebrow { color: var(--honey-300); }
.newsletter-card h2 { color: white; }
.newsletter-card p { color: rgba(255, 255, 255, 0.82); margin: 0; }
.newsletter-form { position: relative; display: flex; gap: 0.6rem; flex-wrap: wrap; }
.newsletter-form input { flex: 1 1 200px; padding: 0.95rem 1.2rem; border-radius: var(--radius-sm); border: 1.5px solid rgba(255, 255, 255, 0.25); background: rgba(255, 255, 255, 0.08); color: white; font-size: 0.98rem; }
.newsletter-form input::placeholder { color: rgba(255, 255, 255, 0.55); }
.newsletter-form input:focus { outline: none; border-color: var(--honey-300); background: rgba(255, 255, 255, 0.14); }

/* Ratings & price */
.rating-row { display: flex; align-items: center; gap: 0.5rem; margin-bottom: 0.9rem; }
.rating-row.small { margin: 0.3rem 0 0.5rem; font-size: 0.86rem; }
.stars { color: var(--honey-500); letter-spacing: 0.08em; }
.rating-text { color: var(--muted); font-size: 0.88rem; }
.price { font-family: 'Fraunces', serif; font-size: 1.6rem; color: var(--forest-700); margin: 0 0 1rem; }
.price-currency { font-size: 0.9rem; color: var(--muted); font-family: 'Inter', sans-serif; }
.card-price { font-weight: 600; color: var(--forest-700); margin: 0.2rem 0 0.8rem; }

/* Featured product */
.featured-section { padding-top: 4.5rem; }
.featured-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3.5rem; align-items: center; }
.featured-media .img-wrap { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg); }
.featured-media img { aspect-ratio: 4 / 5; }
.featured-info h2 { margin-bottom: 0.3rem; }
.featured-info > p { color: var(--muted); }
.option-group { display: grid; gap: 1rem; margin: 1.4rem 0; }
.option-label { display: block; font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.14em; color: var(--muted); margin-bottom: 0.5rem; }
.option-values { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.option-values span { padding: 0.45rem 0.9rem; border: 1.5px solid var(--border); border-radius: var(--radius-sm); font-size: 0.9rem; background: var(--surface); color: var(--forest-700); }
.featured-actions { display: flex; flex-wrap: wrap; gap: 0.8rem; margin-top: 1.6rem; }

/* Product detail page */
.breadcrumb { font-size: 0.85rem; color: var(--muted); margin-bottom: 1.5rem; }
.breadcrumb a { color: var(--muted); }
.breadcrumb a:hover { color: var(--forest-700); }
.breadcrumb span { color: var(--border); margin: 0 0.4rem; }
.pdp-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3.5rem; align-items: start; }
.pdp-media .img-wrap { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); }
.pdp-media img { aspect-ratio: 1 / 1; }
.pdp-thumbs { display: flex; gap: 0.7rem; margin-top: 0.8rem; }
.pdp-thumbs button { width: 68px; height: 68px; padding: 0; border: 1.5px solid var(--border); border-radius: var(--radius-sm); overflow: hidden; cursor: pointer; background: none; transition: border-color 0.25s var(--ease); }
.pdp-thumbs button.active, .pdp-thumbs button:hover { border-color: var(--brown-800); }
.pdp-thumbs img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 1; }
.pdp-info h1 { font-size: clamp(2rem, 4vw, 2.8rem); margin-bottom: 0.4rem; }
.pdp-info .rating-row { margin-bottom: 1rem; }
.pdp-info .price { font-size: 1.8rem; margin-bottom: 1.2rem; }
.pdp-desc { color: var(--muted); margin-bottom: 1.6rem; }
.option-pills { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.option-pills button { padding: 0.5rem 1rem; border: 1.5px solid var(--border); border-radius: var(--radius-sm); background: var(--surface); color: var(--forest-700); font-family: 'Inter', sans-serif; font-size: 0.92rem; cursor: pointer; transition: border-color 0.2s var(--ease), background 0.2s var(--ease); }
.option-pills button:hover { border-color: var(--brown-800); }
.option-pills button.selected { background: var(--forest-700); color: var(--cream-50); border-color: var(--forest-700); }
.qty-row { display: flex; align-items: center; gap: 1rem; margin: 1.6rem 0; }
.qty-stepper { display: inline-flex; align-items: center; border: 1.5px solid var(--border); border-radius: var(--radius-sm); overflow: hidden; }
.qty-stepper button { width: 2.6rem; height: 2.6rem; border: 0; background: var(--surface); color: var(--forest-700); font-size: 1.2rem; cursor: pointer; transition: background 0.2s var(--ease); }
.qty-stepper button:hover { background: var(--cream-100); }
.qty-stepper input { width: 3rem; text-align: center; border: 0; border-left: 1.5px solid var(--border); border-right: 1.5px solid var(--border); font-family: 'Inter', sans-serif; font-size: 1rem; color: var(--forest-700); -moz-appearance: textfield; }
.qty-stepper input::-webkit-outer-spin-button, .qty-stepper input::-webkit-inner-spin-button { -webkit-appearance: none; margin: 0; }
.pdp-actions { display: flex; flex-wrap: wrap; gap: 0.8rem; margin-bottom: 1.8rem; }
.pdp-highlights { list-style: none; padding: 1.4rem 0 0; margin: 1.4rem 0 0; border-top: 1px solid var(--border); display: grid; gap: 0.6rem; }
.pdp-highlights li { display: flex; align-items: center; gap: 0.6rem; color: var(--bark-600); font-size: 0.96rem; }
.pdp-highlights svg { width: 1.15rem; height: 1.15rem; color: var(--sage-400); flex-shrink: 0; }
.pdp-highlights .highlight-tag { margin-top: 0.5rem; font-family: 'Fraunces', serif; font-style: italic; color: var(--forest-700); font-size: 1.05rem; }

/* Reviews list */
.reviews-summary { display: flex; align-items: center; gap: 1rem; justify-content: center; margin-bottom: 2.5rem; }
.reviews-summary .big-score { font-family: 'Fraunces', serif; font-size: 3rem; color: var(--forest-700); line-height: 1; }
.reviews-summary .stars { font-size: 1.2rem; }
.reviews-list { max-width: 820px; margin: 0 auto; display: grid; gap: 1.2rem; }
.review-item { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); padding: 1.6rem 1.8rem; display: grid; grid-template-columns: auto 1fr; gap: 1.2rem; align-items: start; }
.review-avatar { width: 2.6rem; height: 2.6rem; border-radius: 50%; background: var(--honey-100); color: var(--honey-600); display: grid; place-items: center; font-family: 'Fraunces', serif; font-weight: 600; }
.review-item .stars { font-size: 0.95rem; }
.review-item .review-name { font-weight: 600; color: var(--forest-700); margin: 0.3rem 0; }
.review-item .review-name .verified { font-weight: 500; }
.review-item p { color: var(--muted); margin: 0.3rem 0 0; }

/* Shop page */
.shop-toolbar { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 0.5rem; padding-bottom: 1.4rem; margin-bottom: 2rem; border-bottom: 1px solid var(--border); }
.shop-count { margin: 0; font-weight: 600; color: var(--forest-700); }
.shop-note { margin: 0; font-size: 0.9rem; color: var(--muted); }
.shop-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 1.8rem; }
.shop-card { display: flex; flex-direction: column; transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease), border-color 0.35s var(--ease); }
.shop-card:hover { border-color: var(--brown-800); }
.shop-card .img-wrap { overflow: hidden; }
.shop-card img { aspect-ratio: 1 / 1; transition: transform 0.6s var(--ease); }
.shop-card:hover img { transform: scale(1.05); }
.shop-card .card-body { padding: 1.4rem 1.4rem 1.6rem; display: flex; flex-direction: column; gap: 0.5rem; flex: 1; }
.shop-card h3 { color: var(--forest-700); font-size: 1.2rem; margin: 0; }
.shop-card h3 a { color: inherit; }
.shop-card h3 a:hover { color: var(--accent-strong); }
.shop-card .card-price { margin: 0 0 0.4rem; font-weight: 600; color: var(--forest-700); }
.btn-block { width: 100%; margin-top: auto; }
.related-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
/* Shop intro SEO copy */
.shop-intro { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: 3rem; align-items: center; }
.shop-intro-media .img-wrap { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-lg); }
.shop-intro-media img { aspect-ratio: 4 / 5; transition: transform 0.7s var(--ease); }
.shop-intro:hover .shop-intro-media img { transform: scale(1.03); }
.shop-intro-copy h2 { color: var(--forest-700); }
.shop-intro-copy p { color: var(--muted); }
.shop-intro-copy p:last-child { margin-bottom: 0; }
/* Static testimonials grid (shop page) */
.testimonials-static { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 1.6rem; }
.testimonials-static .testimonial-card { flex: none; }
.notice-actions { display: flex; flex-wrap: wrap; gap: 0.8rem; }

/* Product gallery */
.product-gallery { grid-template-columns: repeat(5, minmax(0, 1fr)); }
.product-gallery .card-body { padding: 1.1rem 1.2rem 1.3rem; }
.product-gallery h3 { font-size: 1.05rem; }

/* Brand story band */
.story-band { position: relative; overflow: hidden; text-align: center; padding: 7rem 0; }
.story-band-bg { position: absolute; inset: 0; z-index: 0; }
.story-band-bg img { width: 100%; height: 100%; object-fit: cover; }
.story-band::after { content: ''; position: absolute; inset: 0; z-index: 1; background: linear-gradient(180deg, rgba(35, 44, 34, 0.62), rgba(47, 59, 46, 0.72)); }
.story-band-inner { position: relative; z-index: 2; max-width: 760px; margin: 0 auto; }
.story-band .eyebrow { color: var(--honey-300); }
.story-band h2 { color: #fff; }
.story-band .lead { color: rgba(255, 255, 255, 0.9); }
.story-band-actions { margin-top: 2rem; }
.section-cta { display: flex; flex-wrap: wrap; gap: 0.9rem; justify-content: center; margin-top: 3rem; }

/* Benefits */
.benefits-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 1.4rem; }
.benefit-card { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); padding: 1.8rem 1.5rem; box-shadow: var(--shadow-sm); }
.benefits-section { position: relative; }
.benefits-section > .container { position: relative; z-index: 1; }
/* Faded beehive backdrop, now on the "ways to enjoy" section */
.enjoy-section { position: relative; overflow: hidden; }
.enjoy-bg { position: absolute; inset: 0; z-index: 0; }
.enjoy-bg img { width: 100%; height: 100%; object-fit: cover; opacity: 0.4; }
.enjoy-bg::after { content: ''; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(251,248,241,0.82) 0%, rgba(251,248,241,0.62) 45%, rgba(251,248,241,0.85) 100%); }
.enjoy-section > .container { position: relative; z-index: 1; }
.benefit-icon { display: inline-grid; place-items: center; width: 3.2rem; height: 3.2rem; margin-bottom: 1.1rem; border-radius: 50%; background: var(--honey-100); color: var(--honey-600); border: 1px solid var(--honey-300); }
.benefit-icon svg { width: 1.6rem; height: 1.6rem; }
.benefit-card h3 { color: var(--forest-700); margin-bottom: 0.5rem; }
.benefit-card p { color: var(--muted); margin: 0; font-size: 0.96rem; }

/* Where to buy, local pickup only */
.pickup-only-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: center; }
.pickup-only-media .img-wrap { overflow: hidden; border-radius: var(--radius); box-shadow: var(--shadow-lg); }
.pickup-only-media img { aspect-ratio: 4 / 5; transition: transform 0.6s var(--ease); }
.pickup-only-grid:hover .pickup-only-media img { transform: scale(1.03); }
.pickup-only-body h3 { color: var(--forest-700); }
.pickup-only-body > p { color: var(--muted); }
.pickup-only-body strong { color: var(--forest-700); }
.pickup-facts { list-style: none; padding: 0; margin: 1.6rem 0 2rem; display: grid; gap: 0.7rem; }
.pickup-facts li { display: grid; grid-template-columns: 130px 1fr; gap: 0.8rem; align-items: baseline; padding: 0.85rem 1.1rem; background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); }
.pickup-facts span { color: var(--muted); font-size: 0.9rem; }
.pickup-facts strong { color: var(--forest-700); font-weight: 600; }
.pickup-facts a { color: var(--accent-strong); }
.pickup-actions { display: flex; flex-wrap: wrap; gap: 0.8rem; }
.map-embed { position: relative; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-lg); aspect-ratio: 4 / 5; background: var(--cream-100); }
.map-embed iframe { width: 100%; height: 100%; display: block; }

/* FAQ accordion */
.faq-accordion { max-width: 820px; margin: 0 auto; display: grid; gap: 0.8rem; }
.faq-item { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); padding: 0 1.4rem; box-shadow: var(--shadow-sm); overflow: hidden; }
.faq-item summary { list-style: none; cursor: pointer; padding: 1.15rem 0; font-family: 'Fraunces', serif; font-size: 1.08rem; color: var(--forest-700); display: flex; justify-content: space-between; align-items: center; gap: 1rem; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: '+'; font-family: 'Inter', sans-serif; font-size: 1.4rem; color: var(--accent-strong); transition: transform 0.3s var(--ease); flex-shrink: 0; }
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item p { margin: 0 0 1.2rem; color: var(--muted); }

/* Dark FAQ section */
.faq-section { background: linear-gradient(180deg, var(--brown-800), var(--brown-900)); }
.faq-section .eyebrow { color: var(--honey-300); }
.faq-section h2 { color: #fff; }
.faq-section .faq-item { background: rgba(255,255,255,0.05); border-color: rgba(255,255,255,0.12); box-shadow: none; }
.faq-section .faq-item summary { color: var(--cream-50); }
.faq-section .faq-item summary::after { color: var(--honey-300); }
.faq-section .faq-item p { color: rgba(255,255,255,0.72); }
.faq-section .faq-item[open] { background: rgba(255,255,255,0.08); }

/* Trust strip */
.trust-strip { background: var(--forest-700); color: var(--cream-50); padding: 1.1rem 0; }
.trust-row { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 1rem 1.5rem; }
.trust-item { display: flex; align-items: center; gap: 0.6rem; font-size: 0.92rem; font-weight: 500; }
.trust-icon { width: 22px; height: 22px; flex-shrink: 0; color: var(--honey-300); }
@media (max-width: 760px) { .trust-row { justify-content: center; } .trust-item { flex: 1 1 45%; justify-content: center; } }

/* Harvest scarcity note */
.harvest-note { display: inline-flex; align-items: center; gap: 0.6rem; margin: 0 auto 2rem; padding: 0.6rem 1.1rem; background: var(--honey-100); border: 1px solid var(--honey-300); border-radius: 999px; color: var(--bark-600); font-size: 0.92rem; font-weight: 500; }
.harvest-dot { width: 9px; height: 9px; border-radius: 50%; background: var(--honey-600); box-shadow: 0 0 0 0 rgba(201,130,43,0.6); animation: pulseDot 2.2s var(--ease) infinite; flex-shrink: 0; }
@keyframes pulseDot { 0% { box-shadow: 0 0 0 0 rgba(201,130,43,0.55);} 70% { box-shadow: 0 0 0 8px rgba(201,130,43,0);} 100% { box-shadow: 0 0 0 0 rgba(201,130,43,0);} }
.product-gallery + .harvest-note, .container > .harvest-note { display: flex; width: fit-content; }
@media (prefers-reduced-motion: reduce) { .harvest-dot { animation: none; } }

/* Family story */
.family-grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 3.5rem; align-items: center; }
.family-media .img-wrap { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-lg); }
.family-media img { aspect-ratio: 4 / 5; transition: transform 0.7s var(--ease); }
.family-grid:hover .family-media img { transform: scale(1.03); }
.family-copy h2 { color: var(--forest-700); }
.family-copy p { color: var(--muted); }
.family-copy .btn { margin-top: 0.8rem; }

/* Ways to enjoy */
.enjoy-grid { display: grid; grid-template-columns: repeat(4, minmax(0,1fr)); gap: 1.2rem; }
.enjoy-tile { position: relative; overflow: hidden; border-radius: var(--radius); aspect-ratio: 1 / 1; box-shadow: var(--shadow-sm); isolation: isolate; }
.enjoy-tile img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s var(--ease); z-index: 0; }
.enjoy-tile::after { content: ''; position: absolute; inset: 0; z-index: 1; background: linear-gradient(180deg, rgba(58,42,28,0.42) 0%, rgba(58,42,28,0.55) 55%, rgba(44,32,25,0.8) 100%); transition: background 0.5s var(--ease); }
.enjoy-tile:hover img { transform: scale(1.06); }
.enjoy-tile:hover::after { background: linear-gradient(180deg, rgba(58,42,28,0.5) 0%, rgba(58,42,28,0.62) 55%, rgba(44,32,25,0.86) 100%); }
.enjoy-tile-body { position: absolute; z-index: 2; inset: 0; display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; padding: 1.6rem; color: #fff; }
.enjoy-tile h3 { color: #fff; font-size: 1.9rem; margin: 0; }
.enjoy-tile p { color: rgba(255,255,255,0.92); margin: 0.6rem 0 0; font-size: 0.94rem; line-height: 1.55; max-width: 22ch; max-height: 0; opacity: 0; overflow: hidden; transform: translateY(6px); transition: max-height 0.5s var(--ease), opacity 0.4s var(--ease), transform 0.5s var(--ease); }
.enjoy-tile::before { content: ''; position: absolute; z-index: 2; left: 50%; bottom: 40%; width: 34px; height: 2px; background: var(--honey-300); transform: translateX(-50%) scaleX(0); transform-origin: center; transition: transform 0.45s var(--ease); }
.enjoy-tile:hover::before, .enjoy-tile:focus-within::before { transform: translateX(-50%) scaleX(1); }
.enjoy-tile:hover p, .enjoy-tile:focus-within p { max-height: 8rem; opacity: 1; transform: none; }
/* Touch devices have no hover: always show the description */
@media (hover: none) {
  .enjoy-tile p { max-height: 8rem; opacity: 1; transform: none; }
  .enjoy-tile::before { transform: translateX(-50%) scaleX(1); }
}

/* How pickup works steps */
.steps-row { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 1.6rem; margin-top: 3rem; }
.step-card { position: relative; padding: 2rem 1.8rem 1.8rem; background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); box-shadow: var(--shadow-sm); }
.step-num { display: inline-grid; place-items: center; width: 2.4rem; height: 2.4rem; border-radius: 50%; background: var(--honey-500); color: var(--forest-800); font-family: 'Fraunces', serif; font-weight: 600; font-size: 1.2rem; margin-bottom: 0.9rem; }
.step-card h3 { color: var(--forest-700); }
.step-card p { color: var(--muted); margin: 0; }

/* Instagram */
.instagram-grid { display: grid; grid-template-columns: repeat(4, minmax(0,1fr)); gap: 1rem; }
.ig-tile { position: relative; display: block; border-radius: var(--radius); overflow: hidden; aspect-ratio: 1; box-shadow: var(--shadow-sm); }
.ig-tile img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s var(--ease); }
.ig-tile:hover img { transform: scale(1.08); }
.ig-overlay { position: absolute; inset: 0; display: grid; place-items: center; color: #fff; font-size: 1.6rem; background: rgba(35,44,34,0); opacity: 0; transition: 0.35s var(--ease); }
.ig-tile:hover .ig-overlay { background: rgba(35,44,34,0.4); opacity: 1; }
.instagram-cta { text-align: center; margin-top: 2rem; }

/* Testimonials */
.centered-rating { justify-content: center; margin-top: 0.6rem; }
/* Testimonials, faded honey bg */
.testimonials-section { position: relative; overflow: hidden; }
.testi-bg { position: absolute; inset: 0; z-index: 0; }
.testi-bg img { width: 100%; height: 100%; object-fit: cover; opacity: 0.4; }
.testi-bg::after { content: ''; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(251,248,241,0.72) 0%, rgba(251,248,241,0.5) 45%, rgba(251,248,241,0.75) 100%); }
.testimonials-section > .container, .testimonials-section > .testi-marquee { position: relative; z-index: 1; }

/* Generic faded-background section (reuses .testi-bg wash) */
.has-bg { position: relative; overflow: hidden; }
.has-bg > .container { position: relative; z-index: 1; }
.section-alt.has-bg .testi-bg::after { background: linear-gradient(180deg, rgba(245,239,226,0.78) 0%, rgba(245,239,226,0.58) 45%, rgba(245,239,226,0.8) 100%); }

/* Auto-scrolling marquee */
.testi-marquee { position: relative; z-index: 1; overflow: hidden; margin-top: 1rem; -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); }
.testi-track { display: flex; gap: 1.6rem; width: max-content; animation: marquee 42s linear infinite; }
.testi-marquee:hover .testi-track { animation-play-state: paused; }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) { .testi-track { animation: none; flex-wrap: wrap; width: auto; justify-content: center; } }

.testimonial-card { flex: 0 0 340px; background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); padding: 1.8rem; box-shadow: var(--shadow-sm); display: flex; flex-direction: column; gap: 0.85rem; position: relative; }
.testimonial-card::before { content: '\201C'; position: absolute; top: 0.3rem; right: 1.1rem; font-family: 'Fraunces', serif; font-size: 3rem; line-height: 1; color: var(--honey-100); }
.testimonial-card .stars { font-size: 1rem; position: relative; }
.testimonial-card blockquote { margin: 0; font-family: 'Fraunces', serif; font-size: 1.06rem; line-height: 1.5; color: var(--forest-700); position: relative; display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; }
.review-more { align-self: flex-start; background: none; border: 0; padding: 0; color: var(--accent-strong); font-weight: 600; font-size: 0.88rem; cursor: pointer; font-family: 'Inter', sans-serif; }
.review-more:hover { text-decoration: underline; }
.testimonial-card figcaption { margin-top: auto; padding-top: 0.3rem; }
.testimonial-card figcaption strong { display: block; color: var(--forest-700); }
.testimonial-card figcaption span { font-size: 0.85rem; color: var(--sage-400); font-weight: 600; }
.verified { display: inline-flex; align-items: center; gap: 0.3rem; }
.verified-check { width: 15px; height: 15px; flex-shrink: 0; }
.testi-cta { display: flex; flex-wrap: wrap; gap: 0.8rem; justify-content: center; margin-top: 2.5rem; }

/* Review modal */
.review-modal { position: fixed; inset: 0; z-index: 60; display: grid; place-items: center; padding: 1.5rem; }
.review-modal[hidden] { display: none; }
.review-modal-backdrop { position: absolute; inset: 0; background: rgba(35,44,34,0.55); backdrop-filter: blur(3px); animation: fadeIn 0.25s var(--ease); }
.review-modal-box { position: relative; z-index: 1; max-width: 540px; width: 100%; background: var(--surface); border-radius: var(--radius-lg); padding: 2.6rem; box-shadow: var(--shadow-lg); animation: popIn 0.3s var(--ease); }
.review-modal-box .stars { color: var(--honey-500); font-size: 1.2rem; }
.review-modal-box blockquote { margin: 1rem 0 1.4rem; font-family: 'Fraunces', serif; font-size: 1.35rem; line-height: 1.5; color: var(--forest-700); }
.review-modal-name { margin: 0; font-weight: 600; color: var(--forest-700); }
.review-modal-name span { display: block; font-weight: 500; font-size: 0.85rem; color: var(--sage-400); }
.review-modal-close { position: absolute; top: 1rem; right: 1rem; width: 2.2rem; height: 2.2rem; display: grid; place-items: center; border-radius: 50%; border: 1px solid var(--border); background: var(--cream-50); color: var(--forest-700); cursor: pointer; }
.review-modal-close svg { width: 1.1rem; height: 1.1rem; }
.review-modal-close:hover { background: var(--forest-700); color: var(--cream-50); border-color: var(--forest-700); }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
@keyframes popIn { from { opacity: 0; transform: translateY(14px) scale(0.98); } to { opacity: 1; transform: none; } }
@media (prefers-reduced-motion: reduce) { .review-modal-backdrop, .review-modal-box { animation: none; } }

/* Blog */
.blog-heading { display: flex; justify-content: space-between; align-items: flex-end; text-align: left; max-width: none; }
.blog-heading > div { margin: 0; }
.view-all { color: var(--accent-strong); font-weight: 600; white-space: nowrap; }
.blog-date { font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.12em; color: var(--accent-strong); margin-bottom: 0.5rem; }

/* ===== Interior page components ===== */
.page-hero { position: relative; padding: 5.5rem 0 4rem; background: linear-gradient(135deg, var(--honey-100), var(--cream-100)); border-bottom: 1px solid var(--border); }
.page-hero-content { max-width: 760px; }
.page-hero-content.centered { margin: 0 auto; text-align: center; }
.page-hero h1 { font-size: clamp(2.2rem, 5vw, 3.4rem); }
.page-hero p { color: var(--bark-600); font-size: 1.12rem; margin: 0; }
.hero-inline-actions { display: flex; flex-wrap: wrap; gap: 0.8rem; margin-top: 1.6rem; }

.two-column { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: center; }
.story-media .img-wrap { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-lg); }
.story-media img { aspect-ratio: 4 / 5; transition: transform 0.7s var(--ease); }
.two-column:hover .story-media img { transform: scale(1.03); }
.two-column h2 { color: var(--forest-700); }
.two-column > div > p { color: var(--muted); }
.two-up { grid-template-columns: repeat(2, minmax(0, 1fr)); }

.info-card { padding: 1.8rem; }
.info-card h3 { color: var(--forest-700); margin-bottom: 0.5rem; }
.info-card p { color: var(--muted); margin: 0; }

.product-detail-card { display: flex; flex-direction: column; }
.product-detail-card .card-body { padding: 1.7rem; }
.product-detail-card h3 { color: var(--forest-700); }
.product-detail-card p { color: var(--muted); }
.product-detail-card ul { margin: 1rem 0 0; padding-left: 1.1rem; color: var(--muted); display: grid; gap: 0.4rem; }
.product-detail-card img { aspect-ratio: 4 / 3; }

.contact-card { padding: 2rem; }
.contact-card h2 { color: var(--forest-700); font-size: 1.5rem; }
.contact-card p { color: var(--muted); }
.contact-card strong { color: var(--forest-700); }
.contact-card a.btn { margin-top: 0.6rem; }
.contact-layout { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: 2rem; align-items: start; }
.contact-info a { color: var(--accent-strong); }
/* Visit us / map on contact page */
.visit-grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 3rem; align-items: center; }
.visit-map .map-embed { aspect-ratio: 4 / 3; }
.visit-info h3 { color: var(--forest-700); }
.visit-info > p { color: var(--muted); }
.visit-info .eyebrow { margin-bottom: 0.5rem; }
.contact-info p:first-of-type { margin-bottom: 1.4rem; }
.contact-form { display: grid; gap: 1.1rem; }
.contact-form .field { display: grid; gap: 0.4rem; }
.contact-form label { font-size: 0.85rem; font-weight: 600; color: var(--forest-700); }
.contact-form label span { color: var(--accent-strong); }
.contact-form input, .contact-form textarea { width: 100%; padding: 0.8rem 1rem; border: 1.5px solid var(--border); border-radius: var(--radius-sm); background: var(--surface); font-family: 'Inter', sans-serif; font-size: 0.98rem; color: var(--text); transition: border-color 0.25s var(--ease); }
.contact-form input:focus, .contact-form textarea:focus { outline: none; border-color: var(--accent); }
.contact-form textarea { resize: vertical; min-height: 120px; }
.contact-form .btn { justify-self: start; }
.form-note { font-size: 0.85rem; color: var(--muted); margin: 0.2rem 0 0; }
.form-success { color: var(--forest-700); font-weight: 600; margin: 0; }
.map-card { overflow: hidden; }
.map-card img { aspect-ratio: 4 / 3; min-height: 320px; }

.notice-card { background: var(--forest-700); color: var(--cream-50); border-radius: var(--radius-lg); padding: 3rem; box-shadow: var(--shadow); display: grid; grid-template-columns: 1.3fr 1fr auto; gap: 2rem; align-items: center; }
.notice-card h2 { color: #fff; margin: 0; }
.notice-card p { color: rgba(255,255,255,0.85); margin: 0; }
.notice-card .eyebrow { color: var(--honey-300); }

/* Beekeeping services page */
.consult-includes { max-width: 720px; margin: 3rem auto 0; text-align: center; }
.consult-includes h3 { color: var(--forest-700); margin-bottom: 1.2rem; }
.includes-list { list-style: none; padding: 0; margin: 0 0 1.6rem; display: grid; gap: 0.7rem; text-align: left; }
.includes-list li { display: flex; align-items: flex-start; gap: 0.7rem; color: var(--bark-600); }
.includes-list svg { width: 1.2rem; height: 1.2rem; color: var(--sage-400); flex-shrink: 0; margin-top: 0.2rem; }
.consult-includes .includes-list { max-width: 460px; margin-left: auto; margin-right: auto; }
.swarm-benefits { padding: 2rem; }
.swarm-benefits h3 { color: var(--forest-700); margin-bottom: 1.2rem; }
.swarm-benefits .includes-list { margin-bottom: 1.2rem; }
.swarm-note { color: var(--muted); font-size: 0.95rem; margin: 0 0 0.8rem; }
.swarm-warning { color: var(--bark-600); font-size: 0.92rem; font-weight: 600; margin: 0; padding: 0.8rem 1rem; background: var(--honey-100); border-radius: var(--radius); }

/* Blog index cards (with cover image) */
.blog-post-card { overflow: hidden; display: flex; flex-direction: column; transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease), border-color 0.35s var(--ease); }
.blog-post-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-color: var(--brown-800); }
.blog-post-card .img-wrap { display: block; overflow: hidden; }
.blog-post-card img { aspect-ratio: 16 / 10; transition: transform 0.6s var(--ease); }
.blog-post-card:hover img { transform: scale(1.05); }
.blog-post-card .card-body { padding: 1.4rem 1.5rem 1.6rem; display: flex; flex-direction: column; flex: 1; }
.blog-post-card h3 { font-size: 1.2rem; margin: 0.3rem 0 0.5rem; }
.blog-post-card h3 a { color: var(--forest-700); }
.blog-post-card h3 a:hover { color: var(--accent-strong); }
.blog-post-card > .card-body > p { color: var(--muted); font-size: 0.96rem; }
.blog-post-card .card-link { margin-top: auto; }

/* Blog post (article) */
.article-hero { padding: 4rem 0 2rem; }
.article-hero .container { max-width: 780px; }
.article-meta { font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.12em; color: var(--accent-strong); margin-bottom: 1rem; }
.article-hero h1 { font-size: clamp(2rem, 4.5vw, 3.2rem); }
.article-lead { font-size: 1.2rem; color: var(--bark-600); margin-top: 1rem; }
.article-cover { max-width: 980px; margin: 0 auto 3rem; }
.article-cover .img-wrap { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); }
.article-cover img { aspect-ratio: 16 / 8; }
.article-body { max-width: 720px; margin: 0 auto; font-size: 1.08rem; }
.article-body h2 { font-size: 1.7rem; margin: 2.4rem 0 0.8rem; color: var(--forest-700); }
.article-body h3 { font-size: 1.25rem; margin: 1.8rem 0 0.6rem; color: var(--forest-700); }
.article-body p { color: var(--text); margin: 0 0 1.2rem; line-height: 1.75; }
.article-body ul, .article-body ol { color: var(--text); margin: 0 0 1.4rem; padding-left: 1.3rem; line-height: 1.7; }
.article-body li { margin-bottom: 0.5rem; }
.article-body strong { color: var(--forest-700); }
.article-body a { color: var(--accent-strong); text-decoration: underline; }
.article-callout { background: var(--honey-100); border: 1px solid var(--honey-300); border-radius: var(--radius); padding: 1.4rem 1.6rem; margin: 2rem 0; }
.article-callout p { margin: 0; color: var(--bark-600); }
.article-table-wrap { overflow-x: auto; margin: 1.6rem 0; }
.article-body table { width: 100%; border-collapse: collapse; font-size: 0.96rem; }
.article-body th, .article-body td { text-align: left; padding: 0.7rem 0.9rem; border-bottom: 1px solid var(--border); vertical-align: top; }
.article-body thead th { background: var(--cream-100); color: var(--forest-700); font-weight: 600; }
.article-body tbody tr:last-child td { border-bottom: 0; }
.article-body table { border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; }
.article-cta { text-align: center; margin: 3rem auto 0; max-width: 720px; padding-top: 2rem; border-top: 1px solid var(--border); }
.article-cta p { color: var(--muted); margin-bottom: 1rem; }
.related-posts { margin-top: 1rem; }

/* End-of-article product upsell (full-bleed out of the narrow article column) */
.product-upsell {
  margin: 4rem calc(50% - 50vw) 0;
  width: 100vw;
  max-width: 100vw;
  border-radius: 0;
  border: 0;
  border-top: 1px solid var(--border);
  background: linear-gradient(135deg, #fffdf8 0%, var(--honey-100) 100%);
  box-shadow: none;
  overflow: hidden;
}
.product-upsell__inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 5vw, 4rem);
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(1.5rem, 4vw, 3.5rem);
  align-items: center;
}
.product-upsell__media { display: block; position: relative; background: var(--honey-100); border-radius: var(--radius); overflow: hidden; aspect-ratio: 1 / 1; box-shadow: var(--shadow); }
.product-upsell__media img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.6s ease; }
.product-upsell:hover .product-upsell__media img { transform: scale(1.04); }
.product-upsell__body { padding: clamp(2.5rem, 5vw, 4rem) 0; display: flex; flex-direction: column; gap: 0.6rem; }
.product-upsell__eyebrow {
  font-size: 0.75rem; letter-spacing: 0.16em; text-transform: uppercase;
  font-weight: 600; color: var(--honey-600); margin: 0;
}
.product-upsell__title { font-family: 'Fraunces', serif; font-size: clamp(1.9rem, 3vw, 2.6rem); line-height: 1.08; color: var(--forest-700); margin: 0.2rem 0 0; }
.product-upsell__desc { color: var(--bark-600, var(--muted)); font-size: 1.02rem; line-height: 1.6; margin: 0.5rem 0 0.3rem; max-width: 46ch; }
.product-upsell__points { list-style: none; margin: 0.3rem 0 0; padding: 0; display: grid; gap: 0.45rem; }
.product-upsell__points li { position: relative; padding-left: 1.6rem; font-size: 0.9rem; color: var(--forest-700); line-height: 1.4; }
.product-upsell__points li::before {
  content: ''; position: absolute; left: 0; top: 0.05em;
  width: 1.05rem; height: 1.05rem; border-radius: 999px;
  background: var(--honey-500);
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 6 9 17l-5-5'/%3E%3C/svg%3E") center / 0.7rem no-repeat;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 6 9 17l-5-5'/%3E%3C/svg%3E") center / 0.7rem no-repeat;
}
.product-upsell__meta {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between;
  gap: 0.5rem 1rem; margin-top: 0.9rem; padding-top: 0.9rem; border-top: 1px solid rgba(201, 130, 43, 0.18);
}
.product-upsell__rating { font-size: 0.82rem; color: var(--muted); display: inline-flex; align-items: center; gap: 0.4rem; }
.product-upsell__rating .stars { color: var(--honey-500); font-size: 0.9rem; letter-spacing: 0.04em; }
.product-upsell__price { font-size: 1rem; color: var(--forest-700); }
.product-upsell__price strong { font-size: 1.25rem; font-family: 'Fraunces', serif; }
.product-upsell__actions { display: flex; flex-wrap: wrap; gap: 0.7rem; margin-top: 1.1rem; }
.product-upsell__actions .btn { flex: 1 1 auto; text-align: center; }
.article-body .product-upsell a { text-decoration: none; }
.article-body .product-upsell__title { color: var(--forest-700); }

@media (max-width: 760px) {
  .product-upsell__inner { grid-template-columns: 1fr; gap: 0; }
  .product-upsell__media { aspect-ratio: 16 / 10; }
  .product-upsell__body { padding: 2rem 0 2.5rem; }
  .product-upsell__actions .btn { flex: 1 1 100%; }
}

@media (prefers-reduced-motion: reduce) {
  .product-upsell:hover .product-upsell__media img { transform: none; }
}

/* "Posts you might like" (related blog posts, after article content) */
.related-posts-section { padding: clamp(3rem, 6vw, 4.5rem) 0; background: var(--surface-warm); border-top: 1px solid var(--border); }
.related-posts-section .section-heading { margin-bottom: 2rem; }
.related-posts-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.related-posts-grid .blog-post-card { display: flex; flex-direction: column; overflow: hidden; }
.related-posts-grid .img-wrap { display: block; aspect-ratio: 16 / 10; overflow: hidden; background: var(--honey-100); }
.related-posts-grid .img-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.related-posts-grid .blog-post-card:hover .img-wrap img { transform: scale(1.05); }
.related-posts-grid .card-body { padding: 1rem 1.15rem 1.2rem; display: flex; flex-direction: column; gap: 0.4rem; }
.blog-cat-tag { font-size: 0.7rem; letter-spacing: 0.1em; text-transform: uppercase; font-weight: 600; color: var(--honey-600); margin: 0; }
.related-posts-grid h3 { font-size: 1.1rem; line-height: 1.25; margin: 0; }
.related-posts-grid h3 a { color: var(--forest-700); text-decoration: none; }
.related-posts-grid h3 a:hover { color: var(--honey-600); }
.related-posts-more { text-align: center; margin-top: 2rem; }
@media (max-width: 780px) {
  .related-posts-grid { grid-template-columns: 1fr; gap: 1.2rem; max-width: 420px; margin: 0 auto; }
}

/* "Products you might like" after a blog post (full width) */
.related-products { margin-top: 0; padding: clamp(3rem, 6vw, 5rem) 0; background: var(--cream-50); border-top: 1px solid var(--border); }
.related-products .section-heading { margin-bottom: 2rem; }
.related-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.related-card { display: flex; flex-direction: column; overflow: hidden; }
.related-card .img-wrap { display: block; aspect-ratio: 1 / 1; overflow: hidden; background: var(--honey-100); }
.related-card .img-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.related-card:hover .img-wrap img { transform: scale(1.05); }
.related-card .card-body { padding: 1.1rem 1.2rem 1.3rem; display: flex; flex-direction: column; gap: 0.35rem; flex: 1 1 auto; }
.related-card h3 { font-size: 1.15rem; margin: 0; }
.related-card h3 a { color: var(--forest-700); text-decoration: none; }
.related-card .related-blurb { font-size: 0.9rem; color: var(--muted); margin: 0; line-height: 1.45; flex: 1 1 auto; }
.related-card .card-price { font-family: 'Fraunces', serif; color: var(--forest-700); margin: 0.2rem 0 0.6rem; }
.article-body ~ .related-products a, .related-card a { text-decoration: none; }

@media (max-width: 780px) {
  .related-grid { grid-template-columns: 1fr; gap: 1.2rem; max-width: 420px; margin: 0 auto; }
}

/* Blog category filter */
.blog-filter { display: flex; flex-wrap: wrap; justify-content: center; gap: 0.6rem; max-width: 1000px; margin: 0 auto 2.5rem; padding: 0 1.25rem; }
.blog-filter__btn {
  display: inline-block; padding: 0.55rem 1.15rem; border-radius: 999px;
  border: 1.5px solid var(--border); background: var(--surface);
  color: var(--forest-700); font-size: 0.9rem; font-weight: 500; text-decoration: none;
  transition: border-color 0.2s var(--ease), background 0.2s var(--ease), color 0.2s var(--ease);
}
.blog-filter__btn:hover { border-color: var(--honey-500); background: var(--honey-100); }
.blog-filter__btn.is-active { background: var(--forest-700); color: var(--cream-50); border-color: var(--forest-700); }

/* Blog pagination */
.blog-pager { display: flex; flex-wrap: wrap; justify-content: center; align-items: center; gap: 0.4rem; margin: 2.5rem auto 0; }
.blog-pager a, .blog-pager span { display: inline-grid; place-items: center; min-width: 2.5rem; height: 2.5rem; padding: 0 0.6rem; border-radius: var(--radius-sm); font-size: 0.95rem; text-decoration: none; }
.blog-pager__num { color: var(--forest-700); border: 1.5px solid var(--border); background: var(--surface); transition: border-color 0.2s var(--ease), background 0.2s var(--ease); }
.blog-pager__num:hover { border-color: var(--honey-500); }
.blog-pager__num.is-current { background: var(--forest-700); color: var(--cream-50); border: 1.5px solid var(--forest-700); font-weight: 600; }
.blog-pager__arrow { color: var(--honey-600); font-weight: 600; }
.blog-pager__arrow:hover { color: var(--honey-500); }
.blog-pager__arrow.is-disabled { color: var(--muted); opacity: 0.4; }
@media (max-width: 520px) {
  .blog-pager a, .blog-pager span { min-width: 2.2rem; height: 2.2rem; font-size: 0.88rem; }
}

/* FAQ page */
.faq-nav-section { padding-top: 1.5rem; padding-bottom: 0; }
.faq-jump { display: flex; flex-wrap: wrap; justify-content: center; gap: 0.6rem; }
.faq-jump a {
  display: inline-block; padding: 0.5rem 1rem; border-radius: 999px;
  border: 1.5px solid var(--border); background: var(--surface);
  color: var(--forest-700); font-size: 0.88rem; text-decoration: none;
  transition: border-color 0.2s var(--ease), background 0.2s var(--ease), color 0.2s var(--ease);
}
.faq-jump a:hover { border-color: var(--honey-500); background: var(--honey-100); }
.faq-group { max-width: 820px; }
.faq-group-head { margin-bottom: 1.4rem; }
.faq-group-head h2 { margin: 0.2rem 0 0; }
.faq-group .faq-accordion { margin-top: 0; }
/* offset anchor jumps so the sticky-ish header doesn't cover the heading */
#about-honey, #buying, #using, #health, #products, #services { scroll-margin-top: 90px; }

/* Policies */
.policy-wrap { max-width: 820px; margin: 0 auto; display: grid; gap: 2rem; }
.policy-block { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); padding: 2rem 2.2rem; box-shadow: var(--shadow-sm); scroll-margin-top: 120px; }
.policy-block h2 { color: var(--forest-700); font-size: 1.5rem; }
.policy-block p { color: var(--muted); margin: 0; }
.policy-block a { color: var(--accent-strong); }

/* Footer */
.site-footer { background: var(--forest-800); color: white; padding: 4rem 0 1.5rem; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.3fr; gap: 2rem; }
.footer-brand { color: white; }
.footer-brand .brand-mark { color: var(--forest-800); }
.site-footer p { color: rgba(255, 255, 255, 0.7); }
.site-footer h3 { color: var(--honey-300); font-family: 'Inter', sans-serif; font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.16em; margin-bottom: 1rem; }
.site-footer ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 0.5rem; }
.site-footer ul a { color: rgba(255, 255, 255, 0.72); }
.site-footer ul a:hover { color: var(--honey-300); }
.footer-social { display: flex; flex-wrap: wrap; gap: 0.5rem 1rem; margin-top: 1rem; }
.footer-social a { color: rgba(255, 255, 255, 0.72); font-size: 0.9rem; }
.footer-social a:hover { color: var(--honey-300); }
.footer-contact address { font-style: normal; color: rgba(255, 255, 255, 0.7); line-height: 1.8; }
.footer-contact address a { color: var(--honey-300); }
.footer-bottom { padding-top: 1.5rem; margin-top: 2.5rem; border-top: 1px solid rgba(255, 255, 255, 0.12); display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 0.8rem; }
.footer-bottom p { margin: 0; font-size: 0.85rem; }
.footer-policies a { color: rgba(255, 255, 255, 0.6); }
.footer-policies a:hover { color: var(--honey-300); }

/* Sticky mobile CTA */
.mobile-cta { display: none; }
@media (max-width: 760px) {
  .mobile-cta {
    display: flex; gap: 0.6rem; position: fixed; left: 0; right: 0; bottom: 0; z-index: 40;
    padding: 0.7rem 1rem calc(0.7rem + env(safe-area-inset-bottom, 0));
    background: rgba(251, 248, 241, 0.94); backdrop-filter: blur(12px);
    border-top: 1px solid var(--border); box-shadow: 0 -6px 24px rgba(90, 70, 50, 0.12);
  }
  .mobile-cta .btn { flex: 1; padding: 0.85rem 1rem; }
  /* keep the sticky bar from covering the footer bottom / last content */
  .site-footer { padding-bottom: 6rem; }
}

/* Responsive */
@media (max-width: 1040px) {
  .product-gallery { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .shop-grid, .related-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .benefits-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 900px) {
  .story-grid, .consult-grid, .three-up, .footer-grid, .intro-card, .newsletter-card,
  .featured-grid, .pickup-only-grid, .two-column, .two-up, .notice-card,
  .family-grid, .steps-row, .contact-layout, .pdp-grid, .shop-intro, .testimonials-static, .visit-grid { grid-template-columns: 1fr; }
  .enjoy-grid, .instagram-grid { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .family-media { order: -1; }
  .section { padding: 4.5rem 0; }
  .newsletter-card, .intro-card { padding: 2.5rem; }
  .featured-media { order: -1; }
  .blog-heading { flex-direction: column; align-items: flex-start; gap: 1rem; }
}
@media (max-width: 620px) {
  .product-gallery { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .shop-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .benefits-grid { grid-template-columns: 1fr; }
  .enjoy-grid { grid-template-columns: 1fr; }
  .testimonial-card { flex: 0 0 280px; }
}
@media (max-width: 860px) {
  .menu-toggle { display: inline-block; order: 3; }
  .nav-actions { display: none; }
  .site-nav {
    position: absolute; top: 100%; left: 1rem; right: 1rem; flex-direction: column; align-items: flex-start; padding: 1.2rem; background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); box-shadow: var(--shadow); display: none;
  }
  .site-nav.open { display: flex; }
  /* Dropdown on mobile: show submenu items inline, indented */
  .nav-dropdown { display: flex; flex-direction: column; align-items: flex-start; width: 100%; }
  .nav-dropdown > a::after { display: none; }
  .nav-dropdown-menu { position: static; transform: none; opacity: 1; visibility: visible; box-shadow: none; border: 0; background: none; padding: 0.3rem 0 0 0.9rem; min-width: 0; }
  .nav-dropdown-menu a { padding: 0.35rem 0; }
  .hero-content { padding: 6rem 0 4rem; }
}

/* ============================================================
   Shopping cart (drawer + floating button)
   ============================================================ */
.cart-fab {
  position: fixed; right: 1.5rem; bottom: 1.5rem; z-index: 900;
  width: 3.6rem; height: 3.6rem; border-radius: 999px; border: 0;
  background: var(--forest-700); color: var(--cream-50);
  display: inline-grid; place-items: center; cursor: pointer;
  box-shadow: 0 14px 34px -10px rgba(47, 59, 46, 0.55);
  transition: transform 0.2s var(--ease), background 0.2s var(--ease);
}
.cart-fab:hover { background: var(--forest-800, #26301f); transform: translateY(-2px); }
.cart-fab svg { width: 1.4rem; height: 1.4rem; }
.cart-fab__count {
  position: absolute; top: -4px; right: -4px; min-width: 1.35rem; height: 1.35rem;
  padding: 0 0.35rem; border-radius: 999px; background: var(--honey-500); color: var(--forest-800);
  font-size: 0.72rem; font-weight: 700; display: inline-grid; place-items: center;
  border: 2px solid var(--cream-50);
}
.cart-fab__count.is-empty { display: none; }
.cart-fab.bump { animation: cartBump 0.4s var(--ease); }
@keyframes cartBump { 0% { transform: scale(1); } 40% { transform: scale(1.15); } 100% { transform: scale(1); } }

.cart-overlay {
  position: fixed; inset: 0; z-index: 950; background: rgba(28, 26, 23, 0.45);
  opacity: 0; visibility: hidden; transition: opacity 0.3s var(--ease), visibility 0.3s var(--ease);
}
.cart-overlay.is-open { opacity: 1; visibility: visible; }

.cart-drawer {
  position: fixed; top: 0; right: 0; z-index: 960; height: 100%;
  width: min(400px, 92vw); background: var(--cream-50);
  display: flex; flex-direction: column;
  box-shadow: -20px 0 60px -20px rgba(47, 59, 46, 0.4);
  transform: translateX(100%); transition: transform 0.35s var(--ease);
}
.cart-drawer.is-open { transform: translateX(0); }
.cart-drawer__head {
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.3rem 1.4rem; border-bottom: 1px solid var(--border);
}
.cart-drawer__head h2 { font-family: 'Fraunces', serif; font-size: 1.35rem; margin: 0; color: var(--forest-700); }
.cart-drawer__close { border: 0; background: none; font-size: 1.8rem; line-height: 1; color: var(--muted); cursor: pointer; padding: 0 0.2rem; }
.cart-drawer__close:hover { color: var(--forest-700); }

.cart-drawer__items { flex: 1 1 auto; overflow-y: auto; padding: 0.5rem 1.4rem; }
.cart-drawer__empty { flex: 1 1 auto; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 1rem; padding: 2rem; text-align: center; color: var(--muted); }
.cart-drawer__empty[hidden], .cart-drawer__foot[hidden] { display: none; }

.cart-item { display: grid; grid-template-columns: 64px 1fr auto; gap: 0.9rem; padding: 1rem 0; border-bottom: 1px solid var(--border); }
.cart-item__img { width: 64px; height: 64px; object-fit: cover; border-radius: var(--radius-sm); background: var(--honey-100); }
.cart-item__info { min-width: 0; }
.cart-item__name { font-weight: 600; color: var(--forest-700); margin: 0 0 0.15rem; font-size: 0.95rem; }
.cart-item__variant { font-size: 0.8rem; color: var(--muted); margin: 0 0 0.25rem; }
.cart-item__price { font-size: 0.9rem; color: var(--forest-700); margin: 0; }
.cart-item__controls { display: flex; flex-direction: column; align-items: flex-end; justify-content: space-between; gap: 0.5rem; }
.cart-qty { display: inline-flex; align-items: center; border: 1.5px solid var(--border); border-radius: var(--radius-sm); overflow: hidden; }
.cart-qty button { width: 1.9rem; height: 1.9rem; border: 0; background: var(--surface); color: var(--forest-700); font-size: 1rem; cursor: pointer; }
.cart-qty button:hover { background: var(--honey-100); }
.cart-qty span { min-width: 1.8rem; text-align: center; font-size: 0.9rem; }
.cart-item__remove { border: 0; background: none; color: var(--muted); font-size: 0.78rem; cursor: pointer; text-decoration: underline; padding: 0; }
.cart-item__remove:hover { color: var(--honey-600); }

.cart-drawer__foot { padding: 1.2rem 1.4rem calc(1.2rem + env(safe-area-inset-bottom)); border-top: 1px solid var(--border); background: var(--surface-warm); }
.cart-drawer__subtotal { display: flex; justify-content: space-between; align-items: baseline; font-family: 'Fraunces', serif; font-size: 1.15rem; color: var(--forest-700); margin-bottom: 0.4rem; }
.cart-drawer__note { font-size: 0.78rem; color: var(--muted); margin: 0 0 0.9rem; }
.cart-drawer__error { font-size: 0.82rem; color: #a23b2d; margin: 0.7rem 0 0; line-height: 1.4; }

.btn-block { display: block; width: 100%; text-align: center; }

/* Add-to-cart / buy-now button row on featured + product pages */
.buy-actions { display: flex; flex-wrap: wrap; gap: 0.7rem; margin-top: 1.2rem; }
.buy-actions .btn { flex: 1 1 auto; text-align: center; }

/* Shop-card two-button action row */
.shop-card-actions { display: flex; gap: 0.5rem; }
.shop-card-actions .btn { flex: 1 1 auto; text-align: center; padding-left: 0.6rem; padding-right: 0.6rem; }
.shop-card-actions .btn-secondary { flex: 0 0 auto; }

@media (max-width: 520px) {
  .cart-fab { right: 1rem; bottom: 1rem; }
}
