:root {
  --ink: #202520;
  --green: #0d5b40;
  --green-dark: #06412e;
  --lime: #d8f04e;
  --cream: #fff8f4;
  --soft: #f6f6f2;
  --line: #dedfd8;
  --muted: #68716a;
  --white: #fff;
  --shadow: 0 16px 38px rgba(20,45,33,.12);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; color: var(--ink); background: #fff; font-family: "Manrope", Arial, sans-serif; font-size: 16px; line-height: 1.55; -webkit-font-smoothing: antialiased; }
body, button, input, select, textarea { font-family: "Manrope", Arial, sans-serif; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; }
[hidden] { display: none !important; }
.container { width: min(1220px, calc(100% - 48px)); margin-inline: auto; }
.section { padding: 82px 0; }
.eyebrow { margin: 0 0 12px; color: var(--green); font-size: 13px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.eyebrow.light { color: var(--lime); }
.section-heading { margin-bottom: 34px; }
.section-heading.row, .section-heading.split { display: flex; align-items: end; justify-content: space-between; gap: 36px; }
.section-heading.centered { max-width: 720px; margin: 0 auto 38px; text-align: center; }
.section-heading h2, .section-heading > h2 { margin: 0; color: var(--ink); font-size: clamp(34px,3.5vw,48px); font-weight: 800; letter-spacing: -.04em; line-height: 1.08; }
.section-heading p:not(.eyebrow) { max-width: 540px; margin: 10px auto 0; color: var(--muted); font-size: 16px; }
.text-link { display: inline-flex; align-items: center; padding-bottom: 4px; border-bottom: 1px solid currentColor; color: var(--green); font-size: 14px; font-weight: 800; white-space: nowrap; }
.button { min-height: 50px; display: inline-flex; align-items: center; justify-content: center; gap: 9px; padding: 0 24px; border: 1px solid transparent; border-radius: 7px; font-size: 14px; font-weight: 800; cursor: pointer; transition: .2s ease; }
.button:hover { transform: translateY(-2px); }
.button-dark { color: #fff; background: var(--green-dark); border-color: var(--green-dark); }
.button-dark:hover { color: #fff; background: var(--green); }
.button-ghost { color: var(--green-dark); border-color: var(--green-dark); background: transparent; }
.button-lime { color: var(--green-dark); background: var(--lime); border-color: var(--lime); }
.button-outline-light { color: #fff; background: transparent; border-color: rgba(255,255,255,.6); }
.button-full { width: 100%; }

/* Header */
.skip-link { position: fixed; left: 10px; top: 10px; z-index: 9999; padding: 10px 14px; background: #fff; transform: translateY(-170%); }
.skip-link:focus { transform: none; }
.announcement { height: 36px; overflow: hidden; color: #fff; background: var(--green); }
.announcement-track { width: min(1220px,calc(100% - 48px)); height: 36px; display: flex; align-items: center; justify-content: space-between; gap: 28px; margin-inline: auto; font-size: 12px; font-weight: 700; }
.announcement-track span::before { content: "●"; margin-right: 8px; color: var(--lime); font-size: 7px; vertical-align: 2px; }
.site-header { position: sticky; top: 0; z-index: 1000; background: rgba(255,255,255,.98); border-bottom: 1px solid var(--line); box-shadow: 0 4px 18px rgba(20,40,30,.05); backdrop-filter: blur(10px); }
.header-main { min-height: 86px; display: grid; grid-template-columns: 220px minmax(360px,1fr) auto; align-items: center; gap: 36px; }
.brand { display: inline-flex; align-items: center; gap: 11px; }
.brand img { width: 62px; height: 62px; object-fit: contain; }
.brand > span { display: flex; flex-direction: column; line-height: 1; }
.brand strong { color: var(--green-dark); font-size: 25px; font-weight: 800; letter-spacing: -.04em; }
.brand small { margin-top: 7px; color: var(--muted); font-size: 10px; font-weight: 600; }
.header-search { height: 50px; display: grid; grid-template-columns: 40px minmax(0,1fr) auto; align-items: center; padding-left: 12px; border: 1px solid #dfe2dc; border-radius: 9px; background: #f5f6f3; overflow: hidden; }
.header-search:focus-within { border-color: var(--green); background: #fff; box-shadow: 0 0 0 3px rgba(13,91,64,.1); }
.header-search input { width: 100%; height: 48px; border: 0; outline: 0; color: var(--ink); background: transparent; font-size: 15px; }
.header-search button { height: 50px; padding: 0 22px; border: 0; color: #fff; background: var(--green); font-size: 13px; font-weight: 800; cursor: pointer; }
.search-mark { position: relative; width: 17px; height: 17px; display: inline-block; border: 2px solid currentColor; border-radius: 50%; color: var(--green-dark); }
.search-mark::after { content: ""; position: absolute; width: 7px; height: 2px; right: -6px; bottom: -2px; background: currentColor; transform: rotate(45deg); }
.nav-actions { display: flex; align-items: center; gap: 8px; }
.header-action { position: relative; min-width: 58px; min-height: 58px; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 5px; padding: 3px 6px; border: 0; border-radius: 8px; color: var(--green-dark); background: transparent; cursor: pointer; }
.header-action:hover { background: #f2f5f0; }
.header-action small { font-size: 10px; font-weight: 700; }
.header-action em { position: absolute; right: 3px; top: 1px; min-width: 19px; height: 19px; display: grid; place-items: center; padding: 0 4px; border-radius: 999px; color: #fff; background: var(--green); font-size: 10px; font-style: normal; font-weight: 800; }
.heart-mark { height: 25px; font: 29px/22px Arial,sans-serif; }
.person-mark { position: relative; width: 25px; height: 25px; display: block; }
.person-mark::before { content: ""; position: absolute; left: 8px; top: 0; width: 9px; height: 9px; border: 2px solid currentColor; border-radius: 50%; }
.person-mark::after { content: ""; position: absolute; left: 3px; bottom: 0; width: 19px; height: 11px; border: 2px solid currentColor; border-bottom: 0; border-radius: 12px 12px 0 0; }
.bag-mark { position: relative; width: 21px; height: 21px; display: block; border: 2px solid currentColor; border-radius: 2px 2px 5px 5px; }
.bag-mark::before { content: ""; position: absolute; left: 4px; top: -8px; width: 9px; height: 8px; border: 2px solid currentColor; border-bottom: 0; border-radius: 8px 8px 0 0; }
.nav-border { border-top: 1px solid #eceee9; }
.nav-row { min-height: 52px; display: flex; align-items: center; justify-content: space-between; gap: 16px; }
.desktop-nav { display: flex; align-items: center; }
.desktop-nav > a, .desktop-nav > .nav-dropdown > a { min-height: 52px; display: inline-flex; align-items: center; gap: 6px; padding: 0 17px; color: #29382f; font-size: 14px; font-weight: 700; white-space: nowrap; }
.desktop-nav > a:first-child { padding-left: 0; }
.desktop-nav > a:hover, .desktop-nav > .nav-dropdown > a:hover { color: var(--green); }
.nav-dropdown { position: relative; }
.dropdown-panel { position: absolute; left: 0; top: calc(100% + 1px); visibility: hidden; opacity: 0; transform: translateY(8px); transition: .2s ease; }
.nav-dropdown:hover .dropdown-panel, .nav-dropdown:focus-within .dropdown-panel { visibility: visible; opacity: 1; transform: none; }
.mega-panel { width: 760px; display: grid; grid-template-columns: repeat(5,1fr); gap: 12px; padding: 20px; border: 1px solid var(--line); border-radius: 0 0 12px 12px; background: #fff; box-shadow: var(--shadow); }
.mega-panel > a { min-width: 0; }
.mega-panel img { width: 100%; aspect-ratio: 1; display: block; border-radius: 50%; object-fit: cover; background: var(--cream); }
.mega-panel strong { display: block; margin-top: 8px; font-size: 12px; line-height: 1.3; text-align: center; }
.mega-panel .mega-all { grid-column: 1/-1; display: flex; align-items: center; justify-content: space-between; margin-top: 5px; padding: 13px 15px; border-radius: 7px; color: #fff; background: var(--green); font-size: 13px; }
.nav-help { color: var(--muted); font-size: 11px; white-space: nowrap; }
.nav-help strong { color: var(--green); }
.mobile-only, .search-mobile-only { display: none; }
.search-drawer { padding: 22px 0; background: #fff; }
.search-form label { display: block; margin-bottom: 8px; font-size: 14px; font-weight: 800; }
.search-form > div { display: grid; grid-template-columns: 1fr auto auto; }
.search-form input { min-height: 48px; padding: 0 15px; border: 1px solid var(--line); }
.search-form button { padding: 0 18px; border: 0; color: #fff; background: var(--green); font-weight: 800; }
.search-form button:last-child { color: var(--ink); background: var(--soft); font-size: 24px; }
.mobile-menu { position: fixed; inset: 0 auto 0 0; z-index: 1400; width: min(390px,92vw); padding: 22px; overflow-y: auto; background: #fff; box-shadow: 25px 0 70px rgba(0,0,0,.25); }
.mobile-menu-head { display: flex; align-items: center; justify-content: space-between; padding-bottom: 16px; border-bottom: 1px solid var(--line); }
.mobile-menu-head > a { display: flex; align-items: center; gap: 8px; }
.mobile-menu-head img { width: 42px; height: 42px; }
.mobile-menu-head strong { color: var(--green-dark); font-size: 22px; }
.mobile-menu-head button { border: 0; background: transparent; font-size: 29px; }
.mobile-menu-search { display: grid; grid-template-columns: 1fr auto; margin: 19px 0; }
.mobile-menu-search input { min-width: 0; height: 46px; padding: 0 12px; border: 1px solid var(--line); }
.mobile-menu-search button { border: 0; color: #fff; background: var(--green); padding: 0 15px; font-weight: 800; }
.mobile-menu > a, .mobile-category-list a { min-height: 50px; display: flex; align-items: center; justify-content: space-between; border-bottom: 1px solid #eceee9; font-size: 15px; font-weight: 700; }
.mobile-menu > p { margin: 23px 0 7px; color: var(--muted); font-size: 11px; font-weight: 800; text-transform: uppercase; }
.mobile-menu-help { margin-top: 22px; padding: 17px; border-radius: 8px; background: #f0f6eb; }
.mobile-menu-help small, .mobile-menu-help a { display: block; }
.mobile-menu-help a { margin-top: 4px; color: var(--green); font-weight: 800; }

/* Home */
.ug-home-hero { padding: 54px 0 50px; background: var(--cream); }
.ug-hero-heading { margin-bottom: 28px; }
.hero-rating { display: inline-flex; align-items: center; gap: 10px; margin-bottom: 18px; padding: 8px 13px; border: 1px solid #b9d5c2; border-radius: 999px; background: #fff; }
.hero-rating span { color: #f0a000; font-size: 12px; letter-spacing: .06em; }
.hero-rating strong { font-size: 12px; }
.ug-hero-heading h1 { max-width: 1020px; margin: 0; color: var(--ink); font-size: clamp(46px,5vw,68px); font-weight: 800; letter-spacing: -.055em; line-height: .98; }
.ug-hero-panels { display: grid; grid-template-columns: 2.05fr 1fr; gap: 18px; }
.ug-hero-main { position: relative; min-height: 470px; overflow: hidden; border-radius: 18px; color: #fff; background: linear-gradient(125deg,#0a5038,#147654); }
.ug-hero-main::before { content: ""; position: absolute; width: 540px; height: 540px; right: -50px; top: -70px; border-radius: 50%; background: #e4edce; }
.ug-hero-main-copy { position: relative; z-index: 3; width: 48%; padding: 62px 0 50px 52px; }
.ug-hero-main-copy > span { display: inline-block; padding: 7px 10px; border-radius: 999px; color: var(--green-dark); background: var(--lime); font-size: 11px; font-weight: 800; }
.ug-hero-main-copy h2 { margin: 19px 0 12px; color: #fff; font-size: clamp(45px,4.2vw,62px); font-weight: 800; letter-spacing: -.05em; line-height: .95; }
.ug-hero-main-copy p { max-width: 420px; margin: 0; color: rgba(255,255,255,.82); font-size: 16px; line-height: 1.6; }
.ug-hero-main-copy b { display: inline-flex; margin-top: 26px; padding: 12px 18px; border-radius: 7px; color: var(--green-dark); background: #fff; font-size: 14px; }
.ug-hero-plants { position: absolute; right: 0; top: 0; width: 55%; height: 100%; }
.ug-hero-plants img { position: absolute; bottom: -18px; width: 57%; height: 91%; object-fit: contain; mix-blend-mode: multiply; filter: drop-shadow(0 18px 18px rgba(0,0,0,.12)); }
.ug-hero-plants img:nth-child(1) { left: 20%; z-index: 3; }
.ug-hero-plants img:nth-child(2) { left: -9%; height: 70%; z-index: 2; }
.ug-hero-plants img:nth-child(3) { right: -7%; height: 69%; z-index: 1; }
.ug-hero-side { display: grid; gap: 18px; }
.ug-hero-side > a { position: relative; min-height: 226px; overflow: hidden; border-radius: 18px; background: #e4efd6; }
.ug-hero-side > a:nth-child(2) { background: #f6dfaf; }
.ug-hero-side span { position: absolute; left: 24px; top: 26px; z-index: 3; width: 56%; }
.ug-hero-side small, .ug-hero-side strong, .ug-hero-side b { display: block; }
.ug-hero-side small { color: var(--green); font-size: 12px; font-weight: 800; }
.ug-hero-side strong { margin-top: 6px; font-size: 23px; font-weight: 800; letter-spacing: -.035em; line-height: 1.08; }
.ug-hero-side b { margin-top: 14px; color: var(--green); font-size: 12px; }
.ug-hero-side img { position: absolute; right: -12px; bottom: -12px; width: 55%; height: 88%; object-fit: contain; mix-blend-mode: multiply; }
.benefit-strip { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: #fff; }
.benefit-strip-grid { min-height: 96px; display: grid; grid-template-columns: repeat(4,1fr); }
.benefit-strip-grid > div { display: flex; align-items: center; gap: 14px; padding: 18px 24px; border-right: 1px solid var(--line); }
.benefit-strip-grid > div:first-child { padding-left: 0; }
.benefit-strip-grid > div:last-child { border-right: 0; }
.benefit-strip-grid > div > span { width: 42px; height: 42px; display: grid; place-items: center; flex: 0 0 auto; border-radius: 50%; color: var(--green); background: #edf6e7; font-size: 19px; }
.benefit-strip-grid p { margin: 0; line-height: 1.25; }
.benefit-strip-grid strong, .benefit-strip-grid small { display: block; }
.benefit-strip-grid strong { font-size: 14px; }
.benefit-strip-grid small { margin-top: 5px; color: var(--muted); font-size: 11px; }
.category-discovery { background: #fff; }
.ug-category-row { display: grid; grid-template-columns: repeat(5,1fr); gap: 28px; }
.ug-category-row a { text-align: center; }
.ug-category-row span { display: block; overflow: hidden; aspect-ratio: 1; border: 2px solid transparent; border-radius: 50%; background: var(--cream); transition: .2s ease; }
.ug-category-row a:hover span { border-color: var(--green); transform: translateY(-3px); }
.ug-category-row img { width: 100%; height: 100%; display: block; object-fit: cover; }
.ug-category-row strong { display: block; margin-top: 14px; font-size: 16px; line-height: 1.25; }
.offers-section { padding-top: 20px; }
.offer-card-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 18px; }
.offer-card { position: relative; min-height: 290px; overflow: hidden; border-radius: 17px; background: #f5dfd5; }
.offer-card.offer-yellow { background: #fbefbf; }
.offer-card.offer-green { background: #dbeccd; }
.offer-card > span { position: relative; z-index: 3; width: 57%; display: block; padding: 34px 0 28px 30px; }
.offer-card small, .offer-card strong, .offer-card b { display: block; }
.offer-card small { color: var(--green); font-size: 12px; font-weight: 800; }
.offer-card strong { margin-top: 8px; font-size: 28px; font-weight: 800; letter-spacing: -.04em; line-height: 1.05; }
.offer-card b { margin-top: 19px; color: var(--green); font-size: 13px; }
.offer-card img { position: absolute; right: -8px; bottom: -16px; width: 54%; height: 90%; object-fit: contain; mix-blend-mode: multiply; }
.curated-products { background: var(--soft); }
.product-grid { display: grid; grid-template-columns: repeat(4,minmax(0,1fr)); gap: 34px 20px; }
.product-card { min-width: 0; }
.product-media-wrap { position: relative; overflow: hidden; border-radius: 12px; background: #eff1ec; }
.product-media { position: relative; display: block; aspect-ratio: .92; overflow: hidden; }
.product-media img { width: 100%; height: 100%; display: block; object-fit: cover; transition: transform .35s ease; }
.product-card:hover .product-media img { transform: scale(1.035); }
.product-view { position: absolute; right: 12px; bottom: 12px; z-index: 2; padding: 9px 12px; border-radius: 6px; color: var(--green-dark); background: rgba(255,255,255,.96); font-size: 12px; font-weight: 800; opacity: 0; transform: translateY(5px); transition: .2s ease; }
.product-card:hover .product-view { opacity: 1; transform: none; }
.product-labels { position: absolute; left: 12px; top: 12px; z-index: 3; display: flex; flex-direction: column; align-items: flex-start; gap: 5px; }
.product-labels span { padding: 5px 8px; border-radius: 4px; color: #fff; background: var(--green); font-size: 10px; font-weight: 800; text-transform: uppercase; }
.product-labels .sale-label { background: #c34737; }
.wishlist-form { position: absolute; right: 10px; top: 10px; z-index: 4; }
.wishlist-form button { width: 40px; height: 40px; display: grid; place-items: center; padding: 0; border: 0; border-radius: 50%; color: var(--green-dark); background: rgba(255,255,255,.96); font: 25px Arial,sans-serif; cursor: pointer; box-shadow: 0 6px 16px rgba(0,0,0,.08); }
.wishlist-form button.saved { color: #fff; background: #c34737; }
.quick-add-form { position: absolute; right: 12px; bottom: 12px; left: 12px; z-index: 4; opacity: 0; transform: translateY(7px); transition: .2s ease; }
.product-card:hover .quick-add-form { opacity: 1; transform: none; }
.quick-add-form button { width: 100%; min-height: 44px; display: flex; align-items: center; justify-content: space-between; padding: 0 15px; border: 0; border-radius: 7px; color: #fff; background: var(--green-dark); font-size: 13px; font-weight: 800; cursor: pointer; }
.quick-add-form > small { display: block; color: var(--green-dark); background: #fff; font-size: 10px; text-align: center; }
.product-info { padding: 14px 2px 0; }
.product-meta { display: flex; align-items: center; justify-content: space-between; gap: 10px; }
.product-meta p { min-width: 0; margin: 0; overflow: hidden; color: var(--green); font-size: 10px; font-weight: 800; text-overflow: ellipsis; text-transform: uppercase; white-space: nowrap; }
.product-meta span { flex: 0 0 auto; color: #c18a19; font-size: 11px; font-weight: 800; }
.product-info h3 { margin: 7px 0 0; font-size: 20px; font-weight: 800; letter-spacing: -.025em; line-height: 1.2; }
.product-card-copy { display: -webkit-box; min-height: 43px; margin: 7px 0 0; overflow: hidden; color: var(--muted); font-size: 13px; line-height: 1.55; -webkit-box-orient: vertical; -webkit-line-clamp: 2; }
.product-price { display: flex; align-items: baseline; flex-wrap: wrap; gap: 8px; margin-top: 11px; }
.product-price strong { font-size: 17px; }
.product-price del { color: #939a94; font-size: 13px; }
.product-price small { width: 100%; color: #7f8881; font-size: 10px; }
.catalogue-benefits { padding: 0; color: #fff; background: var(--green-dark); }
.catalogue-benefits-grid { min-height: 640px; display: grid; grid-template-columns: 1fr 1fr; }
.catalogue-benefits-image { overflow: hidden; background: #e8eddc; }
.catalogue-benefits-image img { width: 100%; height: 100%; display: block; object-fit: cover; }
.catalogue-benefits-copy { display: flex; flex-direction: column; align-items: flex-start; justify-content: center; padding: 70px 76px; }
.catalogue-benefits-copy h2 { margin: 0; color: #fff; font-size: clamp(39px,4vw,55px); font-weight: 800; letter-spacing: -.05em; line-height: 1.02; }
.catalogue-benefits-copy > p:not(.eyebrow) { margin: 20px 0 0; color: rgba(255,255,255,.75); font-size: 16px; line-height: 1.7; }
.benefit-list { width: 100%; display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin: 26px 0 30px; }
.benefit-list > div { display: flex; align-items: center; gap: 10px; padding: 14px; border: 1px solid rgba(255,255,255,.16); border-radius: 8px; }
.benefit-list span { width: 28px; height: 28px; display: grid; place-items: center; flex: 0 0 auto; border-radius: 50%; color: var(--green-dark); background: var(--lime); font-size: 12px; font-weight: 900; }
.benefit-list strong { font-size: 12px; }
.catalogue-benefits-copy .button-dark { color: var(--green-dark); background: #fff; border-color: #fff; }
.happy-clients-section { background: #fff; }
.happy-client-showcase { overflow: hidden; border-radius: 16px; background: var(--soft); }
.happy-client-showcase > img { width: 100%; max-height: 650px; display: block; object-fit: cover; object-position: center; }
.happy-client-names { display: flex; flex-wrap: wrap; justify-content: center; gap: 9px; padding: 20px; }
.happy-client-names span { padding: 8px 12px; border: 1px solid var(--line); border-radius: 999px; font-size: 12px; font-weight: 700; }
.testimonial-rich { background: var(--cream); }
.testimonial-track { display: grid; grid-template-columns: repeat(3,1fr); gap: 18px; }
.testimonial-track > article { padding: 30px; border: 1px solid #eadfd8; border-radius: 13px; background: #fff; }
.testimonial-track .stars { color: #e3a016; font-size: 13px; letter-spacing: .1em; }
.testimonial-track h3 { margin: 17px 0 8px; font-size: 21px; font-weight: 800; }
.testimonial-track article > p { margin: 0; color: var(--muted); font-size: 14px; line-height: 1.7; }
.testimonial-track footer { margin-top: 21px; }
.testimonial-track footer strong, .testimonial-track footer small { display: block; }
.testimonial-track footer strong { font-size: 13px; }
.testimonial-track footer small { margin-top: 3px; color: var(--muted); font-size: 11px; }
.journal-section { background: #fff; }
.journal-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.journal-card > a:first-child { display: block; overflow: hidden; border-radius: 12px; }
.journal-card img { width: 100%; aspect-ratio: 1.45; display: block; object-fit: cover; transition: transform .35s ease; }
.journal-card:hover img { transform: scale(1.03); }
.journal-card > p { margin: 15px 0 7px; color: var(--green); font-size: 11px; font-weight: 800; text-transform: uppercase; }
.journal-card h3 { margin: 0; font-size: 23px; font-weight: 800; letter-spacing: -.03em; line-height: 1.18; }
.journal-card > span { display: -webkit-box; margin: 9px 0 13px; overflow: hidden; color: var(--muted); font-size: 14px; line-height: 1.6; -webkit-box-orient: vertical; -webkit-line-clamp: 2; }

/* Shop */
.shop-heading { padding: 38px 0 22px; background: #fff; }
.breadcrumbs { display: flex; align-items: center; flex-wrap: wrap; gap: 8px; margin-bottom: 14px; color: #79817b; font-size: 12px; }
.shop-heading h1 { margin: 0; font-size: clamp(40px,4vw,56px); font-weight: 800; letter-spacing: -.05em; line-height: 1; }
.shop-heading p { margin: 12px 0 0; color: var(--muted); font-size: 16px; }
.shop-promo { padding-bottom: 28px; background: #fff; }
.shop-promo-inner { position: relative; min-height: 310px; display: flex; align-items: center; overflow: hidden; border-radius: 18px; background: linear-gradient(100deg,#f5ebe5 0 55%,#dce8cb 55%); }
.shop-promo-inner > div:first-child { position: relative; z-index: 3; width: 52%; padding: 44px 0 44px 48px; }
.shop-promo-inner > div:first-child > span { color: var(--green); font-size: 12px; font-weight: 800; text-transform: uppercase; }
.shop-promo h2 { margin: 11px 0 8px; font-size: clamp(38px,4vw,54px); font-weight: 800; letter-spacing: -.05em; line-height: .98; }
.shop-promo p { margin: 0 0 20px; color: var(--muted); font-size: 15px; }
.shop-promo-plants { position: absolute; right: 0; top: 0; width: 50%; height: 100%; }
.shop-promo-plants img { position: absolute; bottom: -30px; width: 48%; height: 104%; object-fit: contain; mix-blend-mode: multiply; }
.shop-promo-plants img:nth-child(1) { left: 27%; z-index: 3; }
.shop-promo-plants img:nth-child(2) { left: 1%; height: 80%; z-index: 2; }
.shop-promo-plants img:nth-child(3) { right: -5%; height: 82%; }
.category-rail-section { padding: 25px 0 30px; background: var(--cream); }
.category-shop-rail { display: grid; grid-template-columns: repeat(6,1fr); gap: 24px; }
.category-shop-rail a { text-align: center; }
.category-shop-rail a > span { display: block; aspect-ratio: 1; overflow: hidden; border: 2px solid transparent; border-radius: 50%; background: #fff; }
.category-shop-rail a.active > span { border-color: var(--green); }
.category-shop-rail img { width: 100%; height: 100%; object-fit: cover; }
.category-shop-rail strong { display: block; margin-top: 10px; font-size: 13px; line-height: 1.25; }
.shop-toolbar { position: sticky; top: 139px; z-index: 35; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: rgba(255,255,255,.97); backdrop-filter: blur(8px); }
.toolbar-inner { min-height: 64px; display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.filter-toggle { min-height: 40px; display: inline-flex; align-items: center; gap: 8px; padding: 0 15px; border: 1px solid var(--line); border-radius: 7px; background: #fff; font-size: 13px; font-weight: 800; cursor: pointer; }
.toolbar-inner > p { margin: 0; color: var(--muted); font-size: 13px; }
.toolbar-inner > p strong { color: var(--ink); font-size: 15px; }
.toolbar-inner form { display: flex; align-items: center; gap: 10px; }
.toolbar-inner label { color: var(--muted); font-size: 13px; font-weight: 700; }
.toolbar-inner select { min-height: 40px; padding: 0 34px 0 12px; border: 1px solid var(--line); border-radius: 6px; color: var(--ink); background: #fff; font-size: 13px; }
.shop-section { padding-top: 46px; }
.shop-layout { display: block; }
.shop-results { min-width: 0; }
.shop-product-grid { grid-template-columns: repeat(4,minmax(0,1fr)); gap: 38px 20px; }
.filters { position: fixed; inset: 0 auto 0 0; z-index: 1500; width: min(390px,94vw); max-height: 100vh; overflow-y: auto; border: 0; border-radius: 0; background: #fff; box-shadow: 30px 0 80px rgba(0,0,0,.24); transform: translateX(-105%); transition: transform .25s ease; }
.filters.open { transform: none; }
.filter-head { display: flex; align-items: center; justify-content: space-between; padding: 21px 22px; border-bottom: 1px solid var(--line); background: #f4f6f2; }
.filter-head h2 { margin: 0; font-size: 24px; }
.filter-head button { border: 0; background: transparent; font-size: 28px; cursor: pointer; }
.filters form { padding: 0 22px 26px; }
.filter-group { margin: 0; padding: 21px 0; border: 0; border-bottom: 1px solid var(--line); }
.filter-group > label:first-child, .filter-group legend { display: block; margin: 0 0 12px; font-size: 13px; font-weight: 800; }
.filter-search { position: relative; }
.filter-search input { width: 100%; height: 44px; padding: 0 42px 0 12px; border: 1px solid var(--line); border-radius: 6px; font-size: 13px; }
.filter-search .search-mark { position: absolute; right: 14px; top: 12px; transform: scale(.85); }
.check-row { min-height: 38px; display: grid; grid-template-columns: 18px minmax(0,1fr) auto; align-items: center; gap: 9px; color: #4f5c53; font-size: 13px; }
.check-row input { accent-color: var(--green); }
.check-row small { color: #929991; font-size: 11px; }
.price-fields { display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; gap: 8px; }
.price-fields input { width: 100%; min-width: 0; height: 42px; padding: 0 9px; border: 1px solid var(--line); border-radius: 6px; font-size: 12px; }
.price-shortcuts { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 10px; }
.price-shortcuts button { padding: 7px 9px; border: 1px solid var(--line); border-radius: 5px; color: var(--muted); background: #fff; font-size: 10px; }
.filter-stock { margin: 18px 0; }
.reset-link { display: block; margin-top: 12px; color: var(--muted); font-size: 12px; text-align: center; text-decoration: underline; }
.active-filters { display: flex; align-items: center; flex-wrap: wrap; gap: 8px; margin-bottom: 20px; }
.active-filters b { padding: 7px 10px; border-radius: 999px; background: #edf3e9; font-size: 11px; }
.active-filters a { margin-left: auto; color: var(--green); font-size: 12px; text-decoration: underline; }
.pagination { margin-top: 48px; }
.collection-help { color: #fff; background: var(--green); }
.collection-help .container { min-height: 230px; display: flex; align-items: center; justify-content: space-between; gap: 36px; }
.collection-help h2 { margin: 0; color: #fff; font-size: 39px; font-weight: 800; letter-spacing: -.04em; }
.collection-help p { margin: 8px 0 0; color: rgba(255,255,255,.75); font-size: 15px; }

/* About */
.about-hero { padding: 42px 0 58px; background: var(--cream); }
.about-hero-grid { min-height: 560px; display: grid; grid-template-columns: 1fr 1fr; align-items: center; gap: 60px; }
.about-hero h1 { margin: 0; font-size: clamp(48px,5vw,68px); font-weight: 800; letter-spacing: -.055em; line-height: .98; }
.about-hero-grid > div:first-child > p:not(.eyebrow) { max-width: 600px; margin: 22px 0 28px; color: var(--muted); font-size: 17px; line-height: 1.7; }
.about-hero-image { position: relative; height: 560px; overflow: hidden; border-radius: 20px; background: #e4ebd5; }
.about-hero-image img { width: 100%; height: 100%; object-fit: cover; }
.about-hero-image span { position: absolute; left: 22px; bottom: 22px; padding: 12px 15px; border-radius: 7px; color: #fff; background: rgba(6,65,46,.9); font-size: 12px; font-weight: 700; }
.about-intro-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: 80px; }
.about-intro h2 { margin: 0; font-size: clamp(40px,4vw,54px); font-weight: 800; letter-spacing: -.05em; line-height: 1.02; }
.about-intro-grid > div:last-child p { margin: 0 0 18px; color: var(--muted); font-size: 17px; line-height: 1.8; }
.about-benefits { padding: 82px 0; background: var(--green-dark); }
.about-benefits .section-heading h2 { color: #fff; }
.about-benefits .eyebrow { color: var(--lime); }
.about-benefit-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 14px; }
.about-benefit-grid article { padding: 28px; border: 1px solid rgba(255,255,255,.16); border-radius: 12px; color: #fff; background: rgba(255,255,255,.04); }
.about-benefit-grid article > span { width: 44px; height: 44px; display: grid; place-items: center; border-radius: 50%; color: var(--green-dark); background: var(--lime); font-size: 19px; }
.about-benefit-grid h3 { margin: 18px 0 7px; font-size: 21px; }
.about-benefit-grid p { margin: 0; color: rgba(255,255,255,.68); font-size: 14px; line-height: 1.65; }
.planter-range { background: #fff; }
.planter-range-grid { display: grid; grid-template-columns: repeat(5,1fr); gap: 16px; }
.planter-range-grid article { overflow: hidden; border: 1px solid var(--line); border-radius: 12px; background: var(--soft); }
.planter-range-grid img { width: 100%; aspect-ratio: 1; display: block; object-fit: cover; }
.planter-range-grid strong { display: block; padding: 14px; font-size: 15px; text-align: center; }
.about-mission { padding: 82px 0; background: var(--soft); }
.about-mission-grid { display: grid; grid-template-columns: 1fr 1fr; align-items: center; gap: 70px; }
.about-mission-grid > div:first-child { overflow: hidden; border-radius: 16px; }
.about-mission-grid img { width: 100%; display: block; }
.about-mission h2 { margin: 0; font-size: clamp(40px,4vw,54px); font-weight: 800; letter-spacing: -.05em; line-height: 1.02; }
.about-mission p:not(.eyebrow) { margin: 19px 0 26px; color: var(--muted); font-size: 16px; line-height: 1.7; }
.about-cta { color: #fff; background: var(--green); }
.about-cta .container { min-height: 260px; display: flex; align-items: center; justify-content: space-between; gap: 40px; }
.about-cta h2 { margin: 0; color: #fff; font-size: 42px; font-weight: 800; letter-spacing: -.045em; }
.about-cta p { margin: 8px 0 0; color: rgba(255,255,255,.75); }

/* Blog */
.blog-hero { padding: 60px 0 70px; background: var(--cream); }
.blog-hero h1 { max-width: 920px; margin: 0; font-size: clamp(50px,6vw,76px); font-weight: 800; letter-spacing: -.06em; line-height: .98; }
.blog-hero > .container > p:last-child { max-width: 650px; margin: 20px 0 0; color: var(--muted); font-size: 17px; }
.blog-featured { display: grid; grid-template-columns: 1.25fr .75fr; align-items: stretch; overflow: hidden; border-radius: 18px; background: var(--soft); }
.blog-featured > a { min-height: 480px; overflow: hidden; }
.blog-featured img { width: 100%; height: 100%; display: block; object-fit: contain; background: #fbf9dc; }
.blog-featured > div { display: flex; flex-direction: column; align-items: flex-start; justify-content: center; padding: 50px; }
.blog-featured span, .blog-card > span { color: var(--green); font-size: 12px; font-weight: 800; text-transform: uppercase; }
.blog-featured h2 { margin: 12px 0; font-size: 38px; font-weight: 800; letter-spacing: -.04em; line-height: 1.08; }
.blog-featured p { margin: 0 0 24px; color: var(--muted); font-size: 15px; line-height: 1.7; }
.blog-card-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; margin-top: 50px; }
.blog-card > a:first-child { display: block; overflow: hidden; margin-bottom: 15px; border-radius: 12px; }
.blog-card img { width: 100%; aspect-ratio: 1.45; display: block; object-fit: cover; }
.blog-card h2 { margin: 8px 0; font-size: 24px; font-weight: 800; line-height: 1.2; }
.blog-card p { color: var(--muted); font-size: 14px; }

/* Product detail */
.product-page { padding-top: 30px; }
.product-page > .breadcrumbs { margin-bottom: 22px; }
.product-detail-grid { display: grid; grid-template-columns: minmax(0,1.05fr) minmax(440px,.95fr); gap: 58px; align-items: start; }
.product-main-image { position: relative; overflow: hidden; border-radius: 15px; background: #eef0ea; }
.product-main-image > img { width: 100%; aspect-ratio: .95; display: block; object-fit: cover; }
.pdp-labels { position: absolute; left: 15px; top: 15px; display: flex; gap: 7px; }
.pdp-labels span { padding: 6px 9px; border-radius: 4px; color: #fff; background: var(--green); font-size: 11px; font-weight: 800; text-transform: uppercase; }
.pdp-wishlist { top: 13px; right: 13px; }
.product-gallery-support { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-top: 12px; }
.product-gallery-support > div { min-height: 116px; display: grid; grid-template-columns: 92px 1fr; align-items: center; gap: 14px; padding: 10px; border: 1px solid var(--line); border-radius: 9px; }
.product-gallery-support img { width: 92px; height: 92px; border-radius: 7px; object-fit: cover; }
.product-gallery-support strong, .product-gallery-support small { display: block; }
.product-gallery-support strong { font-size: 13px; }
.product-gallery-support small { margin-top: 4px; color: var(--muted); font-size: 11px; line-height: 1.4; }
.product-gallery-support .gallery-purpose-card { grid-template-columns: 44px 1fr; padding: 18px; color: #fff; background: var(--green); border-color: var(--green); }
.gallery-purpose-card > b { width: 42px; height: 42px; display: grid; place-items: center; border-radius: 50%; color: var(--green-dark); background: var(--lime); }
.gallery-purpose-card small { color: rgba(255,255,255,.72); }
.gallery-note { display: flex; gap: 14px; margin-top: 14px; padding: 13px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); font-size: 12px; }
.gallery-note b { color: var(--green); }
.gallery-note span { color: var(--muted); }
.product-summary { padding-top: 7px; }
.product-summary h1 { margin: 0; font-size: clamp(42px,4.2vw,55px); font-weight: 800; letter-spacing: -.05em; line-height: 1; }
.product-rating { display: flex; align-items: center; flex-wrap: wrap; gap: 9px; margin-top: 14px; font-size: 12px; }
.product-rating > span { color: #d49419; }
.product-rating a { padding-left: 9px; border-left: 1px solid var(--line); color: var(--green); text-decoration: underline; }
.product-rating small { margin-left: auto; color: #8a928b; }
.product-short { margin: 20px 0 0; color: var(--muted); font-size: 15px; line-height: 1.75; }
.detail-price-row { display: flex; align-items: baseline; gap: 10px; margin-top: 20px; }
.detail-price { font-size: 30px; font-weight: 800; }
.detail-price-row del { color: #959c96; font-size: 14px; }
.detail-price-row > span { padding: 5px 8px; border-radius: 4px; color: #9a352b; background: #f8e5df; font-size: 11px; font-weight: 800; }
.tax-note { margin: 3px 0 0; color: #858e87; font-size: 11px; }
.in-stock, .low-stock { display: flex; align-items: center; gap: 7px; margin: 12px 0 0; color: var(--green); font-size: 12px; font-weight: 800; }
.in-stock span, .low-stock span { width: 8px; height: 8px; border-radius: 50%; background: #4ca65a; }
.purchase-form { margin-top: 22px; padding: 22px; border: 1px solid var(--line); border-radius: 11px; background: #fafbf8; }
.purchase-form fieldset { margin: 0; padding: 0; border: 0; }
.purchase-form legend { width: 100%; display: flex; align-items: baseline; justify-content: space-between; gap: 12px; margin-bottom: 12px; font-size: 13px; font-weight: 800; }
.purchase-form legend span { color: var(--muted); font-size: 10px; font-weight: 500; }
.size-options { display: grid; grid-template-columns: repeat(3,1fr); gap: 8px; }
.size-options label { position: relative; }
.size-options input { position: absolute; opacity: 0; }
.size-options label > span { min-height: 60px; display: flex; flex-direction: column; justify-content: center; padding: 8px 12px; border: 1px solid var(--line); border-radius: 7px; background: #fff; cursor: pointer; }
.size-options input:checked + span { border-color: var(--green); box-shadow: inset 0 0 0 1px var(--green); }
.size-options b, .size-options small { display: block; }
.size-options b { font-size: 12px; }
.size-options small { margin-top: 3px; color: var(--muted); font-size: 11px; }
.selected-planter { display: flex; align-items: center; gap: 11px; margin-top: 13px; padding: 12px; border-radius: 7px; background: #eaf3e5; }
.selected-planter p { margin: 0; line-height: 1.3; }
.selected-planter strong, .selected-planter small { display: block; }
.selected-planter strong { font-size: 12px; }
.selected-planter small { margin-top: 4px; color: var(--muted); font-size: 10px; }
.purchase-row { display: grid; grid-template-columns: 118px 1fr; gap: 9px; margin-top: 14px; }
.quantity-control { min-height: 50px; display: grid; grid-template-columns: 34px 1fr 34px; align-items: center; border: 1px solid var(--line); border-radius: 7px; background: #fff; }
.quantity-control button { height: 48px; border: 0; background: transparent; font-size: 18px; }
.quantity-control input { width: 100%; border: 0; text-align: center; font-weight: 800; }
.add-button, .buy-now-button { width: 100%; }
.buy-now-button { margin-top: 9px; }
.pincode-check { margin-top: 15px; padding: 18px; border: 1px solid var(--line); border-radius: 9px; }
.pincode-check label { display: block; margin-bottom: 8px; font-size: 13px; font-weight: 800; }
.pincode-check > div { display: grid; grid-template-columns: 30px 1fr auto; align-items: center; border: 1px solid var(--line); border-radius: 6px; overflow: hidden; }
.pincode-check input { min-width: 0; height: 43px; border: 0; outline: 0; font-size: 12px; }
.pincode-check button { height: 43px; padding: 0 15px; border: 0; color: #fff; background: var(--green); font-weight: 800; }
.pincode-check > small { display: block; margin-top: 7px; color: var(--muted); font-size: 11px; }
.assurance-list { display: grid; grid-template-columns: repeat(3,1fr); gap: 8px; margin-top: 15px; }
.assurance-list > div { padding: 13px 11px; border-radius: 7px; background: var(--cream); }
.assurance-list b { display: block; margin-bottom: 7px; color: var(--green); font-size: 14px; }
.assurance-list span { color: var(--muted); font-size: 10px; }
.assurance-list strong { display: block; color: var(--ink); font-size: 11px; }
.product-accordions { margin-top: 18px; border-top: 1px solid var(--line); }
.product-accordions details { border-bottom: 1px solid var(--line); }
.product-accordions summary { min-height: 52px; display: flex; align-items: center; justify-content: space-between; list-style: none; font-size: 13px; font-weight: 800; cursor: pointer; }
.product-accordions details > div { padding: 0 0 17px; color: var(--muted); font-size: 13px; line-height: 1.7; }
.pdp-value-band { color: #fff; background: var(--green); }
.pdp-value-band .container { min-height: 124px; display: grid; grid-template-columns: repeat(4,1fr); }
.pdp-value-band .container > div { display: grid; grid-template-columns: 40px 1fr; grid-template-rows: auto auto; align-content: center; gap: 2px 12px; padding: 18px 22px; border-right: 1px solid rgba(255,255,255,.18); }
.pdp-value-band span { grid-row: 1/3; width: 40px; height: 40px; display: grid; place-items: center; border-radius: 50%; color: var(--green-dark); background: var(--lime); font-weight: 900; }
.pdp-value-band strong { align-self: end; font-size: 13px; }
.pdp-value-band small { color: rgba(255,255,255,.68); font-size: 10px; }
.pdp-material-story { color: #fff; background: var(--green-dark); }
.pdp-material-grid { min-height: 600px; display: grid; grid-template-columns: 1fr 1fr; }
.pdp-material-image { position: relative; overflow: hidden; background: #e4ead8; }
.pdp-material-image img { width: 100%; height: 100%; object-fit: cover; }
.pdp-material-image span { position: absolute; left: 18px; bottom: 18px; padding: 8px 11px; border-radius: 5px; background: rgba(6,65,46,.88); font-size: 11px; font-weight: 800; }
.pdp-material-copy { display: flex; flex-direction: column; align-items: flex-start; justify-content: center; padding: 65px 75px; }
.pdp-material-copy h2 { margin: 0; color: #fff; font-size: clamp(42px,4vw,56px); font-weight: 800; letter-spacing: -.05em; line-height: 1.02; }
.pdp-material-copy > p:not(.eyebrow) { margin: 20px 0 0; color: rgba(255,255,255,.72); font-size: 15px; line-height: 1.75; }
.pdp-material-copy > div { width: 100%; margin: 25px 0; border-top: 1px solid rgba(255,255,255,.17); }
.pdp-material-copy > div span { display: flex; align-items: center; gap: 13px; padding: 13px 0; border-bottom: 1px solid rgba(255,255,255,.17); }
.pdp-material-copy > div b { color: var(--lime); }
.pdp-material-copy > div strong { font-size: 13px; }
.reviews-layout { display: grid; grid-template-columns: 1fr .9fr; gap: 65px; align-items: start; }
.reviews-layout h2 { margin: 0; font-size: 42px; font-weight: 800; letter-spacing: -.04em; }
.review-score { display: flex; align-items: center; gap: 14px; margin-top: 20px; }
.review-score > strong { font-size: 46px; }
.review-score > span { color: #d49419; font-size: 12px; }
.review-score small { display: block; margin-top: 3px; color: var(--muted); }
.review-form { padding: 30px; border-radius: 12px; background: var(--cream); }
.review-form h3 { margin: 0; font-size: 27px; }
.review-form > p { color: var(--muted); font-size: 13px; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 13px; }
.form-grid label { font-size: 12px; font-weight: 800; }
.form-grid input, .form-grid select, .form-grid textarea { width: 100%; margin-top: 5px; padding: 10px; border: 1px solid var(--line); border-radius: 6px; background: #fff; font-size: 12px; }
.form-grid .span-2 { grid-column: span 2; }
.review-form .button { margin-top: 14px; }

/* Footer */
.newsletter-band { color: #fff; background: var(--green); }
.newsletter-grid { min-height: 260px; display: grid; grid-template-columns: 1fr .9fr; align-items: center; gap: 70px; }
.newsletter-grid h2 { margin: 0; color: #fff; font-size: clamp(38px,4vw,50px); font-weight: 800; letter-spacing: -.045em; line-height: 1.05; }
.newsletter-grid > div > p:last-child { margin: 12px 0 0; color: rgba(255,255,255,.74); font-size: 14px; }
.newsletter-form > div { display: grid; grid-template-columns: 1fr auto; overflow: hidden; border-radius: 8px; background: #fff; }
.newsletter-form input { min-width: 0; min-height: 54px; padding: 0 16px; border: 0; outline: 0; font-size: 13px; }
.newsletter-form button { min-height: 54px; padding: 0 18px; border: 0; color: #fff; background: var(--green-dark); font-size: 12px; font-weight: 800; }
.newsletter-form > small { display: block; margin-top: 8px; color: rgba(255,255,255,.68); font-size: 10px; }
.site-footer { color: #fff; background: #042a1e; }
.footer-promise-row { min-height: 108px; display: grid; grid-template-columns: repeat(4,1fr); border-bottom: 1px solid rgba(255,255,255,.13); }
.footer-promise-row > div { display: flex; align-items: center; gap: 13px; padding: 16px 22px; border-right: 1px solid rgba(255,255,255,.13); }
.footer-promise-row > div:first-child { padding-left: 0; }
.footer-promise-row > div:last-child { border-right: 0; }
.footer-promise-row > div > b { width: 38px; height: 38px; display: grid; place-items: center; flex: 0 0 auto; border-radius: 50%; color: var(--green-dark); background: var(--lime); font-size: 13px; }
.footer-promise-row p { margin: 0; line-height: 1.25; }
.footer-promise-row strong, .footer-promise-row small { display: block; }
.footer-promise-row strong { font-size: 12px; }
.footer-promise-row small { margin-top: 4px; color: rgba(255,255,255,.58); font-size: 10px; }
.footer-grid { display: grid; grid-template-columns: 1.6fr repeat(4,1fr); gap: 38px; padding-top: 62px; padding-bottom: 56px; }
.footer-logo { display: inline-flex; align-items: center; gap: 10px; }
.footer-logo img { width: 64px; height: 64px; }
.footer-logo span { display: flex; flex-direction: column; }
.footer-logo strong { font-size: 21px; }
.footer-logo small { margin-top: 4px; color: var(--lime); font-size: 11px; }
.footer-brand > p { max-width: 300px; margin: 18px 0 0; color: rgba(255,255,255,.62); font-size: 12px; line-height: 1.7; }
.footer-socials { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 19px; }
.footer-socials a { font-size: 11px; font-weight: 800; }
.footer-grid h3 { margin: 5px 0 17px; color: var(--lime); font-size: 12px; font-weight: 800; text-transform: uppercase; }
.footer-grid > div:not(.footer-brand) > a { display: block; margin: 10px 0; color: rgba(255,255,255,.7); font-size: 12px; }
.footer-contact p { color: rgba(255,255,255,.68); font-size: 12px; }
.footer-contact > small { color: rgba(255,255,255,.47); font-size: 10px; }
.footer-bottom { min-height: 64px; display: flex; align-items: center; justify-content: space-between; gap: 20px; border-top: 1px solid rgba(255,255,255,.1); color: rgba(255,255,255,.48); font-size: 10px; }
.footer-bottom > div { display: flex; gap: 18px; }
.whatsapp-float { position: fixed; right: 18px; bottom: 18px; z-index: 900; display: flex; align-items: center; gap: 8px; padding: 7px 12px 7px 7px; border-radius: 999px; color: #fff; background: #1cac68; box-shadow: 0 10px 28px rgba(0,0,0,.22); }
.whatsapp-float span { width: 32px; height: 32px; display: grid; place-items: center; border: 1px solid rgba(255,255,255,.55); border-radius: 50%; font-size: 9px; font-weight: 900; }
.whatsapp-float small { font-size: 10px; font-weight: 800; }

@media (max-width: 1180px) {
  .header-main { grid-template-columns: 205px minmax(300px,1fr) auto; gap: 20px; }
  .desktop-nav > a, .desktop-nav > .nav-dropdown > a { padding-inline: 11px; font-size: 12px; }
  .nav-help { display: none; }
  .ug-hero-main-copy { width: 52%; padding-left: 38px; }
  .catalogue-benefits-copy { padding: 55px; }
  .footer-grid { grid-template-columns: 1.45fr repeat(4,1fr); gap: 25px; }
}

@media (max-width: 1024px) {
  .container { width: min(100% - 36px,960px); }
  .desktop-only, .desktop-nav, .header-search, .nav-border, .desktop-action { display: none !important; }
  .mobile-only, .search-mobile-only { display: flex; }
  .announcement-track { width: calc(100% - 30px); justify-content: center; }
  .announcement-track span:not(:nth-child(2)) { display: none; }
  .header-main { min-height: 70px; grid-template-columns: 62px 1fr auto; gap: 8px; }
  .mobile-nav-trigger { min-width: 54px; min-height: 50px; flex-direction: column; align-items: flex-start; justify-content: center; gap: 4px; padding: 5px 7px; border: 0; background: transparent; }
  .mobile-nav-trigger > span { width: 21px; height: 2px; display: block; background: var(--green-dark); }
  .mobile-nav-trigger small { margin-top: 2px; font-size: 9px; font-weight: 800; }
  .brand { justify-self: center; }
  .brand img { width: 46px; height: 46px; }
  .brand strong { font-size: 20px; }
  .brand small { display: none; }
  .nav-actions { gap: 1px; }
  .header-action { min-width: 46px; min-height: 52px; }
  .shop-toolbar { top: 70px; }
  .shop-product-grid { grid-template-columns: repeat(3,minmax(0,1fr)); }
  .product-detail-grid { grid-template-columns: 1fr 1fr; gap: 34px; }
  .product-gallery-support { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1.4fr repeat(2,1fr); }
}

@media (max-width: 760px) {
  body { font-size: 15px; }
  .container { width: calc(100% - 28px); }
  .section { padding: 62px 0; }
  .announcement { height: 32px; }
  .announcement-track { height: 32px; font-size: 10px; }
  .header-main { min-height: 64px; }
  .brand img { width: 40px; height: 40px; }
  .brand strong { font-size: 17px; }
  .account-action { display: none; }
  .wishlist-link.desktop-action { display: flex !important; }
  .header-action { min-width: 42px; }
  .header-action small { font-size: 8px; }
  .section-heading.row, .section-heading.split { align-items: flex-start; flex-direction: column; gap: 13px; }
  .section-heading h2, .section-heading > h2 { font-size: 35px; }
  .ug-home-hero { padding: 42px 0 36px; }
  .ug-hero-heading h1 { font-size: 44px; }
  .hero-rating { margin-bottom: 16px; }
  .hero-rating strong { font-size: 10px; }
  .ug-hero-panels { grid-template-columns: 1fr; }
  .ug-hero-main { min-height: 540px; }
  .ug-hero-main::before { width: 430px; height: 430px; right: -130px; top: 140px; }
  .ug-hero-main-copy { width: 100%; padding: 32px 26px 0; }
  .ug-hero-main-copy h2 { font-size: 43px; }
  .ug-hero-main-copy p { font-size: 14px; }
  .ug-hero-plants { top: auto; bottom: 0; width: 100%; height: 57%; }
  .ug-hero-plants img { height: 105%; }
  .ug-hero-side { grid-template-columns: 1fr 1fr; gap: 10px; }
  .ug-hero-side > a { min-height: 245px; }
  .ug-hero-side span { left: 16px; top: 17px; width: 72%; }
  .ug-hero-side strong { font-size: 19px; }
  .ug-hero-side img { width: 72%; height: 62%; }
  .benefit-strip-grid { grid-template-columns: 1fr 1fr; }
  .benefit-strip-grid > div { padding: 14px 9px; border-bottom: 1px solid var(--line); }
  .benefit-strip-grid > div:nth-child(2) { border-right: 0; }
  .benefit-strip-grid > div:nth-last-child(-n+2) { border-bottom: 0; }
  .benefit-strip-grid > div:first-child { padding-left: 9px; }
  .benefit-strip-grid > div > span { width: 34px; height: 34px; font-size: 15px; }
  .benefit-strip-grid strong { font-size: 11px; }
  .benefit-strip-grid small { font-size: 8px; }
  .ug-category-row { display: flex; gap: 14px; overflow-x: auto; padding-bottom: 8px; scroll-snap-type: x proximity; }
  .ug-category-row a { min-width: 135px; scroll-snap-align: start; }
  .ug-category-row strong { font-size: 13px; }
  .offers-section { padding-top: 5px; }
  .offer-card-grid { grid-template-columns: 1fr; }
  .offer-card { min-height: 250px; }
  .offer-card strong { font-size: 26px; }
  .product-grid, .home-product-grid, .shop-product-grid, .related-product-grid { grid-template-columns: repeat(2,minmax(0,1fr)); gap: 28px 10px; }
  .product-media { aspect-ratio: .88; }
  .product-info h3 { font-size: 17px; }
  .product-card-copy { display: none; }
  .product-meta p { font-size: 8px; }
  .product-price strong { font-size: 15px; }
  .product-price small { font-size: 8px; }
  .wishlist-form { top: 7px; right: 7px; }
  .wishlist-form button { width: 34px; height: 34px; font-size: 21px; }
  .product-labels { left: 7px; top: 7px; }
  .product-labels span { padding: 4px 6px; font-size: 7px; }
  .quick-add-form { position: static; margin: 8px; opacity: 1; transform: none; }
  .quick-add-form button { min-height: 39px; font-size: 10px; }
  .product-view { display: none; }
  .catalogue-benefits-grid { display: block; }
  .catalogue-benefits-image { height: 420px; }
  .catalogue-benefits-copy { padding: 50px 14px 60px; }
  .catalogue-benefits-copy h2 { font-size: 39px; }
  .benefit-list { grid-template-columns: 1fr; }
  .happy-client-showcase > img { min-height: 300px; object-fit: cover; }
  .testimonial-track { grid-template-columns: 1fr; }
  .journal-grid { grid-template-columns: 1fr; gap: 34px; }
  .shop-heading { padding-top: 30px; }
  .shop-heading h1 { font-size: 43px; }
  .shop-promo-inner { min-height: 470px; display: block; background: linear-gradient(180deg,#f5ebe5 0 54%,#dce8cb 54%); }
  .shop-promo-inner > div:first-child { width: 100%; padding: 28px 24px 0; }
  .shop-promo h2 { font-size: 42px; }
  .shop-promo-plants { top: auto; bottom: 0; width: 100%; height: 53%; }
  .category-rail-section { overflow: hidden; }
  .category-shop-rail { display: flex; gap: 14px; overflow-x: auto; padding-bottom: 8px; }
  .category-shop-rail a { min-width: 120px; }
  .category-shop-rail strong { font-size: 11px; }
  .toolbar-inner { min-height: 58px; }
  .toolbar-inner > p { display: none; }
  .toolbar-inner label { display: none; }
  .shop-section { padding-top: 38px; }
  .collection-help .container { min-height: 285px; align-items: flex-start; justify-content: center; flex-direction: column; }
  .collection-help h2 { font-size: 35px; }
  .about-hero { padding-top: 28px; }
  .about-hero-grid { min-height: 0; grid-template-columns: 1fr; gap: 38px; }
  .about-hero h1 { font-size: 44px; }
  .about-hero-image { height: 430px; }
  .about-intro-grid { grid-template-columns: 1fr; gap: 24px; }
  .about-intro h2 { font-size: 39px; }
  .about-benefit-grid { grid-template-columns: 1fr; }
  .planter-range-grid { grid-template-columns: repeat(2,1fr); }
  .planter-range-grid article:last-child { grid-column: 1/-1; width: calc(50% - 8px); margin-inline: auto; }
  .about-mission-grid { grid-template-columns: 1fr; gap: 35px; }
  .about-mission h2 { font-size: 39px; }
  .about-cta .container { min-height: 300px; align-items: flex-start; justify-content: center; flex-direction: column; }
  .about-cta h2 { font-size: 36px; }
  .blog-hero { padding: 44px 0 54px; }
  .blog-hero h1 { font-size: 45px; }
  .blog-featured { grid-template-columns: 1fr; }
  .blog-featured > a { min-height: 300px; }
  .blog-featured > div { padding: 28px; }
  .blog-featured h2 { font-size: 30px; }
  .blog-card-grid { grid-template-columns: 1fr; }
  .product-page { padding-top: 22px; }
  .product-page > .breadcrumbs { overflow-x: auto; white-space: nowrap; }
  .product-detail-grid { display: block; }
  .product-main-image > img { aspect-ratio: .9; }
  .product-gallery-support { grid-template-columns: 1fr 1fr; }
  .product-gallery-support > div { min-height: 92px; grid-template-columns: 64px 1fr; padding: 7px; }
  .product-gallery-support img { width: 64px; height: 76px; }
  .product-gallery-support .gallery-purpose-card { grid-template-columns: 34px 1fr; padding: 10px; }
  .gallery-purpose-card > b { width: 34px; height: 34px; }
  .product-summary { margin-top: 40px; }
  .product-summary h1 { font-size: 42px; }
  .product-rating small { width: 100%; margin: 0; }
  .purchase-form { padding: 17px; }
  .purchase-form legend { align-items: flex-start; flex-direction: column; gap: 3px; }
  .assurance-list { grid-template-columns: 1fr; }
  .assurance-list > div { display: grid; grid-template-columns: 30px 1fr; align-items: center; }
  .assurance-list b { margin: 0; }
  .pdp-value-band .container { grid-template-columns: 1fr 1fr; }
  .pdp-value-band .container > div { min-height: 95px; padding: 12px; border-bottom: 1px solid rgba(255,255,255,.18); }
  .pdp-value-band .container > div:nth-child(2) { border-right: 0; }
  .pdp-material-grid { display: block; }
  .pdp-material-image { height: 430px; }
  .pdp-material-copy { padding: 50px 14px 60px; }
  .pdp-material-copy h2 { font-size: 40px; }
  .reviews-layout { grid-template-columns: 1fr; gap: 40px; }
  .review-form { padding: 22px; }
  .form-grid { grid-template-columns: 1fr; }
  .form-grid .span-2 { grid-column: auto; }
  .newsletter-grid { min-height: 0; grid-template-columns: 1fr; gap: 28px; padding-top: 55px; padding-bottom: 55px; }
  .newsletter-grid h2 { font-size: 38px; }
  .newsletter-form > div { grid-template-columns: 1fr; background: transparent; }
  .newsletter-form input, .newsletter-form button { border-radius: 6px; }
  .newsletter-form button { margin-top: 7px; }
  .footer-promise-row { grid-template-columns: 1fr 1fr; }
  .footer-promise-row > div { min-height: 88px; padding: 10px 8px; border-bottom: 1px solid rgba(255,255,255,.13); }
  .footer-promise-row > div:first-child { padding-left: 8px; }
  .footer-promise-row > div:nth-child(2) { border-right: 0; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 34px 20px; padding-top: 46px; }
  .footer-brand, .footer-contact { grid-column: 1/-1; }
  .footer-bottom { align-items: flex-start; flex-direction: column; justify-content: center; padding: 18px 0; }
  .whatsapp-float small { display: none; }
  .whatsapp-float { padding-right: 7px; }
}

@media (max-width: 390px) {
  .brand strong { font-size: 15px; }
  .mobile-nav-trigger { min-width: 48px; }
  .header-action { min-width: 39px; padding-inline: 2px; }
  .ug-hero-heading h1 { font-size: 40px; }
  .ug-hero-side { grid-template-columns: 1fr; }
  .ug-hero-side > a { min-height: 220px; }
  .purchase-row { grid-template-columns: 98px 1fr; }
  .product-gallery-support { grid-template-columns: 1fr; }
}

/* Storefront v5: navigation, story media and responsive brand journey */
.nav-shop-control { min-height: 52px; display: flex; align-items: center; padding: 0 8px 0 17px; }
.nav-shop-control > a { min-height: 52px; display: inline-flex; align-items: center; color: #29382f; font-size: 14px; font-weight: 700; white-space: nowrap; }
.nav-shop-control > button { width: 32px; height: 32px; display: grid; place-items: center; margin-left: 2px; padding: 0; border: 0; border-radius: 50%; color: var(--green-dark); background: transparent; cursor: pointer; }
.nav-shop-control > button:hover, .nav-shop-control > button[aria-expanded="true"] { background: #edf5eb; }
.nav-shop-control svg { width: 18px; height: 18px; fill: none; stroke: currentColor; stroke-width: 1.8; transition: transform .2s ease; }
.nav-shop-control > button[aria-expanded="true"] svg { transform: rotate(180deg); }
.nav-dropdown.open .dropdown-panel { visibility: visible; opacity: 1; transform: none; }
.mega-panel { width: 880px; grid-template-columns: 240px minmax(0,1fr); gap: 22px; padding: 24px; border-radius: 0 0 16px 16px; }
.mega-intro { padding: 24px; border-radius: 12px; color: #fff; background: var(--green-dark); }
.mega-intro small { color: var(--lime); font-size: 10px; font-weight: 800; letter-spacing: .1em; }
.mega-intro h3 { margin: 11px 0 10px; color: #fff; font-size: 27px; line-height: 1.05; }
.mega-intro p { margin: 0; color: rgba(255,255,255,.75); font-size: 12px; line-height: 1.6; }
.mega-intro a { display: inline-flex; align-items: center; gap: 8px; margin-top: 22px; color: #fff; font-size: 12px; font-weight: 800; }
.mega-categories { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 8px 14px; }
.mega-categories > a { min-width: 0; display: grid; grid-template-columns: 72px minmax(0,1fr); align-items: center; gap: 12px; padding: 8px; border-radius: 10px; }
.mega-categories > a:hover { background: #f2f6ef; }
.mega-categories img { width: 72px; height: 72px; aspect-ratio: 1; border-radius: 50%; object-fit: cover; }
.mega-categories span, .mega-categories strong, .mega-categories small { display: block; }
.mega-categories strong { margin: 0; font-size: 13px; line-height: 1.25; text-align: left; }
.mega-categories small { margin-top: 5px; color: var(--green); font-size: 10px; font-weight: 700; }

.ug-generated-hero { width: 57%; overflow: hidden; border-radius: 0 18px 18px 0; background: #f4eadc; }
.ug-generated-hero img { inset: 0; left: 0 !important; bottom: 0 !important; width: 100% !important; height: 100% !important; object-fit: cover; object-position: 54% center; mix-blend-mode: normal; filter: none; }
.ug-hero-side img { right: 0; bottom: 0; width: 100%; height: 100%; object-fit: cover; object-position: center; mix-blend-mode: normal; }
.ug-hero-side > a::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg,rgba(255,255,255,.96) 0%,rgba(255,255,255,.76) 44%,rgba(255,255,255,0) 72%); }
.ug-hero-side span { z-index: 4; }

.video-story { position: relative; min-height: 640px; display: grid; place-items: center; background: radial-gradient(circle at 50% 42%,#f8f3df,#dfe7d2); }
.video-story > img { width: 72%; height: 78%; object-fit: contain; filter: drop-shadow(0 25px 22px rgba(0,0,0,.15)); }
.video-story video { width: 100%; height: 100%; object-fit: cover; background: #111; }
.story-play { position: absolute; left: 50%; top: 50%; display: flex; align-items: center; gap: 12px; padding: 9px 18px 9px 9px; border: 0; border-radius: 999px; color: var(--green-dark); background: rgba(255,255,255,.96); box-shadow: 0 14px 40px rgba(11,65,46,.25); transform: translate(-50%,-50%); cursor: pointer; }
.story-play > span { width: 52px; height: 52px; display: grid; place-items: center; padding-left: 3px; border-radius: 50%; color: #fff; background: var(--green); font-size: 17px; }
.story-play small { font-size: 12px; font-weight: 800; white-space: nowrap; }

.brand-journey-section { overflow: hidden; background: #fbf8ef; }
.brand-journey-visual { position: relative; overflow: hidden; border: 1px solid #e3dfd3; border-radius: 20px; background: #fbf8ef; box-shadow: 0 22px 55px rgba(55,60,40,.08); }
.brand-journey-visual picture, .brand-journey-visual img { display: block; width: 100%; }
.brand-journey-visual img { aspect-ratio: 3/1; object-fit: cover; }
.journey-copy { position: absolute; top: 7%; width: 25%; padding: 17px 18px; border: 1px solid rgba(13,91,64,.14); border-radius: 12px; background: rgba(255,255,255,.9); box-shadow: 0 10px 30px rgba(30,50,35,.08); backdrop-filter: blur(8px); }
.journey-copy strong, .journey-copy span { display: block; }
.journey-copy strong { color: var(--green-dark); font-size: 21px; }
.journey-copy span { margin-top: 5px; color: #546057; font-size: 11px; line-height: 1.5; }
.journey-vision { left: 3%; }
.journey-mission { left: 37.5%; }
.journey-product { right: 3%; }

.mobile-bottom-nav { display: none; }
.whatsapp-float { z-index: 1050; padding: 8px 14px 8px 8px; background: #1fa463; }
.whatsapp-float > span { width: 38px; height: 38px; border: 0; background: #fff; }
.whatsapp-float svg { width: 25px; height: 25px; fill: #1fa463; }
.whatsapp-float small { display: flex; flex-direction: column; color: rgba(255,255,255,.85); font-size: 9px; font-weight: 600; line-height: 1.25; }
.whatsapp-float small b { color: #fff; font-size: 12px; }

@media (max-width: 1180px) and (min-width: 1025px) {
  .nav-shop-control { padding-left: 11px; }
  .nav-shop-control > a { font-size: 12px; }
  .mega-panel { width: 820px; }
}

@media (max-width: 1024px) {
  .header-main { display: flex; grid-template-columns: none; justify-content: space-between; }
  .brand { justify-self: auto; margin-right: auto; }
  .account-action { display: none; }
  .mobile-bottom-nav { position: fixed; left: 0; right: 0; bottom: 0; z-index: 1100; min-height: 70px; display: grid; grid-template-columns: repeat(5,1fr); padding: 6px max(6px,env(safe-area-inset-right)) calc(5px + env(safe-area-inset-bottom)) max(6px,env(safe-area-inset-left)); border-top: 1px solid #dfe3dc; background: rgba(255,255,255,.98); box-shadow: 0 -8px 25px rgba(25,50,35,.1); backdrop-filter: blur(14px); }
  .mobile-bottom-nav a { min-width: 0; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 3px; color: #707770; font-size: 10px; font-weight: 700; }
  .mobile-bottom-nav svg { width: 22px; height: 22px; fill: none; stroke: currentColor; stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }
  .mobile-bottom-nav a.active { color: #18a957; }
  .mobile-bottom-nav a.active svg { fill: rgba(24,169,87,.12); stroke-width: 2; }
  body { padding-bottom: calc(70px + env(safe-area-inset-bottom)); }
  .whatsapp-float { right: 14px; bottom: calc(82px + env(safe-area-inset-bottom)); padding: 7px; }
  .whatsapp-float small { display: none; }
}

@media (max-width: 760px) {
  .ug-hero-main { min-height: 570px; }
  .ug-generated-hero { top: auto; bottom: 0; width: 100%; height: 56%; border-radius: 0 0 18px 18px; }
  .ug-generated-hero img { width: 100% !important; height: 100% !important; object-fit: cover; object-position: center; }
  .ug-hero-side img { width: 100%; height: 100%; object-position: center; }
  .ug-hero-side > a::after { background: linear-gradient(180deg,rgba(255,255,255,.96) 0%,rgba(255,255,255,.72) 47%,rgba(255,255,255,0) 77%); }
  .ug-hero-side span { width: calc(100% - 30px); }
  .video-story { min-height: 420px; }
  .video-story > img { width: 80%; height: 80%; }
  .video-story video { object-fit: contain; }
  .brand-journey-visual img { min-height: 980px; aspect-ratio: 1/2.15; object-fit: cover; }
  .journey-copy { width: calc(100% - 34px); padding: 13px 15px; }
  .journey-copy strong { font-size: 19px; }
  .journey-copy span { font-size: 10px; }
  .journey-vision { left: 17px; right: auto; top: 5%; }
  .journey-mission { left: 17px; top: 38%; }
  .journey-product { left: 17px; right: auto; top: 69%; }
}
