:root {
  --forest: #1B4332;
  --forest-deep: #0F2E22;
  --leaf: #40916C;
  --mint: #52B788;
  --cream: #F7F5EE;
  --cream-dark: #EDE9DC;
  --ink: #1A1F1C;
  --muted: #5C6B63;
  --white: #FFFFFF;
  --danger: #B42318;
  --shadow: 0 18px 40px rgba(15, 46, 34, 0.08);
  --radius: 4px;
  --font-display: "Fraunces", Georgia, serif;
  --font-body: "Manrope", "Segoe UI", sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.6;
  min-height: 100vh;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button, input, select, textarea { font: inherit; }

.container {
  width: min(1180px, calc(100% - 2.5rem));
  margin-inline: auto;
}

/* Announcement */
.announce {
  background: var(--forest);
  color: var(--cream);
  text-align: center;
  font-size: 0.85rem;
  padding: 0.65rem 1rem;
  letter-spacing: 0.02em;
}
.announce strong { color: #B7E4C7; }

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(247, 245, 238, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(27, 67, 50, 0.08);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 0.75rem 0;
}
.brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.brand img {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--forest);
}
.brand-text { line-height: 1.15; }
.brand-text strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.15rem;
  color: var(--forest);
  font-weight: 700;
}
.brand-text span {
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}
.nav {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}
.nav a {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--forest-deep);
  position: relative;
}
.nav a:hover, .nav a.active { color: var(--leaf); }
.header-actions {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}
.search-form {
  display: flex;
  align-items: center;
  background: var(--white);
  border: 1px solid rgba(27, 67, 50, 0.15);
  border-radius: 999px;
  padding: 0.35rem 0.75rem;
}
.search-form input {
  border: 0;
  outline: 0;
  background: transparent;
  width: 140px;
}
.cart-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: var(--forest);
  color: var(--cream);
  padding: 0.55rem 0.95rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.9rem;
}
.cart-btn:hover { background: var(--forest-deep); }
.menu-toggle {
  display: none;
  background: none;
  border: 0;
  font-size: 1.5rem;
  color: var(--forest);
  cursor: pointer;
}

/* Legacy hero (unused on homepage) */
.hero {
  position: relative;
  min-height: min(78vh, 620px);
  overflow: hidden;
  background: #0F2E22;
  color: var(--cream);
}
.hero-inner {
  padding: 4.5rem 0 3.5rem;
  max-width: 640px;
  animation: rise 0.9s ease both;
}
.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 600;
  line-height: 1.1;
  margin-bottom: 1rem;
}
.hero h1 em {
  font-style: italic;
  color: #B7E4C7;
}
.hero p {
  font-size: 1.1rem;
  max-width: 34rem;
  opacity: 0.92;
  margin-bottom: 1.75rem;
}
.hero-actions { display: flex; gap: 0.85rem; flex-wrap: wrap; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.85rem 1.4rem;
  border-radius: 999px;
  border: 1.5px solid transparent;
  font-weight: 700;
  cursor: pointer;
  transition: 0.2s ease;
}
.btn-primary {
  background: var(--mint);
  color: var(--forest-deep);
}
.btn-primary:hover { background: #74C69D; transform: translateY(-1px); }
.btn-outline {
  border-color: rgba(247, 245, 238, 0.55);
  color: var(--cream);
  background: transparent;
}
.btn-outline:hover { background: rgba(255,255,255,0.1); }
.btn-solid {
  background: var(--forest);
  color: var(--cream);
}
.btn-solid:hover { background: var(--forest-deep); }
.btn-ghost {
  background: transparent;
  border-color: var(--forest);
  color: var(--forest);
}
.btn-ghost:hover { background: var(--forest); color: var(--cream); }
.btn-sm { padding: 0.55rem 1rem; font-size: 0.9rem; }

/* Trust strip */
.trust-strip {
  background: var(--white);
  border-bottom: 1px solid rgba(27, 67, 50, 0.08);
  overflow: hidden;
}
.trust-track {
  display: flex;
  gap: 3rem;
  padding: 1rem 0;
  width: max-content;
  animation: marquee 28s linear infinite;
  font-weight: 600;
  color: var(--forest);
  font-size: 0.92rem;
}
.trust-track span::before {
  content: "✦";
  margin-right: 0.75rem;
  color: var(--mint);
}

/* Sections */
.section { padding: 4.5rem 0; }
.section-head {
  max-width: 620px;
  margin-bottom: 2.5rem;
}
.section-head .eyebrow {
  display: inline-block;
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--leaf);
  font-weight: 700;
  margin-bottom: 0.6rem;
}
.section-head h2 {
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 3.5vw, 2.8rem);
  color: var(--forest-deep);
  line-height: 1.15;
  font-weight: 600;
}
.section-head h2 em {
  font-style: italic;
  color: var(--leaf);
}
.section-head p {
  margin-top: 0.75rem;
  color: var(--muted);
  font-size: 1.05rem;
}

/* Categories */
.category-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}
.category-card {
  background: var(--white);
  padding: 1.5rem 1.2rem;
  border: 1px solid rgba(27, 67, 50, 0.08);
  transition: 0.25s ease;
  min-height: 150px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  position: relative;
  overflow: hidden;
}
.category-card::before {
  content: "";
  position: absolute;
  inset: auto -20% -40% auto;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(82,183,136,0.2), transparent 70%);
}
.category-card:hover {
  transform: translateY(-4px);
  border-color: var(--mint);
  box-shadow: var(--shadow);
}
.category-card .icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: transparent;
  display: grid;
  place-items: center;
  margin-bottom: 1rem;
  color: var(--forest);
  overflow: hidden;
}
.category-card .icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.category-card .icon svg {
  width: 22px;
  height: 22px;
}
.category-card h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  color: var(--forest);
  margin-bottom: 0.25rem;
}
.category-card p {
  font-size: 0.88rem;
  color: var(--muted);
}

/* Products */
.product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}
.product-card {
  background: var(--white);
  border: 1px solid rgba(27, 67, 50, 0.08);
  display: flex;
  flex-direction: column;
  transition: 0.25s ease;
  overflow: hidden;
  height: 100%;
}
.product-card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-3px);
}
.product-media {
  height: 220px;
  min-height: 220px;
  max-height: 220px;
  aspect-ratio: auto;
  background:
    linear-gradient(160deg, #E8F5E9, #F7F5EE 55%, #D8F3DC);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem;
  overflow: hidden;
  flex-shrink: 0;
}
.product-media img {
  width: 100%;
  height: 100%;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  object-position: center;
  display: block;
}
.badge-sale {
  position: absolute;
  top: 0.75rem;
  left: 0.75rem;
  background: var(--forest);
  color: var(--cream);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.3rem 0.55rem;
}
.badge-hot {
  position: absolute;
  top: 0.75rem;
  left: 0.75rem;
  background: var(--forest);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.3rem 0.55rem;
  border-radius: 4px;
  z-index: 1;
}

/* Favourites / best choices */
.hotcake-section {
  padding-top: 2.75rem;
  padding-bottom: 1rem;
  background:
    radial-gradient(ellipse at top right, rgba(64, 145, 108, 0.1), transparent 45%),
    radial-gradient(ellipse at bottom left, rgba(27, 67, 50, 0.06), transparent 40%),
    var(--cream);
}
.hotcake-head .eyebrow {
  color: var(--leaf);
}
.hotcake-grid {
  grid-template-columns: repeat(5, 1fr);
}
@media (max-width: 1100px) {
  .hotcake-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 720px) {
  .hotcake-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
.product-body {
  padding: 1.1rem 1.15rem 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  flex: 1;
}
.product-body .rating {
  font-size: 0.82rem;
  color: var(--muted);
}
.product-body .rating strong { color: var(--forest); }
.product-body h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--forest-deep);
  line-height: 1.25;
}
.price-row {
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
  margin-top: auto;
  padding-top: 0.35rem;
}
.price {
  font-weight: 800;
  color: var(--forest);
  font-size: 1.05rem;
}
.compare {
  color: var(--muted);
  text-decoration: line-through;
  font-size: 0.9rem;
}
.product-actions {
  display: flex;
  gap: 0.5rem;
  margin-top: 0.75rem;
}
.product-actions form { flex: 1; }
.product-actions .btn { width: 100%; }

/* About band */
.about-band {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 3rem;
  align-items: center;
}
.about-band .visual {
  min-height: 420px;
  position: relative;
  overflow: hidden;
  padding: 0;
  background: var(--forest);
  color: var(--cream);
  display: block;
}
.about-band .visual::after { display: none; }
.about-visual-img {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
  display: block;
}
.about-visual-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(15,46,34,.15) 0%, rgba(15,46,34,.72) 100%);
  display: flex;
  align-items: flex-end;
  padding: 2.25rem;
}
.about-band .visual strong,
.about-visual-overlay strong {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  line-height: 1.1;
  color: #F7F5EE;
}
.about-visual-overlay em {
  font-style: italic;
  color: #B7E4C7;
}
.about-band .visual strong {
  font-family: var(--font-display);
  font-size: 2.4rem;
  line-height: 1.1;
}
.about-copy h2 {
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 3vw, 2.6rem);
  color: var(--forest-deep);
  margin-bottom: 1rem;
}
.about-copy h2 em { font-style: italic; color: var(--leaf); }
.about-copy p { color: var(--muted); margin-bottom: 1rem; }

/* Combos */
.combo-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}
.combo-card {
  background: var(--white);
  border: 1px solid rgba(27, 67, 50, 0.08);
  padding: 1.4rem;
  min-height: 210px;
  display: flex;
  flex-direction: column;
}
.combo-card .tag {
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--leaf);
  font-weight: 700;
  margin-bottom: 0.8rem;
}
.combo-card h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: var(--forest);
  margin-bottom: 0.35rem;
}
.combo-card .sub { color: var(--muted); font-size: 0.9rem; flex: 1; }
.combo-card .price { margin-top: 1rem; }

/* Testimonials */
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
.testimonial-card {
  background: var(--white);
  padding: 1.5rem;
  border-left: 3px solid var(--mint);
}
.testimonial-card p {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-style: italic;
  color: var(--forest-deep);
  margin-bottom: 1.1rem;
  line-height: 1.4;
}
.testimonial-card .who {
  font-size: 0.9rem;
  color: var(--muted);
}
.testimonial-card .who strong {
  display: block;
  color: var(--forest);
  font-style: normal;
  font-family: var(--font-body);
}

/* Testimonials slider */
.testimonial-slider {
  position: relative;
  overflow: hidden;
  padding: 0 3rem 2.25rem;
}
.testimonial-viewport {
  overflow: hidden;
  width: 100%;
}
.testimonial-track {
  display: flex;
  flex-wrap: nowrap;
  gap: 1rem;
  transition: transform 0.45s ease;
  will-change: transform;
}
.testimonial-slide {
  flex: 0 0 calc((100% - 2rem) / 3);
  width: calc((100% - 2rem) / 3);
  min-width: 0;
  box-sizing: border-box;
  background: #fff;
}
.testimonial-arrow {
  position: absolute;
  top: 38%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(27, 67, 50, 0.18);
  background: #fff;
  color: var(--forest);
  font-size: 1.55rem;
  line-height: 1;
  cursor: pointer;
  z-index: 2;
  display: grid;
  place-items: center;
  box-shadow: 0 6px 18px rgba(27, 67, 50, 0.12);
}
.testimonial-arrow:hover { background: var(--forest); color: #fff; border-color: var(--forest); }
.testimonial-arrow.prev { left: 0; }
.testimonial-arrow.next { right: 0; }
.testimonial-dots {
  display: flex;
  justify-content: center;
  gap: 0.45rem;
  margin-top: 1.35rem;
}
.testimonial-dots button {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  border: 0;
  background: rgba(27, 67, 50, 0.22);
  cursor: pointer;
  padding: 0;
  transition: width 0.2s ease, background 0.2s ease;
}
.testimonial-dots button.is-active {
  background: var(--forest);
  width: 22px;
  border-radius: 999px;
}
@media (max-width: 1024px) {
  .testimonial-slide {
    flex-basis: calc((100% - 1rem) / 2);
    width: calc((100% - 1rem) / 2);
  }
}
@media (max-width: 720px) {
  .testimonial-slider { padding: 0 0 2rem; }
  .testimonial-arrow { display: none; }
  .testimonial-slide {
    flex-basis: 100%;
    width: 100%;
  }
}

/* Blog */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}
.blog-card {
  background: var(--white);
  border: 1px solid rgba(27, 67, 50, 0.08);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.blog-thumb {
  display: block;
  height: 180px;
  min-height: 180px;
  max-height: 180px;
  overflow: hidden;
  background:
    linear-gradient(135deg, #1B4332, #40916C 60%, #52B788);
}
.blog-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}
.blog-hero-image {
  margin: 0 0 1.75rem;
  overflow: hidden;
  border-radius: 12px;
  height: 320px;
  background: #E8F5E9;
}
.blog-hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
@media (max-width: 720px) {
  .blog-hero-image { height: 200px; }
}
.blog-card .body { padding: 1.25rem; }
.blog-card .label {
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--leaf);
  font-weight: 700;
}
.blog-card h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: var(--forest-deep);
  margin: 0.5rem 0;
  line-height: 1.3;
}
.blog-card p { color: var(--muted); font-size: 0.95rem; }
.blog-card .read {
  display: inline-block;
  margin-top: 1rem;
  color: var(--forest);
  font-weight: 700;
  font-size: 0.9rem;
}

/* FAQ — Sandu two-column style */
.faq-sandu-section {
  background: #FDF8ED;
  padding: 4.5rem 0;
}
.faq-sandu-layout {
  display: grid;
  grid-template-columns: 0.95fr 1.15fr;
  gap: 3.5rem;
  align-items: start;
}
.faq-sandu-intro h2 {
  font-family: var(--font-body);
  font-size: clamp(1.9rem, 3.5vw, 2.75rem);
  font-weight: 800;
  line-height: 1.15;
  color: #111;
  margin: 0 0 1rem;
}
.faq-sandu-intro h2 span {
  color: #156641;
}
.faq-sandu-intro > p {
  color: #666;
  font-size: 1.05rem;
  line-height: 1.65;
  max-width: 28rem;
  margin: 0 0 1.75rem;
}
.faq-sandu-btn {
  display: inline-flex;
  align-items: center;
  background: #156641;
  color: #fff;
  font-weight: 700;
  padding: 0.9rem 1.25rem;
  border-radius: 2px;
}
.faq-sandu-btn:hover { background: #0f4d31; color: #fff; }
.faq-sandu-list {
  border-top: 1px solid #1a1a1a;
}
.faq-sandu-item {
  border-bottom: 1px solid #1a1a1a;
}
.faq-sandu-item summary {
  list-style: none;
  cursor: pointer;
  display: grid;
  grid-template-columns: 2.2rem 1fr 2rem;
  gap: 0.85rem;
  align-items: center;
  padding: 1.15rem 0;
}
.faq-sandu-item summary::-webkit-details-marker { display: none; }
.faq-num {
  font-weight: 700;
  color: #111;
  font-size: 0.95rem;
}
.faq-q {
  font-weight: 700;
  color: #111;
  font-size: 1.02rem;
  line-height: 1.35;
}
.faq-toggle {
  width: 28px;
  height: 28px;
  border: 1.5px solid #1a1a1a;
  border-radius: 50%;
  position: relative;
  justify-self: end;
}
.faq-toggle::before,
.faq-toggle::after {
  content: "";
  position: absolute;
  background: #1a1a1a;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
.faq-toggle::before {
  width: 12px;
  height: 1.5px;
}
.faq-toggle::after {
  width: 1.5px;
  height: 12px;
}
.faq-sandu-item[open] .faq-toggle::after {
  display: none;
}
.faq-a {
  padding: 0 2rem 1.2rem 3.05rem;
}
.faq-a p {
  color: #555;
  font-size: 0.98rem;
  line-height: 1.65;
  margin: 0;
}
.faq-see-more {
  text-align: center;
  padding-top: 1.35rem;
}
.faq-see-more a {
  color: #156641;
  font-weight: 700;
  font-size: 1rem;
}
.faq-see-more a:hover { text-decoration: underline; }

@media (max-width: 900px) {
  .faq-sandu-layout {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

/* Legacy FAQ */
.faq-list { max-width: 800px; }
.faq-item {
  border-bottom: 1px solid rgba(27, 67, 50, 0.12);
}
.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 1.15rem 0;
  font-weight: 700;
  color: var(--forest-deep);
  display: flex;
  justify-content: space-between;
  gap: 1rem;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  font-size: 1.3rem;
  color: var(--leaf);
}
.faq-item[open] summary::after { content: "–"; }
.faq-item p {
  padding: 0 0 1.15rem;
  color: var(--muted);
}

/* Page hero (inner) */
.page-hero {
  padding: 3rem 0 2rem;
  background:
    linear-gradient(180deg, rgba(27,67,50,0.06), transparent),
    var(--cream);
  border-bottom: 1px solid rgba(27, 67, 50, 0.06);
}
.page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--forest-deep);
}
.page-hero p { color: var(--muted); margin-top: 0.5rem; max-width: 36rem; }

/* Catalog layout */
.catalog-layout {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 2rem;
  padding: 2.5rem 0 4rem;
}
.filters {
  background: var(--white);
  padding: 1.25rem;
  border: 1px solid rgba(27, 67, 50, 0.08);
  height: fit-content;
  position: sticky;
  top: 100px;
}
.filters h3 {
  font-family: var(--font-display);
  color: var(--forest);
  margin-bottom: 1rem;
}
.filters a {
  display: block;
  padding: 0.45rem 0;
  color: var(--muted);
  font-weight: 500;
}
.filters a:hover, .filters a.active {
  color: var(--forest);
  font-weight: 700;
}
.toolbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.25rem;
  flex-wrap: wrap;
}
.toolbar select {
  border: 1px solid rgba(27, 67, 50, 0.2);
  background: var(--white);
  padding: 0.5rem 0.75rem;
  border-radius: var(--radius);
}

/* Product detail */
.product-detail {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  padding: 3rem 0 4rem;
}
.product-gallery {
  aspect-ratio: 1;
  background: linear-gradient(160deg, #E8F5E9, #F7F5EE);
  display: grid;
  place-items: center;
  padding: 2rem;
  border: 1px solid rgba(27, 67, 50, 0.08);
}
.product-info h1 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  color: var(--forest-deep);
  margin: 0.5rem 0 1rem;
}
.product-info .cat-link {
  color: var(--leaf);
  font-weight: 700;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.product-info .desc {
  color: var(--muted);
  margin: 1.25rem 0;
}
.qty-row {
  display: flex;
  gap: 0.75rem;
  align-items: center;
  margin: 1.5rem 0;
}
.qty-row input {
  width: 70px;
  padding: 0.7rem;
  border: 1px solid rgba(27, 67, 50, 0.2);
  border-radius: var(--radius);
  text-align: center;
}
.ingredients {
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(27, 67, 50, 0.1);
  color: var(--muted);
}
.ingredients strong { color: var(--forest); }

/* Cart / forms */
.table {
  width: 100%;
  border-collapse: collapse;
  background: var(--white);
}
.table th, .table td {
  padding: 1rem;
  border-bottom: 1px solid rgba(27, 67, 50, 0.08);
  text-align: left;
  vertical-align: middle;
}
.table th {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--muted);
}
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.form-group { display: flex; flex-direction: column; gap: 0.35rem; }
.form-group.full { grid-column: 1 / -1; }
.form-group label { font-weight: 600; color: var(--forest); font-size: 0.9rem; }
.form-group input,
.form-group select,
.form-group textarea {
  border: 1px solid rgba(27, 67, 50, 0.18);
  background: var(--white);
  padding: 0.75rem 0.9rem;
  border-radius: var(--radius);
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--mint);
  box-shadow: 0 0 0 3px rgba(82, 183, 136, 0.2);
}
.cart-summary {
  background: var(--white);
  padding: 1.5rem;
  border: 1px solid rgba(27, 67, 50, 0.08);
  height: fit-content;
}
.cart-summary h3 {
  font-family: var(--font-display);
  color: var(--forest);
  margin-bottom: 1rem;
}
.summary-row {
  display: flex;
  justify-content: space-between;
  padding: 0.45rem 0;
  color: var(--muted);
}
.summary-row.total {
  border-top: 1px solid rgba(27, 67, 50, 0.12);
  margin-top: 0.5rem;
  padding-top: 0.85rem;
  color: var(--forest);
  font-weight: 800;
  font-size: 1.1rem;
}
.two-col {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr;
  gap: 2rem;
  padding: 2.5rem 0 4rem;
}

/* Footer */
.site-footer {
  background: var(--forest-deep);
  color: rgba(247, 245, 238, 0.85);
  padding: 3.5rem 0 1.5rem;
  margin-top: 2rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 2rem;
  margin-bottom: 2.5rem;
}
.footer-brand img {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  margin-bottom: 1rem;
  border: 2px solid rgba(247,245,238,0.3);
}
.footer-brand h3 {
  font-family: var(--font-display);
  color: var(--cream);
  margin-bottom: 0.35rem;
}
.footer-brand .tagline {
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--mint);
  margin-bottom: 0.85rem;
}
.footer-grid h4 {
  color: var(--cream);
  margin-bottom: 1rem;
  font-size: 0.95rem;
}
.footer-grid a {
  display: block;
  padding: 0.3rem 0;
  color: rgba(247, 245, 238, 0.72);
  font-size: 0.92rem;
}
.footer-grid a:hover { color: var(--mint); }
.footer-bottom {
  border-top: 1px solid rgba(247, 245, 238, 0.12);
  padding-top: 1.25rem;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  font-size: 0.85rem;
  color: rgba(247, 245, 238, 0.55);
}

/* Alerts */
.alert {
  padding: 0.85rem 1rem;
  margin: 1rem 0;
  border-radius: var(--radius);
  font-weight: 600;
}
.alert-success { background: #D8F3DC; color: var(--forest); }
.alert-error { background: #FEE4E2; color: var(--danger); }

/* Pagination */
.pagination {
  display: flex;
  gap: 0.4rem;
  margin-top: 2rem;
  flex-wrap: wrap;
}
.pagination a, .pagination span {
  padding: 0.45rem 0.75rem;
  background: var(--white);
  border: 1px solid rgba(27, 67, 50, 0.12);
  color: var(--forest);
  font-weight: 600;
}
.pagination .active span {
  background: var(--forest);
  color: var(--cream);
}

/* Admin */
.admin-body { background: #EEF2EF; }
.admin-shell { display: grid; grid-template-columns: 240px 1fr; min-height: 100vh; }
.admin-side {
  background: var(--forest-deep);
  color: var(--cream);
  padding: 1.5rem 1rem;
}
.admin-side .logo {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  margin-bottom: 2rem;
  padding: 0 0.5rem;
}
.admin-side .logo img {
  width: 42px;
  height: 42px;
  border-radius: 50%;
}
.admin-side nav a {
  display: block;
  padding: 0.7rem 0.85rem;
  border-radius: var(--radius);
  color: rgba(247,245,238,0.75);
  font-weight: 600;
  margin-bottom: 0.25rem;
}
.admin-side nav a:hover,
.admin-side nav a.active {
  background: rgba(82,183,136,0.18);
  color: var(--cream);
}
.admin-main { padding: 1.5rem; }
.admin-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.5rem;
}
.admin-top h1 {
  font-family: var(--font-display);
  color: var(--forest-deep);
  font-size: 1.7rem;
}
.stat-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin-bottom: 1.5rem;
}
.stat-card {
  background: var(--white);
  padding: 1.25rem;
  border: 1px solid rgba(27, 67, 50, 0.08);
}
.stat-card .label { color: var(--muted); font-size: 0.85rem; }
.stat-card .value {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--forest);
  margin-top: 0.35rem;
}
.panel {
  background: var(--white);
  border: 1px solid rgba(27, 67, 50, 0.08);
  padding: 1.25rem;
  margin-bottom: 1.25rem;
}
.panel h2 {
  font-family: var(--font-display);
  color: var(--forest);
  font-size: 1.25rem;
  margin-bottom: 1rem;
}
.admin-table { width: 100%; border-collapse: collapse; }
.admin-table th, .admin-table td {
  text-align: left;
  padding: 0.75rem;
  border-bottom: 1px solid rgba(27, 67, 50, 0.08);
  font-size: 0.92rem;
}
.admin-table th {
  color: var(--muted);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.status {
  display: inline-block;
  padding: 0.2rem 0.55rem;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  background: #E8F5E9;
  color: var(--forest);
}
.status.pending { background: #FFF4CE; color: #7A5B00; }
.status.cancelled { background: #FEE4E2; color: var(--danger); }
.status.delivered { background: #D8F3DC; color: var(--forest); }
.login-wrap {
  min-height: 100vh;
  display: grid;
  place-items: center;
  background:
    radial-gradient(circle at 20% 20%, rgba(82,183,136,0.25), transparent 40%),
    var(--cream);
}
.login-card {
  width: min(420px, calc(100% - 2rem));
  background: var(--white);
  padding: 2rem;
  border: 1px solid rgba(27, 67, 50, 0.08);
  box-shadow: var(--shadow);
}
.login-card img {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  margin: 0 auto 1rem;
}
.login-card h1 {
  text-align: center;
  font-family: var(--font-display);
  color: var(--forest);
  margin-bottom: 1.5rem;
}
.check-row {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin: 0.75rem 0 1rem;
}

/* Scroll reveal animations */
@keyframes rise {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

[data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: opacity, transform;
}
html:not(.reveal-ready) [data-reveal] {
  opacity: 1;
  transform: none;
}
[data-reveal="left"] { transform: translateX(-32px); }
[data-reveal="right"] { transform: translateX(32px); }
[data-reveal="scale"] { transform: translateY(16px) scale(0.96); }
[data-reveal].is-in {
  opacity: 1;
  transform: none;
}

[data-reveal-stagger] > [data-reveal] {
  transition-delay: calc(var(--reveal-i, 0) * 70ms);
}

@media (prefers-reduced-motion: reduce) {
  [data-reveal] {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
}

.reveal {
  animation: rise 0.7s ease both;
}
.reveal-delay { animation-delay: 0.15s; }
.reveal-delay-2 { animation-delay: 0.3s; }

.empty {
  text-align: center;
  padding: 3rem 1rem;
  color: var(--muted);
}

@media (max-width: 1024px) {
  .category-grid,
  .product-grid,
  .combo-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonial-grid,
  .blog-grid,
  .stat-grid { grid-template-columns: 1fr 1fr; }
  .about-band,
  .product-detail,
  .catalog-layout,
  .two-col,
  .footer-grid,
  .admin-shell { grid-template-columns: 1fr; }
  .admin-side { display: none; }
  .filters { position: static; }
}

@media (max-width: 720px) {
  .nav { display: none; }
  .nav.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--cream);
    padding: 1rem;
    border-bottom: 1px solid rgba(27,67,50,0.1);
  }
  .menu-toggle { display: block; }
  .search-form input { width: 90px; }
  .category-grid,
  .combo-grid,
  .testimonial-grid,
  .blog-grid,
  .stat-grid,
  .form-grid { grid-template-columns: 1fr; }
  .product-grid,
  .hotcake-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.75rem;
  }
  .product-media {
    height: 150px;
    min-height: 150px;
    max-height: 150px;
    padding: 0.55rem;
  }
  .product-card .product-body {
    padding: 0.75rem;
  }
  .product-card h3 {
    font-size: 0.92rem;
  }
  .product-card .rating {
    font-size: 0.72rem;
  }
  .product-actions {
    flex-wrap: wrap;
  }
  .product-actions .btn-sm {
    padding: 0.45rem 0.7rem;
    font-size: 0.78rem;
  }
  .header-inner { flex-wrap: wrap; }
}

/* Icons & auth */
.icon-sm { width: 16px; height: 16px; color: var(--muted); flex-shrink: 0; }
.icon-btn {
  width: 40px; height: 40px; border-radius: 50%;
  display: grid; place-items: center;
  color: var(--forest); background: var(--white);
  border: 1px solid rgba(27,67,50,.12);
}
.icon-btn svg { width: 18px; height: 18px; }
.icon-btn:hover { border-color: var(--mint); color: var(--leaf); }
.cart-btn svg { margin-right: 2px; }
.rating { display: flex; align-items: center; gap: .35rem; }
.rating .star { width: 14px; height: 14px; color: #D4A017; }
.pay-chip {
  display: inline-block; padding: .25rem .55rem; border-radius: 999px;
  background: rgba(82,183,136,.2); color: #B7E4C7; font-size: .72rem; font-weight: 700;
}
.auth-page {
  min-height: 70vh; display: grid; place-items: center; padding: 2rem 1rem;
  background: radial-gradient(circle at 20% 20%, rgba(82,183,136,.18), transparent 45%), var(--cream);
}
.auth-card {
  width: min(440px, 100%); background: var(--white); padding: 2rem;
  border: 1px solid rgba(27,67,50,.08); box-shadow: var(--shadow);
}
.auth-icon {
  width: 56px; height: 56px; border-radius: 50%; background: #E8F5E9;
  display: grid; place-items: center; margin: 0 auto 1rem; color: var(--forest);
}
.auth-icon svg { width: 26px; height: 26px; }
.auth-card h1 {
  text-align: center; font-family: var(--font-display); color: var(--forest);
  margin-bottom: .35rem;
}
.auth-sub { text-align: center; color: var(--muted); margin-bottom: 1.25rem; }
.auth-foot { text-align: center; margin-top: 1rem; color: var(--muted); }
.auth-foot a { color: var(--forest); font-weight: 700; }
.auth-hint { text-align: center; margin-top: .75rem; font-size: .8rem; color: var(--muted); }
.hp-field {
  position: absolute !important;
  left: -10000px !important;
  top: auto !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  opacity: 0 !important;
}
.err { color: var(--danger); }
.account-layout {
  display: grid; grid-template-columns: 220px 1fr; gap: 1.5rem; padding: 2rem 0 4rem;
}
.account-nav {
  background: var(--white); border: 1px solid rgba(27,67,50,.08);
  padding: .75rem; height: fit-content; position: sticky; top: 100px;
}
.account-nav a, .account-nav .logout-link {
  display: flex; align-items: center; gap: .6rem;
  padding: .7rem .8rem; color: var(--muted); font-weight: 600;
  border-radius: var(--radius); width: 100%; background: none; border: 0;
  cursor: pointer; font: inherit; text-align: left;
}
.account-nav a svg, .account-nav .logout-link svg { width: 18px; height: 18px; }
.account-nav a:hover, .account-nav a.active, .account-nav .logout-link:hover {
  background: #E8F5E9; color: var(--forest);
}
.cart-product { display: flex; align-items: center; gap: .75rem; }
.cart-product img { width: 52px; height: 52px; object-fit: cover; background: #E8F5E9; }
.checkout-form {
  background: var(--white); padding: 1.5rem;
  border: 1px solid rgba(27,67,50,.08);
}
.pay-options { display: grid; grid-template-columns: 1fr 1fr; gap: .6rem; }
.pay-option {
  border: 1px solid rgba(27,67,50,.15); padding: .7rem .85rem;
  border-radius: var(--radius); display: flex; gap: .5rem; align-items: center;
  font-weight: 600; color: var(--forest); cursor: pointer;
}
.pay-option:has(input:checked) { border-color: var(--mint); background: #E8F5E9; }
@media (max-width: 900px) {
  .account-layout { grid-template-columns: 1fr; }
  .account-nav { position: static; display: flex; flex-wrap: wrap; }
  .pay-options { grid-template-columns: 1fr; }
}


/* ========== Sandu-style product slider ========== */
.product-hero {
  position: relative;
  background: #F3EEE4;
  min-height: min(72vh, 560px);
  overflow: hidden;
}
.product-hero-slide {
  display: none;
  min-height: min(72vh, 560px);
}
.product-hero-slide.is-active {
  display: block;
  animation: rise .55s ease both;
}
.product-hero-grid {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  align-items: center;
  gap: 1.5rem;
  min-height: min(72vh, 560px);
  padding: 2.5rem 0 3.5rem;
}
.product-hero-copy h1 {
  font-family: var(--font-body);
  font-size: clamp(2.6rem, 6vw, 4.6rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 0.98;
  color: #1B4332;
  text-transform: uppercase;
  margin: 0 0 .55rem;
}
.product-hero-sub {
  font-size: clamp(1.15rem, 2.2vw, 1.55rem);
  color: #2D6A4F;
  margin: 0 0 1.4rem;
  font-weight: 500;
}
.product-hero-name {
  font-weight: 700;
  color: #1A1F1C;
  margin: 0 0 .35rem;
  font-size: 1.05rem;
}
.product-hero-price {
  font-size: 1.45rem;
  font-weight: 800;
  color: #1B4332;
  margin: 0 0 1.35rem;
}
.product-hero-cta {
  border-radius: 999px;
  padding: .9rem 1.6rem;
}
.product-hero-visual {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  height: 420px;
  max-height: 420px;
  overflow: hidden;
}
.product-hero-visual::before {
  content: "";
  position: absolute;
  width: min(78%, 420px);
  height: min(78%, 420px);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,255,255,.9), rgba(243,238,228,0));
  z-index: 0;
}
.product-hero-visual img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  object-position: center;
  filter: drop-shadow(0 22px 28px rgba(27,67,50,.18));
}
.product-hero-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 0;
  background: rgba(120,120,120,.35);
  color: #fff;
  font-size: 1.7rem;
  line-height: 1;
  cursor: pointer;
  z-index: 5;
  display: grid;
  place-items: center;
}
.product-hero-arrow:hover { background: rgba(27,67,50,.7); }
.product-hero-arrow.prev { left: 1rem; }
.product-hero-arrow.next { right: 1rem; }
.product-hero-dots {
  position: absolute;
  left: 50%;
  bottom: 1.1rem;
  transform: translateX(-50%);
  display: flex;
  gap: .45rem;
  z-index: 5;
}
.product-hero-dots button {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  border: 0;
  background: rgba(27,67,50,.25);
  cursor: pointer;
  padding: 0;
}
.product-hero-dots button.is-active {
  background: #1B4332;
  width: 22px;
  border-radius: 999px;
}
@media (max-width: 900px) {
  .product-hero {
    min-height: 0;
  }
  .product-hero-slide,
  .product-hero-grid {
    min-height: 0;
  }
  .product-hero-grid {
    grid-template-columns: 1.05fr 0.95fr;
    align-items: center;
    text-align: left;
    padding: 1.35rem 0 2.4rem;
    gap: 0.75rem;
  }
  .product-hero-copy h1 {
    font-size: clamp(1.45rem, 6.5vw, 2.1rem);
    margin-bottom: 0.35rem;
  }
  .product-hero-sub {
    font-size: 0.92rem;
    margin-bottom: 0.65rem;
  }
  .product-hero-name {
    font-size: 0.88rem;
    margin-bottom: 0.2rem;
  }
  .product-hero-price {
    font-size: 1.15rem;
    margin-bottom: 0.75rem;
  }
  .product-hero-cta {
    padding: 0.65rem 1.1rem;
    font-size: 0.85rem;
  }
  .product-hero-visual {
    height: 200px;
    min-height: 200px;
    max-height: 200px;
  }
  .product-hero-visual::before {
    width: 90%;
    height: 90%;
    padding-bottom: 0;
  }
  .product-hero-visual img {
    width: 100%;
    height: 100%;
    max-height: 100%;
  }
  .product-hero-arrow {
    display: grid;
    width: 36px;
    height: 36px;
    font-size: 1.25rem;
  }
  .product-hero-arrow.prev { left: 0.35rem; }
  .product-hero-arrow.next { right: 0.35rem; }
  .product-hero-dots {
    bottom: 0.85rem;
  }
}

@media (max-width: 480px) {
  .product-hero-grid {
    grid-template-columns: 1fr 1fr;
    gap: 0.5rem;
    padding: 1.1rem 0 2.2rem;
  }
  .product-hero-copy h1 {
    font-size: 1.35rem;
    line-height: 1.05;
  }
  .product-hero-sub {
    font-size: 0.82rem;
    margin-bottom: 0.5rem;
  }
  .product-hero-visual {
    height: 160px;
    min-height: 160px;
    max-height: 160px;
  }
}

/* Herbal flyers — 2 columns × 2 rows */
.flyer-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.25rem;
}
.flyer-card {
  display: block;
  overflow: hidden;
  background: #fff;
  border: 1px solid rgba(27, 67, 50, 0.08);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.flyer-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}
.flyer-card img {
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  display: block;
}
@media (max-width: 720px) {
  .flyer-grid {
    grid-template-columns: 1fr;
  }
}
