:root {
  --cream: #F2EBDD;
  --cream-deep: #E6DBC4;
  --forest: #2A3D2C;
  --forest-deep: #18241A;
  --moss: #5E6B43;
  --terracotta: #B85A3A;
  --ochre: #C99A3D;
  --ink: #1A1812;
  --soft-ink: #4A4138;
  --line: rgba(26,24,18,0.12);
  --display: 'Fraunces', 'Times New Roman', serif;
  --body: 'EB Garamond', 'Georgia', serif;
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--cream);
  color: var(--ink);
  font-family: var(--body);
  font-size: 18px;
  line-height: 1.6;
  overflow-x: hidden;
  position: relative;
}

/* grain overlay */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 100;
  opacity: 0.4;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='200'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/><feColorMatrix values='0 0 0 0 0.1 0 0 0 0 0.1 0 0 0 0 0.08 0 0 0 0.15 0'/></filter><rect width='200' height='200' filter='url(%23n)'/></svg>");
  mix-blend-mode: multiply;
}

/* ===== NAV ===== */
nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--cream);
  border-bottom: 1px solid rgba(26,24,18,0.12);
  padding: 14px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo {
  font-family: var(--display);
  font-variation-settings: "opsz" 144, "SOFT" 100, "WONK" 1;
  font-weight: 600;
  font-style: italic;
  font-size: 26px;
  color: var(--forest-deep);
  letter-spacing: -0.5px;
  text-decoration: none;
}
.logo span { color: var(--terracotta); }
.nav-links {
  display: flex;
  gap: 38px;
  list-style: none;
}
.nav-links a {
  text-decoration: none;
  color: var(--soft-ink);
  font-family: var(--display);
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 500;
  transition: color 0.25s;
}
.nav-links a:hover { color: var(--terracotta); }
.nav-cta {
  background: var(--forest-deep);
  color: var(--cream);
  padding: 11px 22px;
  border-radius: 999px;
  text-decoration: none;
  font-family: var(--display);
  font-size: 13px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  transition: background 0.25s;
  border: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 9px;
}
.nav-cta:hover { background: var(--terracotta); }
.nav-cta .cart-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 20px;
  height: 20px;
  padding: 0 6px;
  border-radius: 999px;
  background: var(--ochre);
  color: var(--forest-deep);
  font-family: var(--display);
  font-size: 12px;
  font-weight: 600;
  font-style: normal;
}

/* ===== HERO ===== */
.hero {
  position: relative;
  padding: 80px 40px 100px;
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 60px;
  align-items: center;
  min-height: 80vh;
}

.hero-eyebrow {
  font-family: var(--display);
  font-size: 12px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--terracotta);
  margin-bottom: 28px;
  display: flex;
  align-items: center;
  gap: 14px;
}
.hero-eyebrow::before {
  content: "";
  width: 60px;
  height: 1px;
  background: var(--terracotta);
}

.hero h1 {
  font-family: var(--display);
  font-variation-settings: "opsz" 144, "SOFT" 50, "WONK" 1;
  font-size: clamp(58px, 8vw, 124px);
  line-height: 0.92;
  font-weight: 400;
  color: var(--forest-deep);
  letter-spacing: -3px;
  margin-bottom: 36px;
}
.hero h1 em {
  font-style: italic;
  color: var(--terracotta);
  font-weight: 300;
  font-variation-settings: "opsz" 144, "SOFT" 100, "WONK" 1;
}

.hero-sub {
  font-size: 20px;
  color: var(--soft-ink);
  max-width: 460px;
  margin-bottom: 44px;
  font-style: italic;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 28px;
}
.btn-primary {
  background: var(--forest-deep);
  color: var(--cream);
  padding: 18px 38px;
  text-decoration: none;
  font-family: var(--display);
  font-size: 14px;
  letter-spacing: 2px;
  text-transform: uppercase;
  border-radius: 999px;
  transition: all 0.25s;
  display: inline-block;
  border: none;
  cursor: pointer;
}
.btn-primary:hover { background: var(--terracotta); transform: translateY(-2px); }

.btn-text {
  color: var(--soft-ink);
  text-decoration: none;
  font-family: var(--display);
  font-style: italic;
  font-size: 17px;
  border-bottom: 1px solid var(--soft-ink);
  padding-bottom: 2px;
  transition: color 0.25s;
}
.btn-text:hover { color: var(--terracotta); border-color: var(--terracotta); }

/* Hero image collage */
.hero-visual {
  position: relative;
  height: 600px;
}
.hero-img {
  position: absolute;
  background-size: cover;
  background-position: center;
  border-radius: 4px;
  box-shadow: 0 20px 50px rgba(26,40,28,0.18);
}
.hero-img.main {
  width: 80%;
  height: 90%;
  top: 5%;
  right: 0;
  background-image: url("img/hero-main.jpg");
}
.hero-img.accent {
  width: 45%;
  height: 45%;
  bottom: 5%;
  left: 0;
  background-image: url("img/hero-accent.jpg");
  z-index: 2;
}
.hero-tag {
  position: absolute;
  top: 8%;
  left: -10px;
  background: var(--cream);
  padding: 12px 20px;
  font-family: var(--display);
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--forest-deep);
  z-index: 3;
  border: 1px solid var(--forest-deep);
  transform: rotate(-3deg);
}
.hero-tag em {
  color: var(--terracotta);
  font-style: italic;
  text-transform: none;
  letter-spacing: 0;
  font-size: 14px;
}

/* decorative leaf SVG */
.leaf-deco {
  position: absolute;
  pointer-events: none;
}
.leaf-deco.top-right {
  top: 60px;
  right: 30px;
  width: 140px;
  opacity: 0.35;
  transform: rotate(25deg);
}

/* ===== MARQUEE ===== */
.marquee {
  background: var(--forest-deep);
  color: var(--cream);
  padding: 22px 0;
  overflow: hidden;
  border-top: 1px solid rgba(244,238,227,0.1);
  border-bottom: 1px solid rgba(244,238,227,0.1);
}
.marquee-track {
  display: flex;
  gap: 60px;
  white-space: nowrap;
  animation: scroll 32s linear infinite;
  font-family: var(--display);
  font-size: 18px;
  font-style: italic;
  font-weight: 300;
}
.marquee-track span { display: inline-flex; align-items: center; gap: 60px; }
.marquee-track .dot {
  display: inline-block;
  width: 6px;
  height: 6px;
  background: var(--ochre);
  border-radius: 50%;
}
@keyframes scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ===== SECTION COMMON ===== */
section { padding: 110px 40px; position: relative; }
.section-label {
  display: flex;
  align-items: baseline;
  gap: 16px;
  margin-bottom: 50px;
}
.section-num {
  font-family: var(--display);
  font-style: italic;
  font-size: 14px;
  color: var(--terracotta);
  letter-spacing: 1px;
}
.section-title {
  font-family: var(--display);
  font-variation-settings: "opsz" 144, "SOFT" 50;
  font-size: clamp(38px, 5vw, 64px);
  line-height: 1;
  font-weight: 400;
  color: var(--forest-deep);
  letter-spacing: -1.5px;
  flex: 1;
}
.section-title em {
  font-style: italic;
  font-weight: 300;
  color: var(--moss);
}

/* ===== IN SEASON ===== */
.in-season {
  background: var(--cream);
}
.plants-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}
.plant-card {
  cursor: pointer;
  transition: transform 0.3s;
  text-decoration: none;
  display: block;
  color: inherit;
}
.plant-card:hover { transform: translateY(-6px); }
.plant-img {
  width: 100%;
  aspect-ratio: 3/4;
  background-size: cover;
  background-position: center;
  background-color: var(--cream-deep);
  margin-bottom: 18px;
  border-radius: 2px;
  position: relative;
  overflow: hidden;
}
.plant-tag {
  position: absolute;
  top: 14px;
  left: 14px;
  background: var(--cream);
  padding: 5px 11px;
  font-family: var(--display);
  font-size: 10px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--forest-deep);
}
.plant-tag.new { background: var(--terracotta); color: var(--cream); }
.plant-tag.rare { background: var(--ochre); color: var(--forest-deep); }
.plant-name {
  font-family: var(--display);
  font-size: 22px;
  color: var(--forest-deep);
  letter-spacing: -0.5px;
  margin-bottom: 4px;
}
.plant-latin {
  font-family: var(--display);
  font-style: italic;
  font-size: 14px;
  color: var(--moss);
  margin-bottom: 12px;
}
.plant-price {
  font-family: var(--display);
  font-size: 17px;
  color: var(--ink);
  font-weight: 500;
}
.plant-price span {
  font-size: 12px;
  color: var(--soft-ink);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-right: 4px;
}

/* ===== STORY ===== */
.story {
  background: var(--forest-deep);
  color: var(--cream);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.story .section-title { color: var(--cream); }
.story .section-title em { color: var(--ochre); }
.story-text p {
  color: rgba(242,235,221,0.85);
  margin-bottom: 22px;
  font-size: 19px;
}
.story-text p:first-of-type::first-letter {
  font-family: var(--display);
  font-style: italic;
  font-size: 72px;
  float: left;
  line-height: 0.8;
  margin: 8px 12px 0 0;
  color: var(--ochre);
}
.story-visual {
  aspect-ratio: 4/5;
  background-image: url("img/story.jpg");
  background-size: cover;
  background-position: center;
  background-color: var(--moss);
  position: relative;
}
.story-stat {
  position: absolute;
  bottom: -30px;
  right: -30px;
  background: var(--ochre);
  color: var(--forest-deep);
  padding: 30px 38px;
  text-align: center;
}
.story-stat-num {
  font-family: var(--display);
  font-style: italic;
  font-size: 56px;
  line-height: 1;
  font-weight: 400;
}
.story-stat-label {
  font-family: var(--display);
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-top: 6px;
}

/* ===== COLLECTIONS ===== */
.collections-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  grid-template-rows: 280px 280px;
  gap: 20px;
}
.collection {
  position: relative;
  background-size: cover;
  background-position: center;
  overflow: hidden;
  cursor: pointer;
  transition: all 0.4s;
  text-decoration: none;
  display: block;
}
.collection::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(24,36,26,0.85));
  transition: opacity 0.3s;
}
.collection:hover { transform: scale(1.01); }
.collection-content {
  position: absolute;
  bottom: 24px;
  left: 24px;
  z-index: 2;
  color: var(--cream);
}
.collection-num {
  font-family: var(--display);
  font-style: italic;
  font-size: 13px;
  color: var(--ochre);
  margin-bottom: 6px;
}
.collection-name {
  font-family: var(--display);
  font-size: 28px;
  letter-spacing: -0.5px;
  margin-bottom: 4px;
}
.collection-count {
  font-size: 13px;
  font-style: italic;
  opacity: 0.85;
}
.collection.big { grid-row: 1 / 3; background-image: url("img/monstera-leaf.jpg"); }
.collection.flower { background-image: url("img/col-flowering.jpg"); }
.collection.succulent { background-image: url("img/cactus.jpg"); }
.collection.tropical { background-image: url("img/calathea.jpg"); }
.collection.outdoor { background-image: url("img/garden-bed.jpg"); }

/* ===== CARE / JOURNAL ===== */
.journal {
  background: var(--cream-deep);
}
.journal-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 50px;
}
.article {
  border-top: 1px solid var(--forest-deep);
  padding-top: 24px;
}
.article-meta {
  display: flex;
  justify-content: space-between;
  font-family: var(--display);
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--soft-ink);
  margin-bottom: 18px;
}
.article-meta .cat { color: var(--terracotta); }
.article-title {
  font-family: var(--display);
  font-size: 28px;
  color: var(--forest-deep);
  line-height: 1.1;
  letter-spacing: -0.5px;
  margin-bottom: 16px;
}
.article-title em { font-style: italic; color: var(--moss); }
.article-excerpt {
  color: var(--soft-ink);
  font-size: 17px;
  line-height: 1.55;
  margin-bottom: 18px;
}
.article-link {
  font-family: var(--display);
  font-style: italic;
  font-size: 15px;
  color: var(--terracotta);
  text-decoration: none;
  border-bottom: 1px solid var(--terracotta);
  padding-bottom: 2px;
}

/* ===== DELIVERY ===== */
.delivery {
  text-align: center;
  background: var(--cream);
  padding: 130px 40px;
}
.delivery h2 {
  font-family: var(--display);
  font-variation-settings: "opsz" 144, "SOFT" 100, "WONK" 1;
  font-size: clamp(48px, 7vw, 96px);
  line-height: 1;
  color: var(--forest-deep);
  letter-spacing: -2px;
  max-width: 900px;
  margin: 0 auto 30px;
  font-weight: 400;
}
.delivery h2 em { font-style: italic; color: var(--terracotta); }
.delivery-sub {
  font-style: italic;
  font-size: 20px;
  color: var(--soft-ink);
  margin-bottom: 50px;
}
.delivery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 50px;
  max-width: 1000px;
  margin: 0 auto;
  text-align: left;
}
.delivery-item {
  border-left: 1px solid var(--forest-deep);
  padding-left: 24px;
}
.delivery-num {
  font-family: var(--display);
  font-style: italic;
  font-size: 48px;
  color: var(--terracotta);
  line-height: 1;
  margin-bottom: 12px;
}
.delivery-title {
  font-family: var(--display);
  font-size: 22px;
  color: var(--forest-deep);
  margin-bottom: 8px;
}
.delivery-desc {
  color: var(--soft-ink);
  font-size: 16px;
}

/* ===== NEWSLETTER ===== */
.newsletter {
  background: var(--terracotta);
  color: var(--cream);
  padding: 80px 40px;
  text-align: center;
}
.newsletter h3 {
  font-family: var(--display);
  font-variation-settings: "opsz" 144, "SOFT" 100, "WONK" 1;
  font-size: 56px;
  margin-bottom: 16px;
  font-weight: 400;
  letter-spacing: -1px;
}
.newsletter h3 em { font-style: italic; }
.newsletter p {
  font-style: italic;
  margin-bottom: 36px;
  opacity: 0.9;
}
.newsletter-form {
  display: flex;
  max-width: 500px;
  margin: 0 auto;
  gap: 0;
  border-bottom: 1px solid var(--cream);
}
.newsletter-form input {
  flex: 1;
  background: transparent;
  border: none;
  padding: 14px 0;
  color: var(--cream);
  font-family: var(--body);
  font-size: 18px;
  font-style: italic;
  outline: none;
}
.newsletter-form input::placeholder { color: rgba(242,235,221,0.6); }
.newsletter-form button {
  background: transparent;
  border: none;
  color: var(--cream);
  font-family: var(--display);
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
  cursor: pointer;
  padding: 14px 20px;
}

/* ===== FOOTER ===== */
footer {
  background: var(--forest-deep);
  color: var(--cream);
  padding: 70px 40px 30px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 50px;
  margin-bottom: 60px;
}
.footer-logo {
  font-family: var(--display);
  font-style: italic;
  font-size: 38px;
  letter-spacing: -1px;
  margin-bottom: 16px;
}
.footer-logo span { color: var(--ochre); }
.footer-tagline {
  font-style: italic;
  opacity: 0.75;
  max-width: 320px;
  margin-bottom: 22px;
}
.footer-contact { font-size: 15px; opacity: 0.8; line-height: 1.7; }
.footer-contact a { color: rgba(242,235,221,0.85); text-decoration: none; }
.footer-contact a:hover { color: var(--ochre); }
.footer-col h4 {
  font-family: var(--display);
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--ochre);
  margin-bottom: 18px;
  font-weight: 500;
}
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 10px; }
.footer-col a {
  color: rgba(242,235,221,0.75);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-col a:hover { color: var(--ochre); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  border-top: 1px solid rgba(242,235,221,0.15);
  padding-top: 26px;
  font-size: 14px;
  opacity: 0.6;
}

/* ===== WHATSAPP FAB ===== */
.wa-fab {
  position: fixed;
  bottom: 22px;
  right: 22px;
  z-index: 90;
  display: inline-flex;
  align-items: center;
  gap: 11px;
  background: #1E8A44;
  color: #fff;
  font-family: var(--display);
  font-size: 14px;
  letter-spacing: 1px;
  text-transform: uppercase;
  text-decoration: none;
  padding: 14px 22px;
  border-radius: 999px;
  box-shadow: 0 14px 34px rgba(20,70,38,0.4);
  transition: background 0.2s, transform 0.2s;
}
.wa-fab:hover { background: #176c36; transform: translateY(-2px); }
.wa-fab svg { width: 22px; height: 22px; flex-shrink: 0; }

/* ===== SHOP PAGE ===== */
.shop-head {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--cream);
  border-bottom: 1px solid var(--line);
}
.shop-intro {
  padding: 70px 40px 20px;
}
.shop-intro h1 {
  font-family: var(--display);
  font-variation-settings: "opsz" 144, "SOFT" 50, "WONK" 1;
  font-size: clamp(46px, 7vw, 88px);
  line-height: 0.95;
  font-weight: 400;
  color: var(--forest-deep);
  letter-spacing: -2px;
  margin-bottom: 14px;
}
.shop-intro h1 em { font-style: italic; color: var(--terracotta); font-weight: 300; }
.shop-intro p {
  font-style: italic;
  font-size: 19px;
  color: var(--soft-ink);
  max-width: 540px;
}
.chips-bar {
  position: sticky;
  top: 57px;
  z-index: 40;
  background: var(--cream);
  border-bottom: 1px solid var(--line);
  padding: 12px 40px;
}
.chips {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  scrollbar-width: none;
}
.chips::-webkit-scrollbar { display: none; }
.chip {
  flex-shrink: 0;
  font-family: var(--display);
  font-size: 12px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  border: 1px solid rgba(26,24,18,0.25);
  background: transparent;
  color: var(--soft-ink);
  padding: 9px 18px;
  border-radius: 999px;
  cursor: pointer;
  transition: all 0.2s;
  white-space: nowrap;
}
.chip:hover { border-color: var(--forest-deep); color: var(--forest-deep); }
.chip.on { background: var(--forest-deep); border-color: var(--forest-deep); color: var(--cream); }
.catalogue {
  padding: 40px 40px 80px;
  display: flex;
  flex-direction: column;
  gap: 64px;
}
.cat-sec { display: flex; flex-direction: column; gap: 30px; }
.cat-head { display: flex; align-items: baseline; gap: 14px; }
.cat-head .bar { width: 28px; height: 3px; background: var(--moss); border-radius: 2px; }
.cat-head h2 {
  font-family: var(--display);
  font-variation-settings: "opsz" 144, "SOFT" 50;
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 400;
  color: var(--forest-deep);
  letter-spacing: -1px;
}
.prod-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(230px, 100%), 1fr));
  gap: 28px;
}
.prod { display: flex; flex-direction: column; }
.pimg {
  width: 100%;
  aspect-ratio: 3/4;
  background-size: cover;
  background-position: center;
  background-color: var(--cream-deep);
  border-radius: 3px;
  margin-bottom: 16px;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s;
}
.prod:hover .pimg { transform: translateY(-5px); }
.ptag {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--cream);
  padding: 4px 10px;
  font-family: var(--display);
  font-size: 10px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--forest-deep);
}
.ptag.new { background: var(--terracotta); color: var(--cream); }
.ptag.rare { background: var(--ochre); color: var(--forest-deep); }
.pmeta h3 {
  font-family: var(--display);
  font-size: 21px;
  color: var(--forest-deep);
  letter-spacing: -0.5px;
  margin-bottom: 2px;
}
.pmeta p {
  font-family: var(--display);
  font-style: italic;
  font-size: 14px;
  color: var(--moss);
  margin-bottom: 12px;
}
.prow {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
}
.price {
  font-family: var(--display);
  font-size: 18px;
  color: var(--ink);
  font-weight: 500;
}
.price span {
  font-size: 11px;
  color: var(--soft-ink);
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-right: 3px;
}
.add {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: var(--forest-deep);
  color: var(--cream);
  border: none;
  cursor: pointer;
  font-family: var(--display);
  font-size: 12px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 10px 16px;
  border-radius: 999px;
  transition: background 0.2s;
}
.add:hover { background: var(--terracotta); }
.step {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: var(--cream-deep);
  border: 1px solid var(--forest-deep);
  border-radius: 999px;
  padding: 2px;
}
.step button {
  width: 34px;
  height: 34px;
  border: none;
  background: transparent;
  cursor: pointer;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.step button:hover { background: rgba(42,61,44,0.12); }
.step .qn {
  min-width: 20px;
  text-align: center;
  font-family: var(--display);
  font-weight: 600;
  font-size: 16px;
  color: var(--forest-deep);
}
.step.sm button { width: 32px; height: 32px; }
.not-found {
  max-width: 600px;
  margin: 0 auto 130px;
  padding: 0 40px;
  font-size: 16px;
  font-style: italic;
  color: var(--soft-ink);
  text-align: center;
}
.not-found a { color: var(--terracotta); text-decoration: none; border-bottom: 1px solid var(--terracotta); }

/* sticky cart bar */
#cartBarHost .cartbar {
  position: fixed;
  left: 50%;
  transform: translateX(-50%);
  bottom: 16px;
  z-index: 60;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  width: calc(100% - 40px);
  max-width: 540px;
  background: var(--forest-deep);
  color: var(--cream);
  border: none;
  cursor: pointer;
  padding: 16px 24px;
  border-radius: 14px;
  box-shadow: 0 16px 38px rgba(24,36,26,0.4);
  font-family: var(--display);
  transition: background 0.2s, transform 0.2s;
}
#cartBarHost .cartbar:hover { background: var(--terracotta); transform: translateX(-50%) translateY(-2px); }
#cartBarHost .cartbar .l { display: inline-flex; align-items: center; gap: 10px; font-size: 15px; letter-spacing: 1px; }
#cartBarHost .cartbar .r { display: inline-flex; align-items: center; gap: 8px; font-size: 17px; font-weight: 500; }

/* drawer */
.drawer-wrap { position: fixed; inset: 0; z-index: 70; display: flex; justify-content: flex-end; }
.drawer-wrap .scrim { position: absolute; inset: 0; background: rgba(24,36,26,0.55); backdrop-filter: blur(2px); }
.drawer {
  position: relative;
  width: min(460px, 100%);
  height: 100%;
  background: var(--cream);
  display: flex;
  flex-direction: column;
  box-shadow: -16px 0 48px rgba(0,0,0,0.25);
  animation: slidein 0.28s cubic-bezier(.22,1,.36,1);
}
@keyframes slidein { from { transform: translateX(40px); opacity: 0.4; } to { transform: translateX(0); opacity: 1; } }
.drawer-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 24px;
  border-bottom: 1px solid var(--line);
}
.drawer-head h2 {
  font-family: var(--display);
  font-variation-settings: "opsz" 144, "SOFT" 50;
  font-size: 28px;
  font-weight: 400;
  color: var(--forest-deep);
  letter-spacing: -1px;
}
.drawer-head .x {
  width: 40px;
  height: 40px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: transparent;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.drawer-head .x:hover { background: var(--cream-deep); }
.drawer-body { flex: 1; display: flex; flex-direction: column; min-height: 0; }
.cart-empty {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 18px;
  padding: 40px;
  text-align: center;
}
.cart-empty .leaf { width: 64px; height: 64px; opacity: 0.4; }
.cart-empty p { font-style: italic; font-size: 17px; color: var(--soft-ink); }
.cart-empty .browse {
  background: var(--forest-deep);
  color: var(--cream);
  border: none;
  cursor: pointer;
  font-family: var(--display);
  font-size: 12px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 13px 24px;
  border-radius: 999px;
}
.cart-list { flex: 1; overflow-y: auto; padding: 18px 24px; display: flex; flex-direction: column; gap: 14px; }
.cart-line { display: flex; align-items: center; gap: 14px; padding-bottom: 14px; border-bottom: 1px solid var(--line); }
.cart-line .cl-img { width: 54px; height: 60px; border-radius: 3px; background-size: cover; background-position: center; flex-shrink: 0; background-color: var(--cream-deep); }
.cart-line .cl-meta { flex: 1; min-width: 0; }
.cart-line .n { font-family: var(--display); font-size: 17px; color: var(--forest-deep); display: block; }
.cart-line .u { font-style: italic; font-size: 13px; color: var(--moss); }
.cart-line .lt { font-family: var(--display); font-size: 16px; color: var(--ink); min-width: 64px; text-align: right; }
.drawer-foot { border-top: 1px solid var(--line); padding: 20px 24px calc(20px + env(safe-area-inset-bottom)); display: flex; flex-direction: column; gap: 12px; }
.drawer-foot .srow { display: flex; justify-content: space-between; font-size: 16px; color: var(--soft-ink); }
.drawer-foot .srow .v { color: var(--ink); }
.drawer-foot .trow { display: flex; justify-content: space-between; align-items: baseline; border-top: 1px dashed var(--line); padding-top: 12px; font-family: var(--display); }
.drawer-foot .trow span:first-child { font-size: 18px; color: var(--forest-deep); }
.drawer-foot .trow .tt { font-size: 26px; color: var(--terracotta); }
.drawer-foot .addr { display: flex; flex-direction: column; gap: 7px; font-family: var(--display); font-size: 12px; letter-spacing: 1.5px; text-transform: uppercase; color: var(--soft-ink); }
.drawer-foot textarea {
  font-family: var(--body);
  font-size: 16px;
  color: var(--ink);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 12px 14px;
  resize: none;
  background: #fff;
  outline: none;
}
.drawer-foot textarea:focus { border-color: var(--moss); }
.drawer-foot .checkout {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: #1E8A44;
  color: #fff;
  font-family: var(--display);
  font-size: 14px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  text-decoration: none;
  padding: 17px 24px;
  border-radius: 999px;
  transition: background 0.2s, transform 0.2s;
}
.drawer-foot .checkout:hover { background: #176c36; transform: translateY(-1px); }
.drawer-foot .fineprint { font-size: 13px; font-style: italic; line-height: 1.5; color: var(--soft-ink); text-align: center; }

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  nav { padding: 12px 20px; }
  .nav-links { display: none; }
  .hero { grid-template-columns: 1fr; padding: 50px 20px 70px; gap: 40px; }
  .hero-visual { height: 420px; }
  section { padding: 70px 20px; }
  .plants-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
  .story { grid-template-columns: 1fr; gap: 50px; }
  .story-stat { right: 10px; bottom: -20px; padding: 20px 26px; }
  .collections-grid { grid-template-columns: 1fr 1fr; grid-template-rows: 220px 220px 220px; }
  .collection.big { grid-row: 1; grid-column: 1 / 3; }
  .journal-grid { grid-template-columns: 1fr; gap: 30px; }
  .delivery-grid { grid-template-columns: 1fr; gap: 30px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 30px; }
  .footer-bottom { flex-direction: column; gap: 10px; }
  .shop-intro { padding: 50px 20px 16px; }
  .chips-bar { padding: 12px 20px; }
  .catalogue { padding: 32px 20px 80px; gap: 48px; }
  .wa-fab { padding: 13px 18px; font-size: 13px; }
}

/* fade-in on load */
.fade-up {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 0.9s ease forwards;
}
.fade-up.d1 { animation-delay: 0.1s; }
.fade-up.d2 { animation-delay: 0.25s; }
.fade-up.d3 { animation-delay: 0.4s; }
.fade-up.d4 { animation-delay: 0.55s; }
@keyframes fadeUp {
  to { opacity: 1; transform: translateY(0); }
}
