/* Blissplants — Organic nursery design system */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@500;600;700&family=Outfit:wght@300;400;500;600;700&display=swap');

:root {
  --green-dark: #1a3c2a;
  --green-deep: #0f2a1c;
  --green-mid: #2d5a3f;
  --green-leaf: #6fad2e;
  --green-bright: #7cbc3a;
  --green-soft: #e8f0e4;
  --green-mist: #f3f7f0;
  --cream: #f7f5ef;
  --cream-warm: #efebe3;
  --white: #ffffff;
  --text: #1a2e22;
  --text-muted: #5a6b60;
  --border: #d5e0d4;
  --shadow: 0 8px 28px rgba(26, 60, 42, 0.1);
  --radius: 10px;
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Outfit', system-ui, sans-serif;
  --container: 1180px;
  --transition: 220ms ease;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
  font-size: 16px;
  overflow-x: hidden;
}

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

.container {
  width: min(100% - 2rem, var(--container));
  margin-inline: auto;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.85rem 1.75rem;
  background: var(--green-dark);
  color: var(--white);
  border: none;
  border-radius: 6px;
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
}

.btn:hover {
  background: var(--green-mid);
  transform: translateY(-1px);
  box-shadow: 0 6px 18px rgba(26, 60, 42, 0.22);
}

.btn:focus-visible {
  outline: 3px solid var(--green-leaf);
  outline-offset: 2px;
}

.btn-leaf { background: var(--green-leaf); }
.btn-leaf:hover { background: #5f9626; }

.section-head {
  text-align: center;
  margin-bottom: 2.5rem;
}

.section-head h2 {
  font-family: var(--font-display);
  font-size: clamp(1.85rem, 3vw, 2.4rem);
  font-weight: 700;
  color: var(--green-dark);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
}

.section-head h2 .leaf-icon {
  width: 22px;
  height: 22px;
  color: var(--green-leaf);
}

.section-head p {
  color: var(--text-muted);
  margin-top: 0.5rem;
  font-weight: 300;
}

/* ===== TOP BAR ===== */
.topbar {
  background: var(--green-deep);
  color: #d7e8d9;
  font-size: 0.82rem;
  padding: 0.55rem 0;
}

.topbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.topbar-right {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.topbar-loc {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.topbar-social {
  display: flex;
  gap: 0.65rem;
}

.topbar-social a {
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  transition: background var(--transition), color var(--transition);
}

.topbar-social a:hover {
  background: var(--green-leaf);
  color: var(--white);
}

.topbar-social svg { width: 14px; height: 14px; }

/* ===== HEADER ===== */
.header {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 12px rgba(26, 60, 42, 0.04);
}

.header-main {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 1.5rem;
  padding: 0.85rem 0;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  flex-shrink: 0;
}

.logo img {
  height: 44px;
  width: auto;
  max-width: min(200px, 44vw);
  object-fit: contain;
}

.logo-text {
  display: none;
}


.logo-text strong {
  font-family: var(--font-display);
  font-size: 1.35rem;
  letter-spacing: 0.04em;
  display: block;
}

.logo-text strong .bliss { color: var(--green-dark); }
.logo-text strong .plants { color: var(--green-leaf); }

.logo-text span {
  font-size: 0.62rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--green-dark);
  font-weight: 500;
}

.search-form {
  display: flex;
  max-width: 520px;
  width: 100%;
  margin-inline: auto;
  border: 1.5px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
  background: var(--white);
  transition: border-color var(--transition), box-shadow var(--transition);
}

.search-form:focus-within {
  border-color: var(--green-leaf);
  box-shadow: 0 0 0 3px rgba(111, 173, 46, 0.15);
}

.search-form input {
  flex: 1;
  border: none;
  padding: 0.75rem 1rem;
  outline: none;
  background: transparent;
  color: var(--text);
}

.search-form input::placeholder { color: #9aaa9e; }

.search-form button {
  background: var(--green-leaf);
  border: none;
  color: white;
  padding: 0 1.1rem;
  cursor: pointer;
  display: grid;
  place-items: center;
  transition: background var(--transition);
}

.search-form button:hover { background: #5f9626; }
.search-form button svg { width: 18px; height: 18px; }

.header-actions {
  display: flex;
  align-items: center;
  gap: 1.15rem;
}

.header-actions a {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.15rem;
  font-size: 0.72rem;
  font-weight: 500;
  color: var(--text);
  position: relative;
  transition: color var(--transition);
}

.header-actions a:hover { color: var(--green-leaf); }
.header-actions svg { width: 22px; height: 22px; }

.cart-badge {
  position: absolute;
  top: -4px;
  right: 2px;
  background: var(--green-leaf);
  color: white;
  font-size: 0.62rem;
  font-weight: 700;
  min-width: 16px;
  height: 16px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  padding: 0 3px;
}

.nav {
  border-top: 1px solid var(--border);
  background: var(--white);
}

.nav-list {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.25rem;
  flex-wrap: wrap;
  padding: 0.15rem 0;
}

.nav-list a {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  padding: 0.85rem 1rem;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text);
  position: relative;
  transition: color var(--transition);
}

.nav-list a:hover,
.nav-list a.active { color: var(--green-leaf); }

.nav-list a.active::after {
  content: '';
  position: absolute;
  left: 1rem;
  right: 1rem;
  bottom: 0;
  height: 2px;
  background: var(--green-leaf);
}

.nav-list a svg { width: 12px; height: 12px; opacity: 0.6; }

.menu-toggle {
  display: none;
  background: none;
  border: 1.5px solid var(--border);
  border-radius: 6px;
  padding: 0.45rem;
  cursor: pointer;
  color: var(--green-dark);
}

.menu-toggle svg { width: 22px; height: 22px; }

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: clamp(420px, 62vh, 580px);
  display: grid;
  align-items: center;
  background:
    linear-gradient(105deg, rgba(247, 245, 239, 0.96) 0%, rgba(247, 245, 239, 0.88) 38%, rgba(247, 245, 239, 0.35) 58%, transparent 72%),
    url('../images/hero.jpg') right center / cover no-repeat;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 20% 80%, rgba(111, 173, 46, 0.08), transparent 50%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 520px;
  padding: 3.5rem 0;
  animation: fadeUp 0.8s ease both;
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  font-weight: 700;
  color: var(--green-dark);
  line-height: 1.15;
  margin-bottom: 0.85rem;
}

.hero p {
  font-size: 1.1rem;
  color: var(--text-muted);
  margin-bottom: 1.75rem;
  font-weight: 400;
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(18px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ===== FEATURES ===== */
.features {
  background: var(--green-mist);
  padding: 2.25rem 0;
  border-bottom: 1px solid var(--border);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.feature {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 0.5rem;
}

.feature-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--white);
  color: var(--green-leaf);
  display: grid;
  place-items: center;
  flex-shrink: 0;
  box-shadow: 0 4px 14px rgba(26, 60, 42, 0.08);
}

.feature-icon svg { width: 24px; height: 24px; }

.feature h3 {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--green-dark);
  margin-bottom: 0.2rem;
}

.feature p {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.45;
}

/* ===== CATEGORIES ===== */
.categories {
  padding: 4rem 0 3.5rem;
  background: var(--white);
}

.cat-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1.5rem;
}

.cat-card {
  text-align: center;
  cursor: pointer;
  transition: transform var(--transition);
}

.cat-card:hover { transform: translateY(-6px); }

.cat-img {
  width: 140px;
  height: 140px;
  margin: 0 auto 0.85rem;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid var(--green-soft);
  box-shadow: var(--shadow);
  transition: border-color var(--transition), box-shadow var(--transition);
}

.cat-card:hover .cat-img {
  border-color: var(--green-leaf);
  box-shadow: 0 10px 28px rgba(111, 173, 46, 0.25);
}

.cat-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.cat-card:hover .cat-img img { transform: scale(1.08); }

.cat-card h3 {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--green-dark);
}

/* ===== BEST SELLERS ===== */
.bestsellers {
  padding: 3.5rem 0 4rem;
  background: var(--cream);
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.25rem;
  margin-bottom: 2.25rem;
}

.product-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(26, 60, 42, 0.06);
  transition: transform var(--transition), box-shadow var(--transition);
  display: flex;
  flex-direction: column;
}

.product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 32px rgba(26, 60, 42, 0.12);
}

.product-img {
  aspect-ratio: 1;
  overflow: hidden;
  background: var(--green-mist);
}

.product-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease;
}

.product-card:hover .product-img img { transform: scale(1.06); }

.product-body {
  padding: 1rem 1rem 1.15rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  flex: 1;
}

.product-body h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--green-dark);
}

.product-price {
  font-weight: 600;
  color: var(--green-leaf);
  font-size: 1.05rem;
  margin-bottom: 0.5rem;
}

.product-body .btn {
  width: 100%;
  padding: 0.7rem 1rem;
  font-size: 0.78rem;
  margin-top: auto;
}

.view-all-wrap { text-align: center; }
.view-all-wrap .btn { min-width: 240px; padding: 0.95rem 2.5rem; }

/* ===== ABOUT ===== */
.about {
  padding: 4rem 0;
  background: linear-gradient(135deg, #eef5ea 0%, #f5f3eb 50%, #e8f0e4 100%);
}

.about-grid {
  display: grid;
  grid-template-columns: 280px 1fr 240px;
  gap: 2rem;
  align-items: center;
}

.about-photo {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow);
  aspect-ratio: 1;
}

.about-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-copy h2 {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 2.5vw, 2rem);
  color: var(--green-dark);
  line-height: 1.25;
  margin-bottom: 1rem;
  font-weight: 700;
}

.about-copy p {
  color: var(--text-muted);
  margin-bottom: 1.5rem;
  max-width: 480px;
}

.about-badge {
  text-align: center;
  padding: 1.5rem;
}

.about-badge .years {
  font-family: var(--font-display);
  font-size: 3.2rem;
  font-weight: 700;
  color: var(--green-dark);
  line-height: 1;
  display: block;
}

.about-badge .label {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--green-mid);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-top: 0.35rem;
  display: block;
}

.about-badge svg {
  width: 80px;
  height: 80px;
  color: var(--green-leaf);
  opacity: 0.7;
  margin: 0.75rem auto 0;
}

/* ===== INQUIRY / CONTACT ===== */
.inquiry {
  padding: 4rem 0;
  background: var(--green-mist);
}

.inquiry-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  align-items: stretch;
}

.inquiry-form-wrap,
.contact-details-wrap {
  background: var(--white);
  border-radius: 14px;
  padding: 2rem;
  box-shadow: 0 6px 24px rgba(26, 60, 42, 0.06);
}

.inquiry-form-wrap h2,
.contact-details-wrap h2 {
  font-family: var(--font-display);
  font-size: 1.75rem;
  color: var(--green-dark);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 0.35rem;
}

.inquiry-form-wrap > p {
  color: var(--text-muted);
  margin-bottom: 1.5rem;
  font-size: 0.95rem;
}

.form-group { margin-bottom: 1rem; }

.form-group label {
  display: block;
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--green-dark);
  margin-bottom: 0.35rem;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.8rem 1rem;
  border: 1.5px solid var(--border);
  border-radius: 8px;
  background: var(--green-mist);
  color: var(--text);
  transition: border-color var(--transition), box-shadow var(--transition), background var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--green-leaf);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(111, 173, 46, 0.15);
}

.form-group textarea { min-height: 120px; resize: vertical; }

.form-status {
  margin-top: 0.85rem;
  font-size: 0.9rem;
  min-height: 1.4em;
}

.form-status.success { color: var(--green-leaf); }
.form-status.error { color: #c0392b; }

.contact-list {
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
  margin-top: 1.25rem;
}

.contact-item {
  display: flex;
  gap: 0.85rem;
  align-items: flex-start;
}

.contact-item .ci-icon {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--green-soft);
  color: var(--green-dark);
  display: grid;
  place-items: center;
  flex-shrink: 0;
}

.contact-item .ci-icon svg { width: 18px; height: 18px; }

.contact-item strong {
  display: block;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--green-leaf);
  margin-bottom: 0.15rem;
}

.contact-item span,
.contact-item a {
  color: var(--text);
  font-size: 0.95rem;
}

.contact-item a:hover { color: var(--green-leaf); }

.contact-visual {
  margin-top: 1.5rem;
  border-radius: 12px;
  overflow: hidden;
  max-height: 220px;
}

.contact-visual img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

/* ===== FOOTER ===== */
.footer {
  background: var(--green-deep);
  color: #c5d9c8;
  padding: 3.5rem 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.3fr;
  gap: 2rem;
  padding-bottom: 2.5rem;
}

.footer-brand .logo img {
  height: 44px;
  width: auto;
  max-width: min(220px, 70vw);
  object-fit: contain;
}
.footer-brand .logo-text strong .bliss { color: #e8f0e4; }
.footer-brand .logo-text strong .plants { color: var(--green-leaf); }
.footer-brand .logo-text span { color: #a8c4ad; }

.footer-brand > p {
  margin: 1rem 0 1.25rem;
  font-size: 0.9rem;
  line-height: 1.65;
  max-width: 280px;
  color: #a8c4ad;
}

.footer-social {
  display: flex;
  gap: 0.65rem;
}

.footer-social a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  display: grid;
  place-items: center;
  transition: background var(--transition);
}

.footer-social a:hover { background: var(--green-leaf); color: white; }
.footer-social svg { width: 16px; height: 16px; }

.footer h4 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  color: var(--white);
  margin-bottom: 1.1rem;
  letter-spacing: 0.04em;
}

.footer-links li { margin-bottom: 0.55rem; }

.footer-links a {
  font-size: 0.9rem;
  color: #a8c4ad;
  transition: color var(--transition), padding-left var(--transition);
}

.footer-links a:hover {
  color: var(--green-leaf);
  padding-left: 4px;
}

.newsletter p {
  font-size: 0.9rem;
  color: #a8c4ad;
  margin-bottom: 1rem;
}

.newsletter-form {
  display: flex;
  border-radius: 8px;
  overflow: hidden;
  background: var(--white);
}

.newsletter-form input {
  flex: 1;
  border: none;
  padding: 0.75rem 1rem;
  outline: none;
  color: var(--text);
  min-width: 0;
}

.newsletter-form button {
  background: var(--green-leaf);
  border: none;
  color: white;
  padding: 0 1rem;
  cursor: pointer;
  display: grid;
  place-items: center;
  transition: background var(--transition);
}

.newsletter-form button:hover { background: #5f9626; }
.newsletter-form button svg { width: 18px; height: 18px; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 1.15rem 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.75rem;
  font-size: 0.82rem;
  color: #8eaa93;
}

.footer-bottom .heart { color: #e74c3c; }

/* Back to top */
.back-top {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--green-leaf);
  color: white;
  border: none;
  cursor: pointer;
  display: grid;
  place-items: center;
  box-shadow: 0 6px 20px rgba(111, 173, 46, 0.4);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: opacity var(--transition), visibility var(--transition), transform var(--transition), background var(--transition);
  z-index: 90;
}

.back-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-top:hover { background: var(--green-dark); }
.back-top svg { width: 20px; height: 20px; }

/* ===== INNER PAGES ===== */
.page-hero {
  background: linear-gradient(135deg, var(--green-deep), var(--green-mid));
  color: white;
  padding: 3rem 0;
  text-align: center;
}

.page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.8rem);
  margin-bottom: 0.5rem;
}

.page-hero p { opacity: 0.85; font-weight: 300; }

.page-content {
  padding: 3.5rem 0;
}

/* Shop page */
.shop-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-bottom: 2rem;
  justify-content: center;
}

.filter-btn {
  padding: 0.55rem 1.15rem;
  border: 1.5px solid var(--border);
  background: white;
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 500;
  cursor: pointer;
  color: var(--text);
  transition: all var(--transition);
}

.filter-btn:hover,
.filter-btn.active {
  background: var(--green-dark);
  border-color: var(--green-dark);
  color: white;
}

.offers-rail--grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
@media (min-width: 700px) {
  .offers-rail--grid {
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  }
}

/* Product listing grids — always 2-up on mobile */
.shop-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.85rem;
  width: 100%;
}
.shop-grid > .empty-state {
  grid-column: 1 / -1;
}
.wish-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.85rem;
}

.product-img {
  position: relative;
}

.badge-off {
  position: absolute;
  top: 0.55rem;
  right: 0.55rem;
  z-index: 2;
  background: #e85d2a;
  color: #fff;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  padding: 0.22rem 0.55rem;
  border-radius: 999px;
  line-height: 1.2;
  box-shadow: 0 2px 8px rgba(232, 93, 42, 0.35);
}

.product-card--grid .product-body {
  text-align: left;
  padding: 0.7rem 0.75rem 0.85rem;
  gap: 0.2rem;
}

.product-card--grid .product-body h3 {
  font-size: 1rem;
  line-height: 1.25;
  margin: 0;
}

.product-card--grid .product-sub {
  font-size: 0.75rem;
  color: var(--text-muted);
  margin: 0 0 0.35rem;
  line-height: 1.35;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.product-card--grid .product-price {
  margin: 0;
  font-size: 0.98rem;
  color: var(--green-dark);
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 0.25rem;
}

.product-card--grid .product-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  margin-top: 0.35rem;
}

.product-card--grid .bag-btn {
  width: 34px;
  height: 34px;
  flex-shrink: 0;
  border-radius: 50%;
  background: var(--green-dark, #1a3c2a);
  color: #fff;
  border: none;
  display: grid;
  place-items: center;
  text-decoration: none;
}

.product-card--grid .bag-btn svg {
  width: 15px;
  height: 15px;
}

.product-card--grid .ug-compare {
  font-weight: 400;
  color: #999;
  text-decoration: line-through;
  font-size: 0.8rem;
}

.product-card--grid .badge-best {
  position: absolute;
  top: 0.55rem;
  left: 0.55rem;
  z-index: 2;
  background: var(--yellow, #f5c518);
  color: #111;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  padding: 0.22rem 0.45rem;
  border-radius: 6px;
}

.product-card--grid .rating-chip {
  position: absolute;
  left: 0.45rem;
  bottom: 0.45rem;
  z-index: 2;
  background: rgba(255, 255, 255, 0.94);
  border-radius: 999px;
  font-size: 0.68rem;
  font-weight: 600;
  padding: 0.18rem 0.45rem;
}

@media (min-width: 700px) {
  .shop-grid,
  .wish-grid {
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 1.5rem;
  }
  .product-card--grid .product-body {
    padding: 0.9rem 1rem 1.05rem;
  }
  .product-card--grid .product-body h3 {
    font-size: 1.15rem;
  }
  .product-card--grid .bag-btn {
    width: 38px;
    height: 38px;
  }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1100px) {
  .product-grid { grid-template-columns: repeat(3, 1fr); }
  .cat-grid { grid-template-columns: repeat(3, 1fr); }
  .about-grid { grid-template-columns: 240px 1fr; }
  .about-badge { display: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
}

@media (max-width: 860px) {
  .product-grid,
  .shop-grid,
  .wish-grid,
  .bundle-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 0.85rem;
  }
  .header-main {
    grid-template-columns: 1fr auto;
    gap: 0.75rem;
  }
  .search-form {
    grid-column: 1 / -1;
    order: 3;
    max-width: none;
  }
  .menu-toggle { display: grid; place-items: center; }
  .nav { display: none; }
  .nav.open { display: block; }
  .nav-list {
    flex-direction: column;
    align-items: stretch;
    padding: 0.5rem 0 1rem;
  }
  .nav-list a {
    padding: 0.75rem 0.5rem;
    border-bottom: 1px solid var(--border);
  }
  .nav-list a.active::after { display: none; }
  .features-grid { grid-template-columns: 1fr; }
  .inquiry-grid { grid-template-columns: 1fr; }
  .hero {
    background:
      linear-gradient(180deg, rgba(247, 245, 239, 0.94) 0%, rgba(247, 245, 239, 0.75) 55%, rgba(247, 245, 239, 0.4) 100%),
      url('../images/hero.jpg') center / cover no-repeat;
    min-height: 460px;
  }
}

@media (max-width: 600px) {
  .topbar .container { justify-content: center; text-align: center; }
  .topbar-right { flex-wrap: wrap; justify-content: center; }
  .logo img {
    height: 40px;
    width: auto;
    max-width: min(180px, 42vw);
  }
  .header-actions span { display: none; }
  .cat-grid { grid-template-columns: repeat(2, 1fr); gap: 1.25rem; }
  .cat-img { width: 110px; height: 110px; }
  .about-grid { grid-template-columns: 1fr; }
  .about-photo { max-width: 280px; margin-inline: auto; }
  .footer {
    padding: 2.5rem 0 calc(5.5rem + env(safe-area-inset-bottom));
  }
  .footer-grid { grid-template-columns: 1fr; gap: 1.75rem; }
  .footer-bottom {
    justify-content: center;
    text-align: center;
    flex-direction: column;
  }
  .footer-brand > p { max-width: none; }
  .newsletter-form { width: 100%; }
  .product-grid { grid-template-columns: 1fr 1fr; gap: 0.85rem; }
  .product-body .btn { font-size: 0.7rem; padding: 0.6rem 0.5rem; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  html { scroll-behavior: auto; }
}

/* ===== QTY / WISHLIST / CART / CHECKOUT ===== */
.product-card { position: relative; }
.wish-btn {
  position: absolute;
  top: 0.65rem;
  right: 0.65rem;
  z-index: 2;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: none;
  background: rgba(255,255,255,0.92);
  color: var(--green-dark);
  cursor: pointer;
  display: grid;
  place-items: center;
  box-shadow: 0 4px 12px rgba(26,60,42,0.12);
  transition: color var(--transition), transform var(--transition), background var(--transition);
}
.wish-btn:hover { transform: scale(1.06); }
.wish-btn.active { color: #c0392b; }
.wish-btn svg { width: 18px; height: 18px; }
.wish-btn.active svg { fill: currentColor; }

.qty-control, .qty-row {
  display: inline-flex;
  align-items: center;
  gap: 0;
  border: 1.5px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
  background: var(--white);
  margin: 0.35rem auto 0.65rem;
}
.qty-btn {
  width: 36px;
  height: 36px;
  border: none;
  background: var(--green-mist);
  color: var(--green-dark);
  font-size: 1.15rem;
  font-weight: 600;
  cursor: pointer;
  transition: background var(--transition);
  line-height: 1;
}
.qty-btn:hover { background: var(--green-soft); }
.qty-input {
  width: 42px;
  height: 36px;
  border: none;
  text-align: center;
  font-weight: 600;
  color: var(--text);
  background: var(--white);
  outline: none;
}

.header-actions .wish-badge,
.wish-badge {
  position: absolute;
  top: -4px;
  right: 6px;
  background: var(--green-dark);
  color: white;
  font-size: 0.62rem;
  font-weight: 700;
  min-width: 16px;
  height: 16px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  padding: 0 3px;
}

.btn-outline {
  background: transparent;
  color: var(--green-dark);
  border: 1.5px solid var(--green-dark);
}
.btn-outline:hover {
  background: var(--green-dark);
  color: white;
}

.empty-state {
  text-align: center;
  padding: 3.5rem 1rem;
  background: var(--white);
  border-radius: 14px;
  box-shadow: 0 6px 24px rgba(26,60,42,0.06);
}
.empty-state h2 {
  font-family: var(--font-display);
  color: var(--green-dark);
  margin-bottom: 0.5rem;
}
.empty-state p { color: var(--text-muted); margin-bottom: 1.5rem; }

.cart-layout {
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  gap: 1.75rem;
  align-items: start;
}
.cart-list, .cart-summary, .checkout-card {
  background: var(--white);
  border-radius: 14px;
  padding: 1.35rem;
  box-shadow: 0 6px 24px rgba(26,60,42,0.06);
}

/* Cart progress / free delivery */
.cart-progress {
  background: var(--white);
  border-radius: 14px;
  padding: 1.1rem 1.25rem 1.2rem;
  margin-bottom: 1rem;
  box-shadow: 0 6px 24px rgba(26,60,42,0.06);
}
.cart-progress-text {
  font-size: 0.95rem;
  color: var(--green-dark);
  margin: 0 0 0.85rem;
}
.cart-progress-text strong { font-weight: 700; }
.cart-progress-track {
  position: relative;
  height: 6px;
  background: #e4ebe6;
  border-radius: 999px;
  margin: 1.1rem 1.6rem 0.55rem 0;
}
.cart-progress-fill {
  position: absolute;
  left: 0; top: 0; bottom: 0;
  background: var(--green-dark, #1a3c2a);
  border-radius: 999px;
  transition: width 0.35s ease;
  max-width: 100%;
}
.cart-progress-marker {
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--green-dark, #1a3c2a);
  color: #fff;
  display: grid;
  place-items: center;
  box-shadow: 0 2px 8px rgba(26,60,42,0.25);
  z-index: 2;
}
.cart-progress-goal {
  position: absolute;
  right: -1.55rem;
  top: 50%;
  transform: translateY(-50%);
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  color: var(--green-dark);
  background: #e8f3ea;
  border: 2px solid var(--green-dark, #1a3c2a);
  border-radius: 50%;
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  line-height: 1;
}
.cart-progress-note {
  margin: 0.65rem 0 0;
  font-size: 0.78rem;
  color: var(--text-muted);
}

.cart-row {
  display: grid;
  grid-template-columns: 80px 1fr auto;
  gap: 0.9rem;
  align-items: start;
  padding: 1rem 0;
  border-bottom: 1px solid var(--border);
}
.cart-row:last-child { border-bottom: none; }
.cart-thumb {
  width: 80px;
  height: 80px;
  object-fit: cover;
  border-radius: 10px;
  background: var(--green-mist);
}
.cart-info h3 {
  font-family: var(--font-display);
  font-size: 1.05rem;
  color: var(--green-dark);
  margin: 0 0 0.2rem;
  line-height: 1.25;
}
.cart-meta {
  margin: 0;
  font-size: 0.82rem;
  color: var(--text-muted);
}
.cart-price-line {
  margin: 0.45rem 0 0;
  display: flex;
  align-items: baseline;
  gap: 0.45rem;
}
.cart-price-line strong {
  color: var(--green-dark);
  font-size: 1rem;
}
.cart-price-line span {
  color: var(--text-muted);
  text-decoration: line-through;
  font-size: 0.85rem;
}
.cart-row-actions {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: space-between;
  gap: 0.75rem;
  min-height: 80px;
}
.cart-trash {
  background: none;
  border: none;
  padding: 0.2rem;
  color: #8a8a8a;
  cursor: pointer;
  line-height: 0;
}
.cart-trash:hover { color: #a33; }
.cart-qty.qty-control {
  border-radius: 999px;
  padding: 0.15rem 0.2rem;
  border: 1px solid var(--border);
  background: #f7faf8;
}
.cart-qty .qty-btn {
  width: 28px;
  height: 28px;
  border-radius: 50%;
}
.cart-qty .qty-input {
  width: 1.6rem;
  text-align: center;
  font-weight: 600;
  font-size: 0.9rem;
}
.cart-tax-note {
  margin: 0.35rem 0 0.85rem;
  font-size: 0.78rem;
  color: var(--text-muted);
}
.cart-checkout-btn {
  width: 100%;
  margin-top: 0.35rem;
  letter-spacing: 0.06em;
  font-weight: 700;
}
.cart-summary--sticky {
  position: sticky;
  top: 5.5rem;
}
.cart-line { font-weight: 700; color: var(--green-dark); min-width: 70px; text-align: right; }
.link-btn {
  background: none;
  border: none;
  color: #a33;
  cursor: pointer;
  font-size: 0.82rem;
  text-decoration: underline;
}
.cart-summary h2, .checkout-card h2 {
  font-family: var(--font-display);
  color: var(--green-dark);
  margin-bottom: 1rem;
  font-size: 1.45rem;
}
.summary-row {
  display: flex;
  justify-content: space-between;
  padding: 0.45rem 0;
  color: var(--text-muted);
}
.summary-row.total {
  border-top: 1px solid var(--border);
  margin-top: 0.5rem;
  padding-top: 0.85rem;
  color: var(--green-dark);
  font-size: 1.1rem;
}
.summary-row.discount strong { color: #0f7a45; }
.coupon-box {
  margin: 1rem 0;
  padding: 0.9rem;
  border: 1px dashed var(--green-leaf, #6fad2e);
  border-radius: 12px;
  background: rgba(111,173,46,0.06);
}
.coupon-box label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 0.45rem;
  color: var(--green-dark);
}
.coupon-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 0.5rem;
}
.coupon-row input {
  width: 100%;
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 0.65rem 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-weight: 600;
}
.coupon-status {
  margin-top: 0.45rem;
  font-size: 0.82rem;
  color: var(--green-dark);
}
.coupon-status.error { color: #b42318; }
.checkout-offers {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin-top: 0.65rem;
}
.offer-chip {
  border: 1px solid var(--border);
  background: #fff;
  border-radius: 999px;
  padding: 0.35rem 0.7rem;
  font-size: 0.78rem;
  cursor: pointer;
  display: inline-flex;
  gap: 0.4rem;
  align-items: center;
}
.offer-chip span {
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--green-dark);
}
.offers-band {
  padding: 2.25rem 0 2rem;
  background: #fff;
}
.offers-head {
  margin-bottom: 1.15rem;
}
.offers-head h2 {
  font-family: var(--font-display);
  color: #1a1a1a;
  margin: 0;
  font-size: clamp(1.6rem, 3vw, 2.1rem);
  font-weight: 700;
  letter-spacing: -0.02em;
}
.offers-head p {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.95rem;
}
.offers-rail {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
@media (max-width: 900px) {
  .offers-rail {
    grid-template-columns: 1fr;
    gap: 0.85rem;
  }
}
.offer-banner {
  position: relative;
  display: block;
  border-radius: 14px;
  overflow: hidden;
  min-height: 220px;
  background: #d9e5d4 center/cover no-repeat;
  text-decoration: none;
  color: inherit;
  box-shadow: 0 6px 20px rgba(0, 40, 25, 0.08);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.offer-banner:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(0, 40, 25, 0.12);
}
.offer-banner--image-only {
  min-height: 0;
  aspect-ratio: 16 / 10;
  background: #e8efe4;
}
.offer-banner--image-only img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.offer-banner::after {
  content: none;
}
.offer-banner-inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 220px;
  padding: 1rem 1.05rem 1.15rem;
}
.offer-banner-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0.75rem;
}
.offer-banner-copy {
  max-width: 70%;
}
.offer-banner-copy h3 {
  margin: 0;
  color: #004737;
  font-size: clamp(1.05rem, 2.2vw, 1.35rem);
  font-weight: 800;
  line-height: 1.15;
  text-transform: uppercase;
  letter-spacing: 0.01em;
  text-shadow: 0 1px 0 rgba(255,255,255,0.55);
}
.offer-banner-copy p {
  margin: 0.2rem 0 0;
  color: #004737;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.offer-seal {
  flex: 0 0 auto;
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 30%, #2f8f4e, #0f5c32 70%);
  color: #fff;
  display: grid;
  place-items: center;
  text-align: center;
  font-size: 0.58rem;
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  box-shadow: 0 4px 12px rgba(0, 50, 30, 0.25);
  padding: 0.45rem;
}
.offer-banner-cta {
  align-self: center;
  display: inline-block;
  background: #004737;
  color: #fff;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.55rem 1.35rem;
  border-radius: 4px;
  border: none;
  margin-top: 1rem;
}
.offer-card {
  position: relative;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 1.1rem 1.15rem;
  background: #fff;
}
.offer-badge {
  display: inline-block;
  background: #ffd400;
  color: #004737;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  padding: 0.2rem 0.5rem;
  border-radius: 6px;
  margin-bottom: 0.55rem;
}
.offer-card h3 {
  margin: 0 0 0.35rem;
  color: var(--green-dark);
  font-size: 1.05rem;
}
.offer-card p {
  margin: 0 0 0.75rem;
  color: var(--text-muted);
  font-size: 0.9rem;
}
.offer-code-row {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.75rem;
}
.offer-code-row code {
  background: #f3f6f1;
  border: 1px dashed var(--green-leaf, #6fad2e);
  padding: 0.25rem 0.5rem;
  border-radius: 6px;
  font-weight: 700;
  letter-spacing: 0.05em;
}
.copy-offer, .offer-link {
  border: none;
  background: transparent;
  color: var(--green-dark);
  font-weight: 700;
  font-size: 0.85rem;
  cursor: pointer;
  text-decoration: underline;
  padding: 0;
}
.offer-link { display: inline-block; }
.wish-actions {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}
.wish-actions .btn { width: 100%; font-size: 0.75rem; padding: 0.65rem; }

.checkout-layout {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 1.75rem;
  align-items: start;
}
.checkout-items { margin-bottom: 1rem; }
.checkout-items li {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.45rem 0;
  border-bottom: 1px dashed var(--border);
  font-size: 0.95rem;
}
.pay-note {
  margin-top: 0.85rem;
  font-size: 0.82rem;
  color: var(--text-muted);
}
.form-row-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.85rem;
}
.success-box {
  max-width: 560px;
  margin: 0 auto;
  text-align: center;
  background: var(--white);
  border-radius: 14px;
  padding: 2.5rem 1.75rem;
  box-shadow: 0 6px 24px rgba(26,60,42,0.06);
}
.success-box h1 {
  font-family: var(--font-display);
  color: var(--green-dark);
  margin: 0.75rem 0;
}
.success-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto;
  border-radius: 50%;
  background: var(--green-soft);
  color: var(--green-leaf);
  display: grid;
  place-items: center;
}
.success-icon svg { width: 32px; height: 32px; }
.success-actions { display: flex; gap: 0.75rem; justify-content: center; flex-wrap: wrap; margin-top: 1.5rem; }

@media (max-width: 860px) {
  .cart-layout, .checkout-layout { grid-template-columns: 1fr; }
  .cart-row {
    grid-template-columns: 72px 1fr auto;
  }
  .cart-thumb { width: 72px; height: 72px; }
  .cart-summary--sticky { position: static; }
  .form-row-2 { grid-template-columns: 1fr; }
}

/* ===== PRODUCT DETAIL PAGE ===== */
.pdp { background: #fff7f4; padding: 1.25rem 0 3.5rem; }
.pdp-loading { padding: 3rem 0; color: var(--text-muted); }
.pdp-crumb { font-size: 0.85rem; color: var(--text-muted); margin-bottom: 1rem; }
.pdp-crumb a { color: var(--green-leaf); }
.pdp-grid {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  align-items: stretch;
}
.pdp-gallery-col {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  width: calc(100% + 2rem);
  max-width: none;
  margin-inline: -1rem;
}
.pdp-thumbs--desktop { display: none; }
.pdp-gallery { grid-area: auto; }
.pdp-thumbs {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.pdp-thumbs--mobile {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: flex-start;
  align-items: center;
  gap: 8px;
  padding: 0.35rem 1rem 0.15rem;
  overflow-x: auto;
  overflow-y: hidden;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}
.pdp-thumbs--mobile::-webkit-scrollbar { display: none; }
.pdp-thumb {
  width: 76px;
  height: 76px;
  padding: 0;
  border: 0;
  border-radius: 8px;
  overflow: hidden;
  background: #f3eee6;
  cursor: pointer;
  opacity: 0.72;
}
.pdp-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }
.pdp-thumb.active { opacity: 1; box-shadow: inset 0 0 0 2px #0a4d3c; }
.pdp-gallery {
  position: relative;
  background: #f3eee6;
  border-radius: 12px;
  overflow: hidden;
  aspect-ratio: 1;
}
.pdp-badge-off {
  position: absolute;
  top: 0.7rem;
  right: 0.7rem;
  z-index: 4;
  background: #0a4d3c;
  color: #fff;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  padding: 0.35rem 0.65rem;
  border-radius: 999px;
  line-height: 1;
  box-shadow: 0 4px 14px rgba(10, 77, 60, 0.35);
  pointer-events: none;
}
.pdp-gallery:has(.pdp-badge-off) .gal-counter {
  top: auto;
  bottom: 2.6rem;
  right: 0.75rem;
}
.pdp-gallery img,
.pdp-gallery video.pdp-main-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  background: #111;
}
.pdp-gallery video.pdp-main-video {
  object-fit: contain;
  background: #0a0a0a;
}
.gal-counter {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  z-index: 2;
  background: rgba(0, 0, 0, 0.55);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 600;
  padding: 0.25rem 0.55rem;
  border-radius: 999px;
  letter-spacing: 0.02em;
}
.pdp-thumb {
  position: relative;
}
.pdp-thumb video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  background: #111;
  pointer-events: none;
}
.pdp-thumb-play {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  color: #fff;
  font-size: 0.75rem;
  background: rgba(0, 0, 0, 0.28);
  pointer-events: none;
}
.gal-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: none;
  background: rgba(255,255,255,0.9);
  color: var(--green-dark);
  font-size: 1.4rem;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  z-index: 2;
}
.gal-prev { left: 0.75rem; }
.gal-next { right: 0.75rem; }
.gal-dots {
  position: absolute;
  bottom: 0.85rem;
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
  gap: 0.4rem;
}
.gal-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: none;
  background: rgba(255,255,255,0.55);
  cursor: pointer;
}
.gal-dot.active { background: var(--green-leaf); }

.pdp-info {
  background: transparent;
  border-radius: 0;
  padding: 0;
  box-shadow: none;
}
.pdp-rating {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.88rem;
  color: #646464;
  margin-bottom: 0.5rem;
}
.pdp-rating .star { color: #00a93d; }
.pdp-rating .sep { opacity: 0.5; }
.pdp-title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  color: #0a4d3c;
  margin-bottom: 0.4rem;
  font-weight: 600;
  line-height: 1.15;
}
.pdp-sold-proof {
  margin: 0 0 0.55rem;
  font-size: 0.88rem;
  font-weight: 600;
  color: #c45a4a;
  line-height: 1.35;
}
.pdp-desc { color: #646464; font-size: 0.95rem; margin-bottom: 0.85rem; line-height: 1.45; }
.pdp-features {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 16px;
  margin: 0 0 1.25rem;
  padding: 0 0 1.1rem;
  border-bottom: 1px solid rgba(10, 77, 60, 0.12);
  list-style: none;
}
.pdp-features li {
  font-size: 0.88rem;
  color: #1a1a1a;
  padding-right: 16px;
  border-right: 1px solid #ddd;
}
.pdp-features li:last-child { border-right: none; padding-right: 0; }

.pdp-block { margin-bottom: 1.15rem; }
.pdp-block h2 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  color: #042018;
  margin-bottom: 0.7rem;
  font-weight: 600;
}
.pdp-block h2 em { font-style: normal; font-weight: 500; color: var(--text-muted); }
.pdp-block-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.75rem;
}
.pdp-block-head h2 { margin-bottom: 0; }
.text-link {
  background: none;
  border: none;
  color: var(--green-leaf);
  font-size: 0.85rem;
  cursor: pointer;
  text-decoration: underline;
}

.size-options {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.35rem;
}
.size-btn {
  min-width: 0;
  max-width: none;
  width: 100%;
  flex: 0 1 auto;
  padding: 0.38rem 0.3rem;
  border-radius: 8px;
  border: 1.5px solid #d9d2bf;
  background: #fff;
  color: #20281f;
  font-size: 0.88rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.18s ease;
  text-align: center;
}
.size-btn.active, .size-btn:hover {
  background: #00a859;
  border-color: #00a859;
  color: white;
}

.planter-scroll {
  display: flex;
  gap: 4px;
  overflow-x: auto;
  padding-bottom: 0.25rem;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}
.planter-scroll::-webkit-scrollbar { display: none; }
.planter-card {
  position: relative;
  flex: 0 0 76px;
  padding: 0.45rem 0.3rem 0.4rem;
  border-radius: 8px;
  border: 1px solid #ddd;
  background: #fff;
  color: #20281f;
  cursor: pointer;
  text-align: center;
  transition: all 0.18s ease;
}
.planter-card.active {
  background: #00a859;
  border-color: #00a859;
  color: white;
}
.planter-icon { display: grid; place-items: center; margin-bottom: 0.2rem; min-height: 32px; color: inherit; }
.planter-icon svg { width: 26px; height: 26px; }
.planter-card.active .planter-icon { color: #fff; }
.planter-img {
  width: 36px;
  height: 36px;
  object-fit: cover;
  border-radius: 6px;
  display: block;
}
.planter-card.active .planter-img {
  box-shadow: 0 0 0 2px rgba(255,255,255,0.55);
}
.planter-name { display: block; font-size: 0.72rem; font-weight: 600; line-height: 1.2; }
.planter-price { display: block; font-size: 0.68rem; opacity: 0.95; margin-top: 0.1rem; }
.planter-heart {
  position: absolute;
  top: 4px;
  right: 6px;
  color: #e74c3c;
  font-size: 0.75rem;
}
.planter-card.active .planter-heart { color: #ffd7d7; }

.color-options { display: flex; gap: 0.55rem; align-items: center; flex-wrap: wrap; }
.color-swatch {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  border: 2px solid transparent;
  cursor: pointer;
  box-shadow: inset 0 0 0 1px #ddd;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
  padding: 0;
}
.color-swatch.active {
  box-shadow: inset 0 0 0 2px #009252;
  transform: scale(1.06);
}

.pdp-price-row { margin-bottom: 1rem; }
.pdp-price {
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--green-dark);
}
.pdp-compare {
  margin-left: 0.5rem;
  text-decoration: line-through;
  color: var(--text-muted);
  font-size: 1rem;
}
.price-breakdown {
  margin: 0.35rem 0 0;
  font-size: 0.78rem;
  color: var(--text-muted);
  line-height: 1.35;
}
.combo-title-label {
  margin: 0.4rem 0 0;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--green-dark);
}
.tax-note { font-size: 0.78rem; color: var(--text-muted); margin-top: 0.2rem; }
.color-addon-note {
  margin: 0.5rem 0 0;
  font-size: 0.78rem;
  color: var(--text-muted);
}
.size-btn small {
  display: block;
  font-size: 0.7rem;
  font-weight: 600;
  opacity: 0.85;
  margin-top: 0.15rem;
}

.gift-check {
  display: flex;
  align-items: flex-start;
  gap: 0.55rem;
  font-size: 0.92rem;
  color: var(--text);
  margin-bottom: 1.15rem;
  cursor: pointer;
}
.gift-check input {
  width: 18px;
  height: 18px;
  margin-top: 2px;
  accent-color: var(--green-leaf);
}

.pdp-cta {
  display: none;
  grid-template-columns: auto 1fr 1fr;
  gap: 0.55rem;
  align-items: center;
  margin-bottom: 1.15rem;
}
.pdp-qty { margin: 0; height: 44px; }
.pdp-qty .qty-btn, .pdp-qty .qty-input { height: 44px; }
.pdp-qty .qty-btn { width: 36px; font-size: 1rem; }
.pdp-qty .qty-input { width: 40px; font-size: 0.9rem; }
.qty-control.pdp-qty {
  border-radius: 100px;
  overflow: hidden;
  border: 1px solid #ddd;
}
.pdp-add, .pdp-buy {
  height: 44px;
  width: 100%;
  border-radius: 100px;
  font-size: 0.82rem;
  letter-spacing: 0.02em;
  font-weight: 700;
  padding: 0 0.65rem;
}
.pdp-add {
  background: #0a4d3c;
  color: #fff;
  border: none;
}
.pdp-buy {
  background: #fff;
  color: #0a4d3c;
  border: 1.5px solid #0a4d3c;
  font-weight: 700;
  cursor: pointer;
}
.pdp-buy:hover { background: #0a4d3c; color: #fff; }
.spec-list { margin: 0; }
.spec-row {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 0.5rem;
  padding: 0.45rem 0;
  border-bottom: 1px solid var(--border, #e5e5e5);
  font-size: 0.92rem;
}
.spec-row dt { color: var(--text-muted, #666); font-weight: 600; }
.spec-row dd { margin: 0; }

.pdp-specs {
  border: 1px solid rgba(10, 77, 60, 0.12);
  border-radius: 12px;
  background: #fff;
  overflow: hidden;
  padding: 0 !important;
}
.pdp-specs > summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 0.95rem 1.05rem;
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 600;
  color: #042018;
}
.pdp-specs > summary::-webkit-details-marker { display: none; }
.pdp-specs > summary::after {
  content: '+';
  font-size: 1.3rem;
  color: #0a4d3c;
  line-height: 1;
}
.pdp-specs[open] > summary::after { content: '−'; }
.pdp-specs .spec-list {
  padding: 0 1.05rem 0.9rem;
  border-top: 1px solid rgba(10, 77, 60, 0.08);
}
.variant-list { margin: 0; padding-left: 1.1rem; color: var(--text-muted, #555); }

.offer-box {
  border: 1.5px dashed var(--green-leaf);
  border-radius: 12px;
  padding: 0.95rem 1rem;
  background: rgba(111,173,46,0.06);
}
.offer-box strong { display: block; color: var(--green-dark); margin-bottom: 0.45rem; }
.offer-code {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 0.3rem 0.55rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--green-dark);
}
.copy-btn {
  border: none;
  background: none;
  cursor: pointer;
  color: var(--green-mid);
  display: grid;
  place-items: center;
  padding: 0;
}
.copy-btn.copied { color: var(--green-leaf); }

.pdp-extra-actions {
  display: flex;
  gap: 0.65rem;
  flex-wrap: wrap;
  margin-top: 0.5rem;
}
.pdp-extra-actions .btn { flex: 1; min-width: 140px; }

.wa-fab {
  position: fixed;
  right: 1.25rem;
  bottom: 5rem;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: #25d366;
  color: white;
  display: grid;
  place-items: center;
  box-shadow: 0 8px 22px rgba(37,211,102,0.4);
  z-index: 80;
  transition: transform var(--transition);
}
.wa-fab:hover { transform: scale(1.06); }
.wa-fab svg { width: 26px; height: 26px; }

.modal {
  position: fixed;
  inset: 0;
  background: rgba(15,42,28,0.45);
  display: grid;
  place-items: center;
  z-index: 200;
  padding: 1rem;
}
.modal[hidden] { display: none !important; }
.modal-card {
  background: white;
  border-radius: 14px;
  padding: 1.5rem;
  max-width: 420px;
  width: 100%;
  position: relative;
}
.modal-card h3 {
  font-family: var(--font-display);
  color: var(--green-dark);
  margin-bottom: 0.85rem;
}
.modal-card li { margin-bottom: 0.55rem; color: var(--text-muted); font-size: 0.95rem; }
.modal-close {
  position: absolute;
  top: 0.5rem;
  right: 0.75rem;
  border: none;
  background: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--text-muted);
}

.product-card { cursor: pointer; }
.product-card a.product-link {
  color: inherit;
  text-decoration: none;
}
.product-card .product-link h3:hover { color: var(--green-leaf); }

.cart-meta {
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-top: 0.15rem;
}

.pdp-sticky-bar {
  display: flex;
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 300;
  align-items: center;
  gap: 0.45rem;
  padding: 0.45rem 0.65rem calc(0.45rem + env(safe-area-inset-bottom));
  background: #fff;
  border-top: 1px solid #e5e5e5;
  box-shadow: 0 -3px 16px rgba(0, 0, 0, 0.07);
}
.pdp-sticky-price { min-width: 3.5rem; }
.pdp-sticky-price strong { display: block; font-size: 0.92rem; color: #0a4d3c; }
.pdp-sticky-price span { font-size: 0.62rem; color: #999; text-decoration: line-through; }
.pdp-sticky-actions {
  flex: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.3rem;
}
.pdp-sticky-actions .btn {
  min-height: 0;
  height: 34px;
  padding: 0 0.35rem;
  font-size: 0.65rem;
  border-radius: 999px;
}

.pdp-gallery {
  width: 100%;
  max-width: 100%;
  margin-inline: auto;
  border-radius: 12px;
  aspect-ratio: 1;
}
.pdp-thumb { width: 56px; height: 56px; border-radius: 8px; flex-shrink: 0; }

.pdp-marquee {
  display: block;
  width: 100%;
  overflow: hidden;
  margin: 0.15rem 0 0.85rem;
  padding: 0.55rem 0;
  border: none;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  background: transparent;
}
.pdp-marquee__viewport { overflow: hidden; width: 100%; }
.pdp-marquee__track {
  display: flex;
  width: max-content;
  animation: pdpMarqueeScroll 18s linear infinite;
  will-change: transform;
}
.pdp-marquee__group {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  padding-right: 0.65rem;
  white-space: nowrap;
  flex-shrink: 0;
}
.pdp-marquee__item {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  color: #1a1a1a;
}
.pdp-marquee__dot {
  font-size: 0.72rem;
  font-weight: 400;
  color: rgba(26, 26, 26, 0.35);
}
@keyframes pdpMarqueeScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
@media (prefers-reduced-motion: reduce) {
  .pdp-marquee__track { animation: none; }
}

/* ===== PDP customer reviews (Little Jungle–style) ===== */
.pdp-reviews {
  padding: 1.25rem 0 0.5rem;
  background: #fff;
  border-top: 1px solid #ececec;
}
.pdp-reviews > .container {
  width: 100%;
  max-width: 720px;
  padding-inline: 1rem;
  box-sizing: border-box;
}
.pdp-reviews-summary {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: stretch;
  margin-bottom: 1.15rem;
}
.pdp-reviews-score-row {
  display: flex;
  align-items: baseline;
  gap: 0.35rem;
}
.pdp-reviews-avg {
  font-size: 2.25rem;
  font-weight: 800;
  line-height: 1;
  color: #1a1a1a;
}
.pdp-reviews-avg-star {
  color: #1f8f4e;
  font-size: 1.25rem;
}
.pdp-reviews-meta {
  margin: 0.35rem 0 0.45rem;
  font-size: 0.82rem;
  color: #6b6b6b;
}
.pdp-reviews-trust {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  margin: 0;
  font-size: 0.72rem;
  font-weight: 600;
  color: #3a3a3a;
}
.pdp-reviews-bars {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  width: 100%;
  min-width: 0;
}
.pdp-reviews-bar-row {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: center;
  gap: 0.5rem;
  width: 100%;
  min-width: 0;
  font-size: 0.75rem;
  color: #555;
}
.pdp-reviews-bar-label {
  flex: 0 0 2.4rem;
  white-space: nowrap;
}
.pdp-reviews-bar-track {
  flex: 1 1 auto;
  min-width: 48px;
  height: 8px;
  border-radius: 999px;
  background: #efefef;
  overflow: hidden;
}
.pdp-reviews-bar-fill {
  height: 100%;
  border-radius: inherit;
  min-width: 0;
  max-width: 100%;
}
.pdp-reviews-bar-count {
  flex: 0 0 2.5rem;
  text-align: right;
  color: #888;
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
}
.pdp-reviews-photos { margin-bottom: 1.15rem; }
.pdp-reviews-photos h3 {
  margin: 0 0 0.65rem;
  font-size: 1rem;
  font-weight: 700;
  color: #1a1a1a;
}
.pdp-reviews-photo-rail {
  display: flex;
  gap: 0.55rem;
  overflow-x: auto;
  padding-bottom: 0.25rem;
  scrollbar-width: thin;
}
.pdp-reviews-photo {
  flex: 0 0 auto;
  width: 72px;
  height: 72px;
  padding: 0;
  border: 0;
  border-radius: 10px;
  overflow: hidden;
  background: #f3f3f3;
  cursor: pointer;
}
.pdp-reviews-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.pdp-reviews-list {
  display: grid;
  gap: 0.75rem;
  padding-bottom: 0.5rem;
}
.pdp-review-card {
  border: 1px solid #e6e6e6;
  border-radius: 12px;
  padding: 0.85rem 0.9rem;
  background: #fff;
}
.pdp-review-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 0.55rem;
}
.pdp-review-who {
  display: flex;
  gap: 0.55rem;
  align-items: center;
  min-width: 0;
}
.pdp-review-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #e8f3ec;
  color: #1f8f4e;
  font-weight: 800;
  font-size: 0.95rem;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  text-transform: lowercase;
}
.pdp-review-author {
  display: block;
  font-size: 0.9rem;
  color: #1a1a1a;
  line-height: 1.2;
}
.pdp-review-date {
  display: block;
  font-size: 0.72rem;
  color: #8a8a8a;
  margin-top: 0.15rem;
}
.pdp-review-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.2rem;
  font-size: 0.85rem;
  font-weight: 700;
  flex-shrink: 0;
}
.pdp-review-badge--good { color: #1f8f4e; }
.pdp-review-badge--mid { color: #d4a017; }
.pdp-review-badge--bad { color: #d64545; }
.pdp-review-body {
  margin: 0;
  font-size: 0.88rem;
  line-height: 1.45;
  color: #2a2a2a;
}
.pdp-review-more {
  margin-top: 0.25rem;
  padding: 0;
  border: 0;
  background: none;
  color: #1f8f4e;
  font-size: 0.82rem;
  font-weight: 700;
  cursor: pointer;
}
.pdp-review-thumb {
  margin-top: 0.65rem;
  width: 72px;
  height: 72px;
  border-radius: 10px;
  overflow: hidden;
  background: #f3f3f3;
}
.pdp-review-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.pdp-reviews-empty {
  margin: 0;
  color: #777;
  font-size: 0.9rem;
}
@media (min-width: 640px) {
  .pdp-reviews { padding: 1.75rem 0 1rem; }
  .pdp-reviews-summary {
    flex-direction: row;
    gap: 1.5rem;
    align-items: flex-start;
  }
  .pdp-reviews-score { flex: 0 0 140px; }
  .pdp-reviews-bars { flex: 1 1 auto; max-width: 360px; }
  .pdp-reviews-avg { font-size: 2.5rem; }
  .pdp-reviews-photo { width: 88px; height: 88px; }
}

.pdp-related {
  padding: 0.75rem 0 calc(4.5rem + env(safe-area-inset-bottom));
  background: #fff7f4;
}
.pdp-related-title {
  font-family: var(--font-display);
  font-size: 1.15rem;
  color: #0a4d3c;
  margin: 0 0 0.75rem;
  font-weight: 700;
}
.pdp-related-rail {
  display: flex;
  gap: 0.55rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding-bottom: 0.25rem;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}
.pdp-related-rail::-webkit-scrollbar { display: none; }
.pdp-related-card {
  flex: 0 0 132px;
  scroll-snap-align: start;
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(26, 60, 42, 0.07);
}
.pdp-related-link { display: block; color: inherit; text-decoration: none; }
.pdp-related-img { aspect-ratio: 1; background: #f3eee6; overflow: hidden; }
.pdp-related-img img { width: 100%; height: 100%; object-fit: cover; display: block; }
.pdp-related-card h3 {
  font-size: 0.78rem;
  font-weight: 600;
  color: #0a4d3c;
  margin: 0.45rem 0.55rem 0.15rem;
  line-height: 1.25;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.pdp-related-price {
  margin: 0 0.55rem 0.55rem;
  font-size: 0.82rem;
  font-weight: 700;
  color: #00a859;
}

@media (min-width: 1024px) {
  .pdp-grid {
    display: grid;
    grid-template-columns: minmax(280px, 1.05fr) minmax(280px, 0.95fr);
    gap: 2.25rem;
    align-items: start;
  }
  .pdp-gallery-col {
    display: grid;
    grid-template-columns: 76px 1fr;
    grid-template-areas: "thumbs gallery";
    width: auto;
    margin-inline: 0;
    gap: 12px;
  }
  .pdp-thumbs--desktop { display: flex; grid-area: thumbs; }
  .pdp-thumbs--mobile { display: none; }
  .pdp-gallery {
    grid-area: gallery;
    width: 100%;
    max-height: none;
    aspect-ratio: 1;
    border-radius: 12px;
    margin-inline: 0;
  }
  .pdp-thumb { width: 76px; height: 76px; border-radius: 8px; }
  .pdp-cta { display: grid; }
  .pdp-sticky-bar { display: none; }
  .pdp-marquee { display: none; }
  .size-options { display: flex; grid-template-columns: none; gap: 0.45rem; }
  .size-btn {
    width: auto;
    min-width: 88px;
    max-width: 130px;
    padding: 0.55rem 0.6rem;
    font-size: 0.88rem;
  }
  .size-btn small { display: block; font-size: 0.7rem; margin-top: 0.15rem; }
  .planter-card { flex: 0 0 76px; padding: 0.45rem 0.3rem 0.4rem; }
  .planter-img { width: 36px; height: 36px; }
  .planter-icon { min-height: 32px; }
  .planter-icon svg { width: 26px; height: 26px; }
  .planter-name { font-size: 0.72rem; }
  .planter-price { font-size: 0.68rem; }
  .pdp-related {
    padding: 1.25rem 0 0.5rem;
  }
  .pdp-related-rail {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.85rem;
    overflow: visible;
  }
  .pdp-related-card { flex: none; width: auto; }
}

@media (max-width: 1023px) {
  .pdp-cta { display: none !important; }
  .pdp-mobile-head .pdp-title { font-size: 1.28rem; margin: 0 0 0.15rem; }
  .pdp-mobile-head .pdp-sold-proof { font-size: 0.82rem; margin: 0 0 0.35rem; }
  .pdp-mobile-head .pdp-desc { font-size: 0.8rem; margin: 0; }
  .pdp-wrap.container { width: 100%; max-width: 100%; }
}


/* ===== Bundle collection page ===== */
.bundle-page { padding-bottom: 0; }
.bundle-hero {
  background: #f3eee3 center/cover no-repeat;
  padding: 2.5rem 0 2.75rem;
  border-bottom: 1px solid rgba(0,0,0,0.04);
}
.bundle-hero-inner {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1.25rem;
  min-height: 140px;
}
.bundle-hero-copy h1 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 4vw, 2.6rem);
  color: #004737;
  font-weight: 800;
  line-height: 1.15;
  text-transform: uppercase;
  max-width: 16ch;
}
.bundle-hero-copy p {
  margin: 0.45rem 0 0;
  color: #004737;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-size: 0.9rem;
}
.bundle-hero .offer-seal {
  width: 96px;
  height: 96px;
  font-size: 0.68rem;
}
.bundle-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.15rem;
}
@media (max-width: 1000px) {
  .bundle-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 520px) {
  .bundle-grid { grid-template-columns: 1fr 1fr; gap: 0.75rem; }
}
.bundle-card {
  position: relative;
  background: #fff;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(0,0,0,0.06);
  display: flex;
  flex-direction: column;
}
.bundle-card.in-bundle {
  box-shadow: 0 0 0 2px var(--green-leaf, #2f8f4e);
}
.bundle-card-img {
  display: block;
  position: relative;
  aspect-ratio: 1;
  background: #f5f1e8;
}
.bundle-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.bundle-card-body {
  padding: 0.85rem 0.9rem 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  flex: 1;
}
.bundle-card-body h3 {
  margin: 0;
  font-size: 0.98rem;
  line-height: 1.25;
}
.bundle-card-body h3 a { color: inherit; text-decoration: none; }
.bundle-card-body .sub {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.78rem;
}
.bundle-card-price {
  display: flex;
  align-items: baseline;
  gap: 0.4rem;
  margin-top: 0.15rem;
}
.bundle-card-price strong {
  color: var(--green-dark);
  font-size: 1rem;
}
.bundle-card-price span {
  color: var(--text-muted);
  text-decoration: line-through;
  font-size: 0.82rem;
}
.bundle-add-btn {
  width: 100%;
  margin-top: auto;
  text-align: center;
  font-size: 0.82rem;
  padding: 0.65rem 0.75rem;
}
.bundle-card.in-bundle .bundle-add-btn {
  background: #0f5c32;
}

.bundle-sticky {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 60;
  background: #004737;
  color: #fff;
  box-shadow: 0 -8px 24px rgba(0,0,0,0.18);
  padding: 0.75rem 0;
}
.bundle-sticky-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.bundle-sticky-info {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  min-width: 0;
}
.bundle-sticky-info strong {
  display: block;
  font-size: 0.98rem;
}
.bundle-sticky-info p {
  margin: 0.1rem 0 0;
  font-size: 0.78rem;
  opacity: 0.85;
}
.bundle-progress-ring {
  position: relative;
  width: 44px;
  height: 44px;
  flex: 0 0 auto;
}
.bundle-progress-ring svg {
  width: 44px;
  height: 44px;
  transform: rotate(-90deg);
}
.bundle-progress-ring .ring-bg {
  fill: none;
  stroke: rgba(255,255,255,0.2);
  stroke-width: 3;
}
.bundle-progress-ring .ring-fg {
  fill: none;
  stroke: #c8e86a;
  stroke-width: 3;
  stroke-linecap: round;
  stroke-dasharray: 97.4;
  stroke-dashoffset: 97.4;
  transition: stroke-dashoffset 0.25s ease;
}
.bundle-progress-ring span {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  font-size: 0.78rem;
  font-weight: 800;
}
.bundle-checkout-btn {
  background: #fff !important;
  color: #004737 !important;
  border: none;
  white-space: nowrap;
  font-weight: 800;
}
.bundle-checkout-btn:disabled {
  opacity: 0.55;
  cursor: not-allowed;
}
@media (max-width: 700px) {
  .bundle-page .bottom-nav { bottom: 72px; }
  .bundle-sticky { padding-bottom: calc(0.65rem + env(safe-area-inset-bottom, 0px)); }
  .bundle-sticky-inner { flex-wrap: wrap; }
  .bundle-checkout-btn { width: 100%; }
}

/* Blog listing + post */
.blog-list {
  display: grid;
  gap: 1.25rem;
  max-width: 920px;
}
.blog-list-card {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 1.1rem;
  align-items: stretch;
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  box-shadow: 0 6px 18px rgba(0,0,0,0.05);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.blog-list-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(0,0,0,0.08);
}
.blog-list-img img {
  width: 100%;
  height: 100%;
  min-height: 140px;
  object-fit: cover;
  display: block;
}
.blog-list-body {
  padding: 1rem 1.1rem 1.1rem 0;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}
.blog-list-body time {
  font-size: 0.78rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.blog-list-body h2 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  color: var(--green-deep);
  margin: 0;
  line-height: 1.25;
}
.blog-list-body p {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.5;
  flex: 1;
}
.blog-read {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--green-deep);
  margin-top: 0.35rem;
}
.blog-post {
  max-width: 760px;
  margin: 0 auto;
}
.blog-back {
  display: inline-block;
  margin-bottom: 1rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--green-deep);
  text-decoration: none;
}
.blog-post-date {
  display: block;
  font-size: 0.8rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 0.5rem;
}
.blog-post-title {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 4vw, 2.4rem);
  color: var(--green-deep);
  line-height: 1.2;
  margin: 0 0 0.75rem;
}
.blog-post-lead {
  font-size: 1.05rem;
  color: var(--text-muted);
  margin: 0 0 1.25rem;
  line-height: 1.5;
}
.blog-post-hero {
  border-radius: 18px;
  overflow: hidden;
  margin-bottom: 1.5rem;
}
.blog-post-hero img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
  display: block;
}
.blog-post-body p {
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--text);
  margin: 0 0 1.1rem;
}
@media (max-width: 700px) {
  .blog-list-card {
    grid-template-columns: 1fr;
  }
  .blog-list-body {
    padding: 0.85rem 1rem 1.1rem;
  }
  .blog-list-img img {
    aspect-ratio: 16/10;
    min-height: 0;
  }
}
