/* =========================================================
   TreeBorn — Plants for city life
   Design tokens

   ========================================================= */

@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700&display=swap');

/* .logo {
  font-family: "Montserrat", sans-serif;
} */


@font-face {
  font-family: 'GooperDeck-semibold';
  src: local('GooperDeck-semibold'),
    url('../fonts/GooperDeck-Semibold.woff2') format('woff2');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

:root {
  --forest: #0A3E25;
  --forest-light: #155A38;
  --green-brand: #028A50;
  --yellow-brand: #FFD300;
  --yellow-hover: #E6BD00;
  --paper: #FBFBF9;
  --paper-dim: #F5F3EC;
  --moss: #6D9276;
  --ink: #111111;
  --gold: #FFC72C;
  --white: #FFFFFF;
  --line: rgba(11, 62, 37, 0.12);

  --font-heading: 'Chica Gogo NF', 'Fredoka', sans-serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 28px;
  --shadow-soft: 0 12px 32px rgba(10, 62, 37, 0.08);
  --shadow-card: 0 4px 18px rgba(10, 62, 37, 0.05);
  --container: 1360px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  display: block;
}

/* =========================================================
   Global Enhancements (Noise & Reveal)
   ========================================================= */
.noise-overlay {
  position: fixed;
  inset: 0;
  z-index: 9999;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)' opacity='0.04'/%3E%3C/svg%3E");
  opacity: 0.8;
}

.ambient-bg {
  position: relative;
  overflow: hidden;
}

.ambient-bg::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle at 50% 50%, rgba(225, 237, 225, 0.4) 0%, rgba(255, 255, 255, 0) 50%);
  animation: ambientShift 20s ease-in-out infinite alternate;
  z-index: 0;
  pointer-events: none;
}

@keyframes ambientShift {
  0% {
    transform: translate(0, 0) scale(1);
  }

  100% {
    transform: translate(10%, 10%) scale(1.1);
  }
}

/* Reveal Animations */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 {
  transition-delay: 0.1s;
}

.reveal-delay-2 {
  transition-delay: 0.2s;
}

.reveal-delay-3 {
  transition-delay: 0.3s;
}


a {
  color: inherit;
  text-decoration: none;
}

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

button {
  font-family: inherit;
  cursor: pointer;
}

h1,
h2,
h3,
h4 {
  font-family: var(--font-display);
  margin: 0;
  line-height: 1.08;
  letter-spacing: 0.2px;
}

p {
  margin: 0;
}

.wrap {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 3px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--clay);
  font-weight: 700;
}

.eyebrow::before {
  content: "";
  width: 18px;
  height: 2px;
  background: var(--clay);
  display: inline-block;
}

.section {
  padding: 100px 0 !important;
}

.section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 36px;
  flex-wrap: wrap;
}

.section-head h2 {
  font-size: clamp(28px, 4vw, 42px);
  color: var(--forest);
  margin-top: 8px;
}

.section-head p.lede {
  font-family: var(--font-body);
  color: #4b5a4f;
  max-width: 480px;
  margin-top: 8px;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 26px;
  border-radius: 999px;
  border: 2px solid transparent;
  font-weight: 700;
  font-size: 14.5px;
  letter-spacing: 0.2px;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
  white-space: nowrap;
}

.btn:active {
  transform: scale(0.97);
}

.btn-primary {
  background: var(--forest);
  color: var(--paper);
}

.btn-primary:hover {
  background: var(--forest-light);
  box-shadow: var(--shadow-soft);
}

.btn-clay {
  background: var(--clay);
  color: var(--white);
}

.btn-clay:hover {
  background: var(--clay-dark);
  box-shadow: var(--shadow-soft);
}

.btn-outline {
  background: transparent;
  border-color: var(--forest);
  color: var(--forest);
}

.btn-outline:hover {
  background: var(--forest);
  color: var(--paper);
}

.btn-ghost {
  background: rgba(255, 255, 255, 0.15);
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.5);
}

.btn-block {
  width: 100%;
}

.btn-lg {
  padding: 17px 30px;
  font-size: 16px;
}

.btn-whatsapp {
  background: #25D366;
  color: #08321a;
}

.btn-whatsapp:hover {
  background: #1ebd5a;
  box-shadow: var(--shadow-soft);
}

.btn-whatsapp svg {
  width: 18px;
  height: 18px;
}

/* =========================================================
   Announcement bar + Header
   ========================================================= */
.announce {
  background: var(--forest);
  color: var(--paper);
  font-size: 13px;
  letter-spacing: 0.4px;
  text-align: center;
  padding: 9px 12px;
  overflow: hidden;
  position: relative;
}

.announce .marquee-track {
  display: inline-flex;
  gap: 60px;
  white-space: nowrap;
  animation: marquee 22s linear infinite;
}

@keyframes marquee {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

/* =========================================================
   Header Top Bar & Site Header
   ========================================================= */
.header-top-bar {
  background: #f4efe6;
  border-bottom: 1px solid rgba(0, 0, 0, 0.07);
  font-size: 12.5px;
  color: #3b4e40;
}

.header-top-bar .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 7px !important;
  padding-bottom: 7px !important;
  gap: 16px;
}

.header-top-left,
.header-top-right {
  display: flex;
  align-items: center;
  gap: 12px;
}

.header-top-item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #3b4e40;
  text-decoration: none;
  font-weight: 500;
  font-size: 12.5px;
  transition: color 0.2s ease;
}

.header-top-item:hover {
  color: var(--green-brand);
}

.header-top-item svg {
  color: var(--clay);
  flex-shrink: 0;
}

.header-top-divider {
  color: #c4baa9;
  font-size: 11px;
}

.site-header {
  background: var(--paper);
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid var(--line);
}

.site-header .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-top: 14px;
  padding-bottom: 14px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-size: 26px;
  color: var(--forest);
}

.logo .dot {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: var(--clay);
  display: inline-block;
}

.main-nav {
  display: flex;
  gap: 30px;
  align-items: center;
}

/* Hide drawer-only elements on desktop */
.nav-drawer-header,
.nav-drawer-links,
.nav-drawer-footer,
.nav-overlay {
  display: none;
}

/* Desktop nav links */
.nav-desktop-link {
  font-size: 14.5px;
  font-weight: 600;
  color: var(--ink);
  position: relative;
  padding: 6px 0;
}

.nav-desktop-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 2px;
  width: 0;
  background: var(--clay);
  transition: width .2s ease;
}

.nav-desktop-link:hover::after,
.nav-desktop-link.active::after {
  width: 100%;
}

.nav-desktop-link.active {
  color: var(--clay);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 18px;
}

.icon-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--paper-dim);
  border: 1px solid var(--line);
  transition: background .18s ease;
}

.icon-btn:hover {
  background: var(--moss);
}

.icon-btn svg {
  width: 18px;
  height: 18px;
}

.nav-toggle {
  display: none;
  width: 40px;
  height: 40px;
  align-items: center;
  justify-content: center;
  background: none;
  border: none;
}

.nav-toggle span,
.nav-toggle::before,
.nav-toggle::after {
  content: "";
  display: block;
  width: 22px;
  height: 2px;
  background: var(--forest);
  position: relative;
}

.nav-toggle {
  flex-direction: column;
  gap: 5px;
}

/* =========================================================
   Header Search & Sub Navigation
   ========================================================= */
.header-search {
  flex: 1;
  max-width: 460px;
  position: relative;
  margin: 0 20px;
}

.header-search input {
  width: 100%;
  padding: 10px 16px 10px 40px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: var(--paper-dim);
  font-size: 14px;
  outline: none;
  transition: all 0.2s ease;
}

.header-search input:focus {
  background: var(--white);
  border-color: var(--green-brand);
}

.header-search svg {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  width: 16px;
  height: 16px;
  color: var(--moss);
}

.sub-nav-bar {
  background: var(--white);
  border-bottom: 1px solid var(--line);
}

.sub-nav-bar .wrap {
  display: flex;
  justify-content: center;
  gap: 32px;
  padding: 12px 24px;
  overflow-x: auto;
  white-space: nowrap;
}

.sub-nav-bar a {
  font-size: 14px;
  font-weight: 600;
  color: var(--forest);
  transition: color 0.18s ease;
}

.sub-nav-bar a:hover {
  color: var(--green-brand);
}

/* =========================================================
   Premium Hero Banner ("Nature Elevated")
   ========================================================= */
.premium-hero {
  background: #fdfaf4;
  /* Soft warm cream */
  border-radius: var(--radius-lg);
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  position: relative;
  overflow: hidden;
  min-height: 550px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
  margin-bottom: 40px;
}

/* Subtle top-left shadow overlay */
.ph-shadow-topleft {
  position: absolute;
  top: -50px;
  left: -50px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(0, 0, 0, 0.04) 0%, rgba(0, 0, 0, 0) 70%);
  z-index: 0;
  pointer-events: none;
}

/* LEFT CONTENT */
.ph-content {
  padding: 60px 80px;
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.ph-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 40px;
}

.ph-logo-img {
  width: 140px;
  object-fit: contain;
  filter: grayscale(100%) brightness(40%) sepia(100%) hue-rotate(80deg) saturate(300%);
}

.ph-tagline {
  font-family: var(--font-body);
  font-size: 14px;
  color: #556b55;
  font-weight: 500;
  letter-spacing: 0.5px;
  border-left: 1px solid #c9d6c9;
  padding-left: 12px;
}

.ph-title {
  font-family: "Montserrat", sans-serif;
  font-size: clamp(64px, 6vw, 84px);
  line-height: 1.05;
  color: #1e3822;
  /* Dark green */
  font-weight: 500;
  margin-bottom: 24px;
  position: relative;
  letter-spacing: -1px;
}

.ph-line-leaf {
  position: absolute;
  left: -90px;
  top: 40px;
  width: 80px;
  opacity: 0.8;
  transform: rotate(-15deg);
}

.ph-highlight {
  color: #657a41;
  /* Olive green */
  position: relative;
  display: inline-block;
}

.ph-highlight::after {
  content: '';
  position: absolute;
  bottom: 8px;
  left: 0;
  width: 100%;
  height: 6px;
  background: #657a41;
  border-radius: 4px;
  opacity: 0.3;
  transform: rotate(-1deg);
}

.ph-desc {
  font-family: var(--font-body);
  font-size: 18px;
  line-height: 1.6;
  color: #4a5c4a;
  max-width: 420px;
  margin-bottom: 48px;
}

.ph-desc strong {
  color: #657a41;
  font-weight: 700;
}

.ph-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background-color: #1e3822;
  color: #fff;
  padding: 16px 36px;
  border-radius: 50px;
  font-family: var(--font-primary);
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 1.5px;
  text-decoration: none;
  transition: all 0.3s ease;
  align-self: flex-start;
}

.ph-btn:hover {
  background-color: #2c4a30;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(30, 56, 34, 0.2);
}

.ph-btn svg {
  width: 18px;
  height: 18px;
  transition: transform 0.3s ease;
}

.ph-btn:hover svg {
  transform: translateX(4px);
}

/* RIGHT GRAPHIC AREA */
.ph-graphic {
  position: relative;
  height: 100%;
  min-height: 550px;
  border-top-right-radius: var(--radius-lg);
  border-bottom-right-radius: var(--radius-lg);
  overflow: hidden;
}

/* The ribbed curved background */
.ph-ribbed-bg {
  position: absolute;
  top: 0;
  right: 0;
  width: 120%;
  height: 100%;
  background: repeating-linear-gradient(to right, #38523c, #38523c 15px, #2f4733 15px, #2f4733 30px);
  border-left: 2px solid #cdb083;
  /* Copper/Gold trim */
  border-radius: 50% 0 0 50% / 100% 0 0 100%;
  transform: translateX(10%);
  z-index: 1;
  box-shadow: inset 15px 0 30px rgba(0, 0, 0, 0.3);
}

.ph-image-wrapper {
  position: absolute;
  bottom: 0;
  right: -20px;
  width: 100%;
  height: 95%;
  z-index: 2;
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
}

.ph-main-img {
  width: auto;
  height: 100%;
  object-fit: contain;
  object-position: bottom right;
  /* Use a smooth radial mask instead of blend mode so the plant colors stay vibrant over the dark background! */
  -webkit-mask-image: radial-gradient(circle at 65% 55%, black 40%, transparent 70%);
  mask-image: radial-gradient(circle at 65% 55%, black 40%, transparent 70%);
  filter: contrast(1.1) brightness(1.05);
}

/* RESPONSIVE */
@media (max-width: 1024px) {
  .premium-hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .ph-content {
    padding: 50px 40px;
  }

  .ph-line-leaf {
    display: none;
  }

  .ph-graphic {
    height: 400px;
    min-height: auto;
  }

  .ph-ribbed-bg {
    width: 100%;
    transform: translateX(0);
    border-radius: 0;
    border-left: none;
    border-top: 2px solid #cdb083;
  }

  .ph-main-img {
    mix-blend-mode: normal;
    object-fit: cover;
    width: 100%;
  }
}

/* Right Service Selector Card */
.service-selector-card {
  background: var(--paper-dim);
  border-radius: var(--radius-lg);
  padding: 30px;
  box-shadow: var(--shadow-card);
  display: flex;
  flex-direction: column;
}

.service-selector-card h3 {
  font-size: 20px;
  color: var(--forest);
  margin-bottom: 20px;
}

.services-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 20px;
}

.service-option {
  display: flex;
  align-items: center;
  gap: 16px;
  background: var(--white);
  padding: 14px 18px;
  border-radius: var(--radius-md);
  cursor: pointer;
  border: 2px solid transparent;
  transition: all 0.2s ease;
}

.service-option:hover {
  border-color: var(--green-brand);
}

.service-option input[type="radio"] {
  display: none;
}

.service-radio-custom {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 2px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.service-radio-custom::after {
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--green-brand);
  transform: scale(0);
  transition: transform 0.18s ease;
}

.service-option input[type="radio"]:checked+.service-radio-custom {
  border-color: var(--green-brand);
}

.service-option input[type="radio"]:checked+.service-radio-custom::after {
  transform: scale(1);
}

.service-option input[type="radio"]:checked~.service-meta {
  border-color: var(--green-brand);
}

.service-icon {
  font-size: 24px;
}

.service-meta {
  flex: 1;
}

.service-meta strong {
  display: block;
  font-size: 14px;
  color: var(--forest);
}

.service-meta span {
  font-size: 12px;
  color: #666;
}

.pincode-checker {
  margin-top: auto;
}

.pincode-form {
  display: flex;
  gap: 8px;
}

.pincode-form input {
  flex: 1;
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--line);
  font-size: 14px;
  background: var(--white);
  outline: none;
}

.pincode-form button {
  padding: 12px 20px;
  background: var(--green-brand);
  color: var(--white);
  border: none;
  font-weight: 700;
  border-radius: var(--radius-sm);
  transition: background 0.18s ease;
}

.pincode-form button:hover {
  background: var(--forest-light);
}

.pincode-result {
  margin-top: 8px;
  font-size: 13px;
  font-weight: 600;
}

.pincode-result.success {
  color: var(--green-brand);
}

.pincode-result.error {
  color: #d32f2f;
}

/* =========================================================
   Yellow Trust Ribbon
   ========================================================= */
.trust-ribbon {
  background: #6f8c38;
  color: #fff;
  padding: 16px 0;
  font-weight: 700;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.02);
}

.trust-ribbon .wrap {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  text-align: center;
}

.trust-ribbon-item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 14px;
}

.trust-ribbon-item svg {
  width: 20px;
  height: 20px;
  color: #fff;
}

/* =========================================================
   Category Circles Grid
   ========================================================= */
.category-circles-grid {
  display: flex;
  justify-content: center;
  gap: 28px;
  flex-wrap: wrap;
  padding: 24px 0 32px;
}

.category-circle-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  flex: 0 0 160px;
  text-decoration: none;
  cursor: pointer;
}

.category-circle-img {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  overflow: hidden;
  box-shadow: var(--shadow-card);
  margin-bottom: 12px;
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
  border: 3px solid var(--white);
}

.category-circle-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.category-circle-card:hover .category-circle-img {
  transform: scale(1.06);
  border-color: var(--green-brand);
  box-shadow: 0 8px 24px rgba(2, 138, 80, 0.2);
}

.category-circle-card span {
  font-size: 14px;
  font-weight: 600;
  color: var(--forest);
  transition: color 0.2s ease;
}

.category-circle-card:hover span {
  color: var(--green-brand);
}

/* =========================================================
   Products Grid & Cards updates
   ========================================================= */
.product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 24px;
}

.product-card {
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  position: relative;
  display: flex;
  flex-direction: column;
  transition: transform 0.22s ease, box-shadow 0.22s ease;
  border: 1px solid var(--line);
}

.product-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-soft);
}

.product-thumb {
  aspect-ratio: 1/1;
  overflow: hidden;
  position: relative;
}

.product-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.tag {
  position: absolute;
  top: 10px;
  left: 10px;
  background: var(--green-brand);
  color: var(--white);
  font-size: 11px;
  font-weight: 700;
  padding: 4px 8px;
  border-radius: var(--radius-sm);
}

.tag-sale {
  background: var(--yellow-brand);
  color: var(--forest);
}

.wish-btn {
  position: absolute;
  top: 10px;
  right: 10px;
  background: var(--white);
  border: none;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-card);
  font-size: 16px;
  color: #ccc;
  cursor: pointer;
}

.wish-btn:hover {
  color: #e57373;
}

.product-info {
  padding: 16px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.product-info .p-cat {
  font-size: 11px;
  text-transform: uppercase;
  color: var(--moss);
  font-weight: 700;
  margin-bottom: 6px;
}

.product-info h3 {
  font-family: var(--font-body);
  font-size: 14.5px;
  font-weight: 700;
  color: var(--forest);
  margin-bottom: 8px;
}

.price-row {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-top: auto;
}

.price {
  font-weight: 800;
  font-size: 16px;
  color: var(--forest);
}

.price-old {
  font-size: 13px;
  color: #999;
  text-decoration: line-through;
}

.btn-add {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin-top: 12px;
  background: var(--white);
  border: 1.5px solid var(--green-brand);
  color: var(--green-brand);
  font-weight: 700;
  font-size: 13.5px;
  padding: 8px;
  border-radius: 999px;
  width: 100%;
  transition: all 0.18s ease;
}

.btn-add:hover {
  background: var(--green-brand);
  color: var(--white);
}

/* =========================================================
   Testimonials Videos
   ========================================================= */
.testimonials-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.testimonial-video-card {
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  border: 1px solid var(--line);
}

.video-preview {
  position: relative;
  aspect-ratio: 9/16;
  background: #000;
}

.video-preview img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.85;
}

.play-btn {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--green-brand);
  font-size: 20px;
  box-shadow: var(--shadow-soft);
  cursor: pointer;
}

.video-meta {
  padding: 12px 14px;
  background: var(--paper-dim);
  display: flex;
  align-items: center;
  gap: 10px;
}

.video-meta img {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  object-fit: cover;
}

.video-meta-info strong {
  display: block;
  font-size: 12.5px;
  color: var(--forest);
}

.video-meta-info span {
  font-size: 11px;
  color: #666;
}

/* =========================================================
   Green Your Space Banner Blocks
   ========================================================= */
.promo-banner {
  background: #e7f5ee;
  border-radius: var(--radius-lg);
  padding: 30px;
  margin: 40px 0;
}

.promo-banner-header {
  text-align: center;
  margin-bottom: 24px;
}

.promo-banner-header h2 {
  font-size: clamp(24px, 3.4vw, 32px);
  color: var(--forest);
}

.promo-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.promo-card {
  position: relative;
  aspect-ratio: 1.1/1;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-card);
}

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

.promo-card:hover img {
  transform: scale(1.05);
}

.promo-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 40%, rgba(10, 62, 37, 0.85) 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 20px;
  color: var(--white);
}

.promo-overlay h4 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 4px;
}

.promo-overlay span {
  font-size: 12px;
  color: #c9dfd3;
}

/* =========================================================
   Background Logo Animation
   ========================================================= */
.logo-bg-section {
  position: relative;
  overflow: hidden;
}

.bg-wave-container {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
}

.bg-wave-container .lw-wave-svg {
  width: 100%;
  height: 100%;
  display: block;
}

/* =========================================================
   Featured Topics — Vintage Nursery Background & Decorations
   ========================================================= */
.ft-nursery-section {
  position: relative;
  overflow: hidden;
  background: linear-gradient(160deg, #f7f2e8 0%, #eee8d5 30%, #f5f0e3 60%, #faf6ed 100%);
  border-top: 3px solid #d4c9a8;
  border-bottom: 3px solid #d4c9a8;
}

.ft-nursery-section::before {
  content: '';
  position: absolute;
  inset: 12px;
  border: 1.5px dashed rgba(140, 120, 80, 0.2);
  border-radius: 20px;
  pointer-events: none;
  z-index: 1;
}

/* Vintage heading styles */
.ft-eyebrow-vintage {
  color: #6b5b3a !important;
  letter-spacing: 3px;
  font-size: 12px;
}

.ft-heading-vintage {
  color: #3a2d1a !important;
  font-size: clamp(28px, 4vw, 42px) !important;
  position: relative;
  display: inline-block;
}

.ft-heading-vintage::after {
  content: '';
  display: block;
  width: 80px;
  height: 2px;
  background: linear-gradient(to right, transparent, #8c7850, transparent);
  margin: 10px auto 0;
}

/* --- Floating Botanical Decorations --- */
.ft-deco {
  position: absolute;
  pointer-events: none;
  z-index: 1;
  color: rgba(110, 140, 80, 0.12);
}

.ft-deco svg {
  width: 100%;
  height: 100%;
}

/* Leaf top-left */
.ft-deco-leaf1 {
  width: 70px;
  height: 105px;
  top: 30px;
  left: 40px;
  transform: rotate(-25deg);
  animation: ftFloatSway 8s ease-in-out infinite;
}

/* Leaf bottom-right */
.ft-deco-leaf2 {
  width: 55px;
  height: 82px;
  bottom: 40px;
  right: 60px;
  transform: rotate(15deg);
  color: rgba(140, 120, 80, 0.1);
  animation: ftFloatSway 10s ease-in-out infinite reverse;
}

/* Branch bottom-left */
.ft-deco-branch {
  width: 130px;
  height: 52px;
  bottom: 20px;
  left: 20px;
  color: rgba(110, 140, 80, 0.08);
  animation: ftDrift 12s ease-in-out infinite;
}

/* Seed top-right */
.ft-deco-seed1 {
  width: 32px;
  height: 40px;
  top: 60px;
  right: 120px;
  color: rgba(140, 120, 80, 0.12);
  animation: ftFall 9s ease-in-out infinite;
}

/* Seed mid-left */
.ft-deco-seed2 {
  width: 26px;
  height: 32px;
  top: 50%;
  left: 60px;
  color: rgba(110, 140, 80, 0.1);
  animation: ftFall 11s ease-in-out infinite 2s;
}

/* Flower top-center-right */
.ft-deco-flower {
  width: 50px;
  height: 50px;
  top: 25px;
  right: 30%;
  color: rgba(180, 140, 80, 0.08);
  animation: ftSpin 20s linear infinite;
}

/* Small leaf mid-right */
.ft-deco-leaf3 {
  width: 40px;
  height: 53px;
  top: 45%;
  right: 30px;
  transform: rotate(30deg);
  color: rgba(110, 140, 80, 0.1);
  animation: ftFloatSway 7s ease-in-out infinite 1s;
}

/* --- Keyframes --- */
@keyframes ftFloatSway {

  0%,
  100% {
    transform: translateY(0) rotate(-25deg);
  }

  50% {
    transform: translateY(-12px) rotate(-18deg);
  }
}

@keyframes ftDrift {

  0%,
  100% {
    transform: translateX(0);
    opacity: 0.8;
  }

  50% {
    transform: translateX(10px);
    opacity: 1;
  }
}

@keyframes ftFall {

  0%,
  100% {
    transform: translateY(0) rotate(0deg);
    opacity: 0.7;
  }

  50% {
    transform: translateY(8px) rotate(10deg);
    opacity: 1;
  }
}

@keyframes ftSpin {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

/* =========================================================
   Featured Topics Bento Grid (Explore & Discover)
   ========================================================= */
.featured-topics-grid {
  display: grid;
  grid-template-columns: 3fr 2fr;
  gap: 20px;
}

.ft-col-left {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.ft-col-right {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* --- Base Card --- */
.ft-card {
  display: block;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--white);
  box-shadow: 0 4px 15px rgba(0,0,0,0.04);
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  text-decoration: none;
  color: inherit;
  border: 1px solid rgba(0,0,0,0.04);
}

.ft-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(10, 62, 37, 0.1);
  border-color: rgba(23, 94, 60, 0.15);
}

/* --- Large Card (Left Column) — image background, text overlay --- */
.ft-card-lg {
  position: relative;
  min-height: 320px;
  display: flex;
  align-items: flex-end; /* Align content to bottom */
}

.ft-card-lg>img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}

.ft-card-lg:hover>img {
  transform: scale(1.06);
}

.ft-card-lg::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.3) 40%, transparent 100%);
  pointer-events: none;
  transition: opacity 0.4s ease;
}

.ft-card-lg:hover::before {
  opacity: 0.8;
}

.ft-card-lg .ft-card-content {
  position: relative;
  z-index: 2;
  padding: 30px;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: flex-start;
}

.ft-card-lg .ft-card-content h3 {
  font-family: var(--font-display);
  font-size: clamp(22px, 2.8vw, 28px);
  color: #fff;
  margin: 0;
  line-height: 1.2;
  font-weight: 700;
  text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

/* --- Small Card (Right Column) — side-by-side text + image --- */
.ft-card-sm {
  display: flex;
  align-items: stretch;
  gap: 0;
  flex: 1;
  background: #fdfdfc;
}

.ft-card-sm:hover {
  background: #fff;
}

.ft-card-sm .ft-card-content {
  flex: 1;
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 12px;
  align-items: flex-start;
}

.ft-card-sm .ft-card-content h3 {
  font-family: var(--font-display);
  font-size: clamp(16px, 2vw, 19px);
  color: var(--forest);
  margin: 0;
  line-height: 1.3;
  font-weight: 700;
  transition: color 0.3s ease;
}

.ft-card-sm:hover .ft-card-content h3 {
  color: var(--green-brand);
}

.ft-card-sm .ft-card-thumb {
  width: 160px;
  min-width: 160px;
  overflow: hidden;
  position: relative;
}

.ft-card-sm .ft-card-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.ft-card-sm:hover .ft-card-thumb img {
  transform: scale(1.08);
}

/* --- CTA Pill --- */
.ft-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 600;
  color: var(--green-brand);
  background: transparent;
  padding: 8px 0;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  width: fit-content;
  transition: all 0.3s ease;
}

.ft-card-lg .ft-cta {
  color: #fff;
}

.ft-card:hover .ft-cta {
  gap: 10px;
  color: var(--forest);
}

.ft-card-lg:hover .ft-cta {
  color: #a7d3a0;
}

/* =========================================================
   Comparison Table (Why Choose Us)
   ========================================================= */
.comparison-table-wrapper {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  border: 1px solid var(--line);
  margin-top: 24px;
}

.comparison-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
}

.comparison-table th,
.comparison-table td {
  padding: 16px 24px;
  border-bottom: 1px solid var(--line);
  font-size: 14.5px;
}

.comparison-table th {
  background: var(--forest);
  color: var(--white);
  font-weight: 700;
}

.comparison-table th.brand-col {
  background: var(--green-brand);
}

.comparison-table td strong {
  color: var(--forest);
}

.comparison-table td:nth-child(2) {
  background: #e7f5ee;
  text-align: center;
}

.comparison-table td:nth-child(3),
.comparison-table td:nth-child(4) {
  text-align: center;
}

.comparison-table td .check-icon {
  color: var(--green-brand);
  font-weight: 900;
  font-size: 18px;
}

.comparison-table td .cross-icon {
  color: #c0c0c0;
  font-size: 16px;
}

/* =========================================================
   Visit our Retail Stores
   ========================================================= */
.stores-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.store-card {
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  border: 1px solid var(--line);
  transition: transform 0.22s ease;
}

.store-card:hover {
  transform: translateY(-4px);
}

.store-img {
  aspect-ratio: 1.3/1;
  background: var(--paper-dim);
}

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

.store-info {
  padding: 14px 18px;
}

.store-info h4 {
  font-size: 15px;
  font-weight: 700;
  color: var(--forest);
}

.store-info span {
  font-size: 12.5px;
  color: #666;
  display: block;
  margin-top: 4px;
}

/* =========================================================
   Blog posts / learn about plants
   ========================================================= */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.blog-card {
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  border: 1px solid var(--line);
}

.blog-thumb {
  aspect-ratio: 1.5/1;
}

.blog-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.blog-info {
  padding: 16px;
}

.blog-info h4 {
  font-family: var(--font-body);
  font-size: 14.5px;
  font-weight: 700;
  line-height: 1.4;
  margin-bottom: 10px;
}

.blog-info .read-more {
  font-size: 12.5px;
  color: var(--green-brand);
  font-weight: 700;
  text-decoration: underline;
}

/* =========================================================
   FAQ Accordion Section
   ========================================================= */
.faq-accordion {
  max-width: 780px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid var(--line);
}

.faq-head {
  width: 100%;
  background: none;
  border: none;
  padding: 20px 4px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 15px;
  color: var(--forest);
  text-align: left;
}

.faq-head:hover {
  color: var(--green-brand);
}

.faq-head .plus {
  font-size: 20px;
  transition: transform 0.25s ease;
  color: var(--green-brand);
}

.faq-item.open .plus {
  transform: rotate(45deg);
}

.faq-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.faq-body-inner {
  padding: 0 4px 20px;
  font-size: 14px;
  line-height: 1.6;
  color: #444;
}

/* =========================================================
   Happy Farmers / Story Section
   ========================================================= */
.farmers-section {
  background: var(--paper-dim);
  border-radius: var(--radius-lg);
  padding: 40px;
  display: flex;
  align-items: center;
  gap: 40px;
  margin-top: 40px;
}

.farmers-content {
  flex: 1;
}

.farmers-content h2 {
  font-size: 28px;
  color: var(--forest);
  margin-bottom: 16px;
}

.farmers-content p {
  font-size: 14.5px;
  color: #444;
  line-height: 1.6;
}

.farmers-pics {
  flex: 1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.farmer-card {
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  aspect-ratio: 0.8/1;
}

.farmer-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* =========================================================
   Press media banner
   ========================================================= */
.press-banner {
  background: var(--white);
  padding: 30px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  text-align: center;
}

.press-title {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--moss);
  font-weight: 700;
  margin-bottom: 16px;
}

.press-logos {
  display: flex;
  justify-content: space-around;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
  opacity: 0.6;
}

.press-logos span {
  font-family: var(--font-display);
  font-size: clamp(16px, 3vw, 24px);
  color: var(--forest);
  font-weight: 800;
}

/* =========================================================
   Footer
   ========================================================= */
.site-footer {
  background: var(--forest);
  color: #cfe0d2;
  padding: 64px 0 24px;
  margin-top: 60px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
}

.footer-grid h5 {
  color: var(--paper);
  font-size: 13px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 18px;
}

.footer-grid li {
  margin-bottom: 10px;
  font-size: 14px;
}

.footer-contact-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13.5px;
  line-height: 1.5;
  color: #cfe0d2;
  margin-bottom: 0 !important;
}

.footer-contact-list li svg {
  flex-shrink: 0;
  margin-top: 3px;
  color: var(--yellow-brand);
}

.footer-contact-list a {
  color: #cfe0d2;
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-contact-list a:hover {
  color: var(--yellow-brand);
}

.footer-grid a:hover {
  color: var(--yellow-brand);
}

.footer-brand .logo {
  color: var(--paper);
}

.footer-brand p {
  margin-top: 14px;
  font-size: 14px;
  color: #b7cabb;
  max-width: 280px;
  line-height: 1.6;
}

.footer-social {
  display: flex;
  gap: 10px;
  margin-top: 18px;
}

.footer-social a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer-social svg {
  width: 16px;
  height: 16px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  margin-top: 48px;
  padding-top: 22px;
  display: flex;
  justify-content: space-between;
  font-size: 12.5px;
  color: #9db69f;
  flex-wrap: wrap;
  gap: 10px;
}

/* =========================================================
   Breadcrumb
   ========================================================= */
.breadcrumb {
  font-size: 13px;
  color: #6a776c;
  padding: 22px 0;
  display: flex;
  gap: 8px;
  align-items: center;
}

.breadcrumb a:hover {
  color: var(--clay);
}

.breadcrumb .sep {
  opacity: .5;
}

/* =========================================================
   Product Detail Page
   ========================================================= */
.pdp {
  display: grid;
  grid-template-columns: 0.95fr 1fr;
  gap: 56px;
  align-items: flex-start;
}

.pdp-gallery {
  position: sticky;
  top: 110px;
}

.pdp-main-image {
  aspect-ratio: 1/1;
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--paper-dim);
  box-shadow: var(--shadow-card);
  margin-bottom: 14px;
}

.pdp-main-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pdp-thumbs {
  display: flex;
  gap: 12px;
}

.pdp-thumbs button {
  width: 76px;
  height: 76px;
  border-radius: var(--radius-sm);
  overflow: hidden;
  border: 2px solid transparent;
  padding: 0;
  background: var(--paper-dim);
}

.pdp-thumbs button.active {
  border-color: var(--clay);
}

.pdp-thumbs img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pdp-info .p-cat {
  color: var(--moss);
  font-weight: 700;
  font-size: 12.5px;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.pdp-info h1 {
  font-size: clamp(28px, 3.4vw, 40px);
  color: var(--forest);
  margin-top: 8px;
}

.pdp-rating {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 10px;
  font-size: 13.5px;
  color: #5a6a5d;
}

.pdp-rating .stars {
  color: var(--gold);
}

.pdp-price {
  display: flex;
  align-items: baseline;
  gap: 12px;
  margin-top: 20px;
}

.pdp-price .price {
  font-size: 28px;
}

.pdp-price .save {
  background: var(--gold);
  color: var(--ink);
  font-size: 12px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 999px;
}

.pdp-desc {
  margin-top: 18px;
  color: #43503f;
  line-height: 1.7;
  font-size: 15px;
  max-width: 520px;
}

.variant-block {
  margin-top: 28px;
}

.variant-block h4 {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .4px;
  margin-bottom: 12px;
}

.variant-options {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.variant-options button {
  border: 1.5px solid var(--line);
  background: var(--white);
  padding: 11px 18px;
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-weight: 600;
  transition: all .18s ease;
}

.variant-options button.active {
  border-color: var(--forest);
  background: var(--forest);
  color: var(--paper);
}

.variant-options button:disabled {
  opacity: .4;
  text-decoration: line-through;
  cursor: not-allowed;
}

.qty-row {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-top: 26px;
}

.qty-stepper {
  display: flex;
  align-items: center;
  border: 1.5px solid var(--line);
  border-radius: 999px;
  overflow: hidden;
}

.qty-stepper button {
  width: 40px;
  height: 44px;
  background: var(--paper-dim);
  border: none;
  font-size: 18px;
  font-weight: 700;
}

.qty-stepper input {
  width: 46px;
  text-align: center;
  border: none;
  font-size: 15px;
  font-weight: 700;
  background: none;
}

.stock-note {
  font-size: 13px;
  color: var(--forest-light);
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 6px;
}

.stock-note::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--forest-light);
}

.pdp-cta {
  display: flex;
  gap: 14px;
  margin-top: 28px;
  flex-wrap: wrap;
}

.pdp-cta .btn {
  flex: 1;
  min-width: 200px;
}

.trust-row {
  display: flex;
  gap: 20px;
  margin-top: 32px;
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 12.5px;
  color: #5a6a5d;
  max-width: 150px;
}

.trust-item .icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--paper-dim);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.accordion {
  margin-top: 36px;
  border-top: 1px solid var(--line);
}

.accordion-item {
  border-bottom: 1px solid var(--line);
}

.accordion-head {
  width: 100%;
  background: none;
  border: none;
  padding: 18px 4px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 15px;
  text-align: left;
}

.accordion-head .plus {
  font-size: 20px;
  transition: transform .25s ease;
  color: var(--clay);
}

.accordion-item.open .plus {
  transform: rotate(45deg);
}

.accordion-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height .3s ease;
}

.accordion-body-inner {
  padding: 0 4px 20px;
  font-size: 14.5px;
  line-height: 1.7;
  color: #43503f;
}

.accordion-body-inner ul {
  margin-top: 8px;
  padding-left: 18px;
  list-style: disc;
}

/* =========================================================
   Page hero (inner pages)
   ========================================================= */
.page-hero {
  background: var(--paper-dim);
  padding: 64px 0 44px;
  text-align: center;
}

.page-hero h1 {
  font-size: clamp(32px, 4.4vw, 52px);
  color: var(--forest);
}

.page-hero p {
  margin-top: 12px;
  color: #5a6a5d;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}

/* =========================================================
   About page extras
   ========================================================= */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}

.split img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
}

.values {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.value-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 28px;
  box-shadow: var(--shadow-card);
}

.value-card .icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--paper-dim);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.value-card h3 {
  font-family: var(--font-body);
  font-size: 17px;
  margin-bottom: 8px;
}

.value-card p {
  font-size: 14px;
  color: #5a6a5d;
  line-height: 1.6;
}

/* =========================================================
   Contact page
   ========================================================= */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
}

.contact-form {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-card);
}

.form-row {
  margin-bottom: 20px;
}

.form-row label {
  display: block;
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 8px;
}

.form-row input,
.form-row textarea,
.form-row select {
  width: 100%;
  padding: 13px 16px;
  border-radius: var(--radius-sm);
  border: 1.5px solid var(--line);
  font-size: 14.5px;
  font-family: inherit;
}

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

.contact-info {
  padding: 10px 20px;
}

.contact-card {
  display: flex;
  gap: 16px;
  margin-bottom: 28px;
}

.contact-card .icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--paper-dim);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-card h4 {
  font-family: var(--font-body);
  font-size: 15.5px;
  margin-bottom: 4px;
}

.contact-card p {
  font-size: 14px;
  color: #5a6a5d;
}

.map-embed {
  border-radius: var(--radius-md);
  overflow: hidden;
  margin-top: 8px;
  height: 220px;
  background: var(--paper-dim);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #8a978c;
  font-size: 13px;
}

/* =========================================================
   WhatsApp floating button
   ========================================================= */
.wa-float {
  position: fixed;
  bottom: 26px;
  right: 26px;
  z-index: 200;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #25D366;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.22);
  animation: pulse 2.4s ease-in-out infinite;
}

.wa-float svg {
  width: 30px;
  height: 30px;
}

@keyframes pulse {

  0%,
  100% {
    box-shadow: 0 10px 24px rgba(37, 211, 102, 0.35);
  }

  50% {
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.6);
  }
}

/* =========================================================
   Toast (add to enquiry confirmation)
   ========================================================= */
.toast {
  position: fixed;
  bottom: 100px;
  right: 26px;
  background: var(--forest);
  color: var(--paper);
  padding: 14px 20px;
  border-radius: var(--radius-sm);
  font-size: 14px;
  box-shadow: var(--shadow-soft);
  transform: translateY(20px);
  opacity: 0;
  pointer-events: none;
  transition: all .3s ease;
  z-index: 300;
}

.toast.show {
  transform: translateY(0);
  opacity: 1;
}

/* =========================================================
   Shop Page Category Circle Filters & Layout
   ========================================================= */
.shop-layout {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.shop-categories-filter {
  margin-bottom: 36px;
  text-align: center;
}

.filter-title {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--moss);
  margin-bottom: 24px;
  font-weight: 700;
}

.category-filter-row {
  display: flex;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
}

.cat-filter-btn {
  background: none;
  border: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  cursor: pointer;
  padding: 0;
  outline: none;
  transition: transform 0.22s ease;
  font-family: inherit;
}

.cat-filter-btn:hover {
  transform: translateY(-4px);
}

.cat-filter-img {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  overflow: hidden;
  box-shadow: var(--shadow-card);
  border: 3px solid var(--white);
  margin-bottom: 10px;
  transition: all 0.22s ease;
}

.cat-filter-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cat-filter-btn span {
  font-size: 13px;
  font-weight: 600;
  color: var(--forest);
  transition: color 0.22s ease;
}

/* Active State & Hover Interaction */
.cat-filter-btn.active .cat-filter-img {
  border-color: var(--green-brand);
  box-shadow: 0 8px 20px rgba(2, 138, 80, 0.18);
  transform: scale(1.05);
}

.cat-filter-btn.active span {
  color: var(--green-brand);
  font-weight: 700;
}

.cat-filter-btn:hover .cat-filter-img {
  border-color: var(--green-brand);
}

.cat-filter-btn:hover span {
  color: var(--green-brand);
}

.shop-results {
  width: 100%;
}

/* =========================================================
   Responsive
   ========================================================= */
@media (max-width: 1080px) {
  .category-circles-grid {
    gap: 12px;
  }

  .product-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 900px) {
  .nav-toggle {
    display: flex;
  }

  .nav-desktop-link {
    display: none !important;
  }

  .main-nav {
    position: fixed;
    top: 0;
    right: -100%;
    height: 100vh;
    width: 82%;
    max-width: 340px;
    background: linear-gradient(165deg, #1a3a2a 0%, #0d1f15 60%, #0a1910 100%);
    flex-direction: column;
    padding: 0;
    gap: 0;
    transition: right .35s cubic-bezier(.4, 0, .2, 1);
    box-shadow: -16px 0 48px rgba(0, 0, 0, 0.35);
    z-index: 999;
    overflow-y: auto;
  }

  .main-nav.open {
    right: 0;
  }

  /* Drawer header — logo + close */
  .nav-drawer-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 22px 24px 18px;
    margin-bottom: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.03);
  }

  .nav-overlay {
    display: block;
  }

  .nav-drawer-links {
    display: flex;
  }

  .nav-drawer-footer {
    display: block;
  }

  .nav-drawer-logo img {
    height: 38px;
    width: auto;
    filter: brightness(10);
  }

  .nav-close-btn {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    cursor: pointer;
    transition: all .25s ease;
    position: relative;
    z-index: 10;
    color: rgba(255, 255, 255, 0.7);
  }

  .nav-close-btn:hover,
  .nav-close-btn:active {
    background: rgba(255, 255, 255, 0.15);
    transform: rotate(90deg);
    color: #fff;
  }

  .nav-close-btn svg {
    width: 18px;
    height: 18px;
    pointer-events: none;
  }

  /* Nav links container */
  .nav-drawer-links {
    display: flex;
    flex-direction: column;
    padding: 16px 12px;
    gap: 2px;
  }

  .nav-drawer-link {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 16px;
    border-radius: 12px;
    color: rgba(255, 255, 255, 0.8) !important;
    font-size: 15.5px;
    font-weight: 500;
    letter-spacing: 0.2px;
    text-decoration: none;
    transition: all .2s ease;
    position: relative;
  }

  .nav-drawer-link::after {
    display: none !important;
  }

  .nav-drawer-link:hover,
  .nav-drawer-link:active {
    background: rgba(255, 255, 255, 0.07);
    color: #fff !important;
    transform: translateX(4px);
  }

  .nav-link-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.06);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: background .2s ease;
  }

  .nav-drawer-link:hover .nav-link-icon {
    background: rgba(74, 164, 96, 0.25);
  }

  .nav-link-icon svg {
    width: 20px;
    height: 20px;
    color: rgba(255, 255, 255, 0.6);
    transition: color .2s ease;
  }

  .nav-drawer-link:hover .nav-link-icon svg {
    color: #5dbe78;
  }

  /* Drawer footer */
  .nav-drawer-footer {
    margin-top: auto;
    padding: 20px 24px 28px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    text-align: center;
  }

  .nav-drawer-social {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-bottom: 16px;
  }

  .nav-drawer-social a {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.55);
    transition: all .2s ease;
    text-decoration: none;
  }

  .nav-drawer-social a::after {
    display: none !important;
  }

  .nav-drawer-social a:hover {
    background: rgba(74, 164, 96, 0.2);
    color: #5dbe78;
    border-color: rgba(74, 164, 96, 0.3);
    transform: translateY(-2px);
  }

  .nav-drawer-social a svg {
    width: 20px;
    height: 20px;
  }

  .nav-drawer-tagline {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.3);
    font-weight: 400;
    letter-spacing: 0.5px;
    margin: 0;
  }

  /* Dark overlay */
  .nav-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(3px);
    -webkit-backdrop-filter: blur(3px);
    z-index: 998;
    opacity: 0;
    visibility: hidden;
    transition: opacity .3s ease, visibility .3s ease;
  }

  .nav-overlay.active {
    opacity: 1;
    visibility: visible;
  }

  .hero .wrap {
    grid-template-columns: 1fr;
  }

  .hero-art {
    height: 340px;
    order: -1;
  }

  .quiz-inner {
    grid-template-columns: 1fr;
  }

  .shop-layout {
    grid-template-columns: 1fr;
  }

  .filters {
    position: static;
  }

  .pdp {
    grid-template-columns: 1fr;
  }

  .pdp-gallery {
    position: static;
  }

  .split {
    grid-template-columns: 1fr;
  }

  .contact-layout {
    grid-template-columns: 1fr;
  }

  .stores-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .blog-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  /* Featured Topics Grid — single column on tablet */
  .featured-topics-grid {
    grid-template-columns: 1fr;
  }

  .ft-card-lg {
    min-height: 260px;
  }

  .ft-card-sm .ft-card-thumb {
    width: 120px;
    min-width: 120px;
  }
}

@media (max-width: 640px) {

  /* Hide botanical decorations on mobile */
  .ft-deco {
    display: none;
  }

  .ft-nursery-section::before {
    inset: 6px;
  }

  /* Sub Nav scrollable bar */
  .sub-nav-bar .wrap {
    justify-content: flex-start;
    gap: 20px;
    padding: 12px 20px;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }

  .sub-nav-bar .wrap::-webkit-scrollbar {
    display: none;
  }

  /* Category Circles Carousel */
  .category-circles-grid {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    gap: 16px;
    padding: 20px 0;
    justify-content: flex-start;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }

  .category-circles-grid::-webkit-scrollbar {
    display: none;
  }

  .category-circle-card {
    flex: 0 0 110px;
    min-width: 110px;
  }

  .category-circle-img {
    width: 90px;
    height: 90px;
  }

  /* Product grid 2 columns */
  .product-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
  }

  /* Testimonials Carousel */
  .testimonials-row {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    gap: 16px;
    padding: 10px 0;
    justify-content: flex-start;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }

  .testimonials-row::-webkit-scrollbar {
    display: none;
  }

  .testimonial-video-card {
    flex: 0 0 200px;
    min-width: 200px;
  }

  /* Habitat Promo Grid (2 Columns) */
  .promo-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 12px;
  }

  .promo-card {
    aspect-ratio: 1/1;
  }

  /* Comparison Table responsive scrolling wrapper */
  .comparison-table-wrapper {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }

  .comparison-table-wrapper::-webkit-scrollbar {
    display: none;
  }

  .comparison-table {
    min-width: 600px;
  }

  /* Retail Stores Carousel */
  .stores-grid {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    gap: 16px;
    padding: 10px 0;
    justify-content: flex-start;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }

  .stores-grid::-webkit-scrollbar {
    display: none;
  }

  .store-card {
    flex: 0 0 220px;
    min-width: 220px;
  }

  /* Blog Carousel */
  .blog-grid {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    gap: 16px;
    padding: 10px 0;
    justify-content: flex-start;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }

  .blog-grid::-webkit-scrollbar {
    display: none;
  }

  .blog-card {
    flex: 0 0 240px;
    min-width: 240px;
  }

  /* Shop Page Circular Category Filters Carousel */
  .category-filter-row {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    gap: 16px;
    padding: 10px 0;
    justify-content: flex-start;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }

  .category-filter-row::-webkit-scrollbar {
    display: none;
  }

  .cat-filter-btn {
    flex: 0 0 84px;
    min-width: 84px;
  }

  .cat-filter-img {
    width: 72px;
    height: 72px;
  }

  /* Happy Farmers Section stacking */
  .farmers-section {
    flex-direction: column;
    padding: 24px;
    gap: 24px;
  }

  .farmers-pics {
    grid-template-columns: repeat(3, 1fr);
    width: 100%;
  }

  .values {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 52px 0;
  }

  .quiz {
    padding: 30px;
  }

  .quiz-options {
    grid-template-columns: 1fr;
  }

  .newsletter {
    padding: 34px 22px;
  }

  .newsletter form {
    flex-direction: column;
  }

  .pdp-cta {
    flex-direction: column;
  }

  .pdp-cta .btn {
    width: 100%;
  }

  /* Featured Topics Grid — fully stacked on mobile */
  .featured-topics-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .ft-col-left,
  .ft-col-right {
    gap: 14px;
  }

  .ft-card-lg {
    min-height: 240px;
  }

  .ft-card-lg .ft-card-content {
    max-width: 70%;
  }

  .ft-card-lg .ft-card-content {
    padding: 16px 18px;
  }

  .ft-card-lg .ft-card-content h3 {
    font-size: 17px;
  }

  .ft-card-sm {
    flex-direction: row;
  }

  .ft-card-sm .ft-card-content {
    padding: 14px 16px;
  }

  .ft-card-sm .ft-card-content h3 {
    font-size: 14px;
  }

  .ft-card-sm .ft-card-content p {
    font-size: 12px;
  }

  .ft-card-sm .ft-card-thumb {
    width: 110px;
    min-width: 110px;
  }

  .ft-cta {
    font-size: 12px;
    padding: 6px 14px;
  }
}

.product-carousel {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding-bottom: 20px;
  scrollbar-width: thin;
  scrollbar-color: var(--green-brand) var(--paper-dim);
}

.product-carousel::-webkit-scrollbar {
  height: 8px;
}

.product-carousel::-webkit-scrollbar-track {
  background: var(--paper-dim);
  border-radius: 10px;
}

.product-carousel::-webkit-scrollbar-thumb {
  background-color: var(--green-brand);
  border-radius: 10px;
}

.product-carousel .product-card {
  flex: 0 0 310px;
  scroll-snap-align: start;
}

/* Floating Logo Animation */
.floating-logo-bg {
  position: absolute;
  top: 50%;
  width: clamp(400px, 50vw, 900px);
  height: auto;
  opacity: 0.06;
  z-index: 0;
  pointer-events: none;
  animation: moveCurve 25s linear infinite;
}

@keyframes moveCurve {
  0% {
    left: -50%;
    transform: translateY(-50%) translateY(0px) rotate(-10deg);
  }

  25% {
    left: -12.5%;
    transform: translateY(-50%) translateY(-100px) rotate(0deg);
  }

  50% {
    left: 25%;
    transform: translateY(-50%) translateY(0px) rotate(10deg);
  }

  75% {
    left: 62.5%;
    transform: translateY(-50%) translateY(100px) rotate(0deg);
  }

  100% {
    left: 100%;
    transform: translateY(-50%) translateY(0px) rotate(-10deg);
  }
}

/* Wind Leaf Animation */
.wind-leaf {
  position: absolute;
  bottom: -20px;
  left: -20px;
  width: 250px;
  height: auto;
  opacity: 0.15;
  z-index: 0;
  pointer-events: none;
  transform-origin: bottom left;
  animation: windSway 4s ease-in-out infinite alternate;
}

@keyframes windSway {
  0% {
    transform: rotate(-5deg);
  }

  100% {
    transform: rotate(15deg);
  }
}

/* Top Right Wind Leaf Animation */
.wind-leaf-top {
  position: absolute;
  top: -30px;
  right: -30px;
  width: 220px;
  height: auto;
  opacity: 0.15;
  z-index: 0;
  pointer-events: none;
  transform-origin: top right;
  animation: windSwayTop 5s ease-in-out infinite alternate;
}

@keyframes windSwayTop {
  0% {
    transform: rotate(-5deg);
  }

}

/* =========================================================
   Sale Hero Banner
   ========================================================= */
.sale-hero-banner {
  display: flex;
  width: 100%;
  height: 700px;
  background: #fdfaf6; /* Warmer organic background */
  position: relative;
  overflow: hidden;
}

.shb-left {
  width: 55%;
  position: relative;
  overflow: hidden;
  clip-path: polygon(0 0, 100% 0, 85% 100%, 0% 100%); /* Slanted edge */
  z-index: 2;
}

.shb-bg-image {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  animation: kenBurns 20s infinite alternate; /* Smooth zoom animation */
}

@keyframes kenBurns {
  0% { transform: scale(1); }
  100% { transform: scale(1.1); }
}

.shb-right {
  width: 50%;
  position: absolute;
  right: 0;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: transparent;
  z-index: 1;
}

.shb-wavy-pattern {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: radial-gradient(circle at 100% 50%, rgba(23, 94, 60, 0.03) 0%, transparent 50%),
              repeating-radial-gradient(circle at 100% 50%, transparent 0, transparent 15px, rgba(0,0,0,0.02) 16px, transparent 17px);
  z-index: 1;
}

.shb-content {
  position: relative;
  z-index: 2;
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 15px;
  padding: 0 80px 0 120px; /* Offset for the slanted image */
  opacity: 0;
  animation: fadeInUp 1s ease-out forwards;
  animation-delay: 0.3s;
}

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

.shb-t3 {
  font-family: "Montserrat", sans-serif;
  font-size: 20px;
  color: #c98a3e; /* Accent color */
  margin: 0;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 3px;
  margin-bottom: -10px;
}

.shb-t1 {
  font-family: "Montserrat", sans-serif;
  font-size: 56px;
  color: #2c3e2e;
  margin: 0;
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -1px;
}

.shb-t2 {
  font-family: "Montserrat", sans-serif;
  font-size: 56px;
  color: #175e3c; /* Brand Green */
  margin: 0;
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -1px;
}

.shb-sub {
  font-family: "Inter", sans-serif;
  font-size: 18px;
  color: #555;
  margin: 20px 0 40px 0;
  font-weight: 400;
  line-height: 1.6;
  max-width: 90%;
}

.shb-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #175e3c;
  color: #fff;
  padding: 16px 40px;
  font-family: "Inter", sans-serif;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  letter-spacing: 0.5px;
  border-radius: 50px; /* Pill shape */
  transition: all 0.3s ease;
  width: fit-content;
  box-shadow: 0 10px 20px rgba(23, 94, 60, 0.2);
}

.shb-btn:hover {
  background: #0f4c3a;
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 15px 25px rgba(23, 94, 60, 0.3);
}

@media (max-width: 900px) {
  .sale-hero-banner {
    flex-direction: column;
    height: auto;
  }
  .shb-left {
    width: 100%;
    height: 350px;
    clip-path: polygon(0 0, 100% 0, 100% 90%, 0% 100%); /* Less aggressive slant for mobile */
  }
  .shb-right {
    width: 100%;
    position: relative;
    height: auto;
    padding: 30px 20px 50px 20px;
  }
  .shb-content {
    padding: 0 15px;
    text-align: center;
    align-items: center;
  }
  .shb-t1, .shb-t2 {
    font-size: 36px;
  }
  .shb-t3 {
    font-size: 16px;
  }
  .shb-sub {
    font-size: 16px;
    max-width: 100%;
    margin: 15px 0 25px 0;
  }
}

.secondary-banner {
  height: 550px;
  flex-direction: row-reverse;
}

.secondary-banner .shb-left {
  width: 50%;
  clip-path: polygon(15% 0, 100% 0, 100% 100%, 0% 100%); /* Reverse slant */
}

.secondary-banner .shb-right {
  width: 55%;
  position: relative;
  right: auto;
}

.secondary-banner .shb-content {
  padding: 0 120px 0 80px;
}

@media (max-width: 900px) {
  .secondary-banner {
    flex-direction: column-reverse;
  }
  .secondary-banner .shb-left {
    width: 100%;
    clip-path: polygon(0 10%, 100% 0, 100% 100%, 0% 100%);
  }
  .secondary-banner .shb-right {
    width: 100%;
    padding: 30px 20px;
  }
  .secondary-banner .shb-content {
    padding: 0 15px;
  }
}

@media (max-width: 640px) {
  .contact-layout {
    gap: 24px;
  }
  .contact-form {
    padding: 24px 20px;
  }
}

/* =========================================================
   Blog Section Styles
   ========================================================= */
.blogs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 20px;
}
.blog-card {
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  display: flex;
  flex-direction: column;
}
.blog-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-soft);
}
.blog-card-img {
  width: 100%;
  height: 300px;
  object-fit: cover;
}
.blog-card-content {
  padding: 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.blog-card-content h3 {
  font-size: 18px;
  color: var(--forest);
  margin-bottom: 8px;
  line-height: 1.3;
}
.blog-card-content p {
  font-size: 14px;
  color: var(--clay);
  margin-bottom: 16px;
  line-height: 1.5;
  flex: 1;
}
.blog-card-meta {
  font-size: 12px;
  color: var(--moss);
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid var(--line);
  padding-top: 12px;
}

@media (max-width: 900px) {
  .blogs-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 640px) {
  .blogs-grid {
    grid-template-columns: 1fr;
  }
}

/* =========================================================
   Text Testimonial Styles
   ========================================================= */
.text-testimonials-carousel {
  margin-top: 30px;
}
.text-testimonials-carousel .text-testimonial-card {
  flex: 0 0 320px;
  scroll-snap-align: start;
}
.text-testimonial-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 32px 24px;
  box-shadow: 0 4px 20px rgba(10, 62, 37, 0.08);
  display: flex;
  flex-direction: column;
  position: relative;
  border-top: 4px solid var(--green-brand);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.text-testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 30px rgba(10, 62, 37, 0.12);
}
.text-testimonial-card::before {
  content: '"';
  position: absolute;
  top: 10px;
  left: 20px;
  font-size: 60px;
  color: var(--green-brand);
  opacity: 0.15;
  font-family: 'Times New Roman', serif;
  line-height: 1;
}
.text-testimonial-card p {
  font-size: 15px;
  line-height: 1.7;
  color: var(--ink);
  margin-bottom: 24px;
  position: relative;
  z-index: 2;
  flex: 1;
  font-style: italic;
}
.text-testimonial-meta {
  display: flex;
  flex-direction: column;
  border-top: 1px solid var(--line);
  padding-top: 16px;
}
.text-testimonial-meta strong {
  font-size: 15px;
  color: var(--forest);
  font-weight: 700;
}
.text-testimonial-meta span {
  font-size: 13px;
  color: var(--moss);
  margin-top: 4px;
}

@media (max-width: 640px) {
  .text-testimonials-carousel .text-testimonial-card {
    flex: 0 0 280px;
  }
}

/* =========================================================
   Explore & Discover (About Page)
   ========================================================= */
.explore-grid {
  display: flex;
  flex-direction: column;
  gap: 60px;
  max-width: 1100px;
  margin: 0 auto;
}

.explore-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.03);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  border: 1px solid rgba(0,0,0,0.04);
}

.explore-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(10, 62, 37, 0.08);
}

.explore-card.reverse {
  grid-template-columns: 1fr 1fr;
  direction: rtl;
}

.explore-card.reverse > * {
  direction: ltr;
}

.explore-img {
  width: 100%;
  height: 100%;
  min-height: 400px;
  object-fit: cover;
}

.explore-content {
  padding: 40px 50px;
}

.explore-content h3 {
  color: var(--forest);
  font-size: 32px;
  font-family: var(--font-display);
  margin-bottom: 20px;
  line-height: 1.2;
}

.explore-content p {
  color: #555;
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 25px;
}

.explore-features {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.explore-features li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 15px;
  color: #333;
  font-weight: 500;
}

.explore-features li svg {
  width: 20px;
  height: 20px;
  color: var(--green-brand);
  flex-shrink: 0;
  margin-top: 2px;
}

@media (max-width: 900px) {
  .explore-card, .explore-card.reverse {
    grid-template-columns: 1fr;
    direction: ltr;
  }
  .explore-img {
    min-height: 250px;
  }
  .explore-content {
    padding: 30px 20px;
  }
  .explore-content h3 {
    font-size: 26px;
  }
}

/* =========================================================
   Hero Slider
   ========================================================= */
.hero-slider-section {
  position: relative;
  width: 100%;
  overflow: hidden;
}
.hero-slides-container {
  display: flex;
  transition: transform 0.6s ease-in-out;
  width: 100%;
}
.hero-slide {
  flex: 0 0 100%; /* Force each slide to take 100% width and not shrink */
  min-width: 100%;
  box-sizing: border-box;
}

/* Arrows for Hero */
.hero-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid var(--paper-dim);
  border-radius: 50%;
  width: 50px;
  height: 50px;
  font-size: 24px;
  cursor: pointer;
  z-index: 10;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #175e3c;
  transition: all 0.2s ease;
}
.hero-arrow:hover {
  background: #175e3c;
  color: white;
}
.hero-prev {
  left: 20px;
}
.hero-next {
  right: 20px;
}
@media (max-width: 768px) {
  .hero-arrow { width: 40px; height: 40px; font-size: 20px; }
  .hero-prev { left: 10px; }
  .hero-next { right: 10px; }
}

/* =========================================================
   Botanical Line-Art Vector Accents (Monstera & Tropical)
   ========================================================= */
.leaf-decor {
  position: absolute;
  pointer-events: none;
  z-index: 0;
  color: rgba(2, 138, 80, 0.12);
}

.leaf-decor svg {
  width: 100%;
  height: 100%;
  display: block;
}

.leaf-decor-tr {
  top: -20px;
  right: -30px;
  width: 220px;
  height: 250px;
  transform: rotate(20deg);
  animation: leafFloat1 14s ease-in-out infinite alternate;
}

.leaf-decor-bl {
  bottom: -30px;
  left: -35px;
  width: 240px;
  height: 270px;
  transform: rotate(-30deg);
  animation: leafFloat2 16s ease-in-out infinite alternate;
}

.leaf-decor-mr {
  top: 35%;
  right: -45px;
  width: 260px;
  height: 290px;
  transform: rotate(15deg);
  animation: leafFloat1 18s ease-in-out infinite alternate;
}

.leaf-decor-ml {
  top: 30%;
  left: -45px;
  width: 250px;
  height: 280px;
  transform: rotate(-20deg);
  animation: leafFloat2 15s ease-in-out infinite alternate;
}

.leaf-decor-watermark {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 500px;
  height: 550px;
  color: rgba(2, 138, 80, 0.04);
  pointer-events: none;
  z-index: 0;
}

@keyframes leafFloat1 {
  0% { transform: translateY(0) rotate(20deg); }
  50% { transform: translateY(-12px) rotate(24deg) scale(1.03); }
  100% { transform: translateY(6px) rotate(18deg); }
}

@keyframes leafFloat2 {
  0% { transform: translateY(0) rotate(-30deg); }
  50% { transform: translateY(-10px) rotate(-26deg) scale(1.02); }
  100% { transform: translateY(8px) rotate(-34deg); }
}

@media (max-width: 768px) {
  .leaf-decor-tr { width: 140px; height: 160px; right: -20px; top: -10px; }
  .leaf-decor-bl { width: 150px; height: 170px; left: -20px; bottom: -15px; }
  .leaf-decor-mr, .leaf-decor-ml { display: none; }
}