@import url('https://fonts.googleapis.com/css2?family=Dancing+Script:wght@400..700&family=Outfit:wght@300..700&display=swap');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  /* Color Palette */
  --bg-color: #FAFAF7;
  /* Warm off-white */
  --primary-green: #90B494;
  /* Slightly more vibrant but still soft */
  --dark-green: #2D4A34;
  /* Deeper forest green */
  --primary-brown: #8B5E3C;
  /* Rich Earthy brown */
  --light-brown: #F1E9E0;
  /* Creamy tan */
  --accent-brown: #5C4033;
  --text-dark: #2C2C2C;
  --text-light: #5B5B5B;
  --white: #FFFFFF;

  --organic-pattern: url('eco_organic_pattern_1772178826270.png');

  --border-radius: 40px;
  /* More organic large curves */
  --card-radius: 20px;
  --transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
  --shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  --shadow-hover: 0 15px 40px rgba(45, 74, 52, 0.12);
  --mobile-header-clearance: 68px;
}

html,
body {
  font-family: 'Outfit', sans-serif;
  background-color: var(--bg-color);
  color: var(--text-dark);
  line-height: 1.6;
  overflow-x: clip;
  width: 100%;
  position: relative;
}

body {
  background-image: var(--organic-pattern);
  background-size: 800px;
  background-attachment: fixed;
  background-blend-mode: soft-light;
}

/* Lock page scroll while the mobile search sheet is open (mobile only) */
@media (max-width: 900px) {
  body.search-active {
    overflow: hidden !important;
    height: 100vh;
  }
}

h1 {
  font-family: 'Dancing Script', cursive;
  color: var(--dark-green);
  font-weight: 700;
  line-height: 1.1;
}

h2 {
  font-family: 'Dancing Script', cursive;
  color: var(--dark-green);
  font-size: 54px;
  font-weight: 700;
  line-height: 1.1;
}

h3,
h4 {
  font-family: 'Outfit', sans-serif;
  color: var(--dark-green);
  font-weight: 600;
  line-height: 1.15;
}

.text-center h2::before {
  display: block;
  margin-right: 0;
  margin-bottom: 5px;
}



a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

/* Layout */
.container {
  max-width: 1240px;
  /* Slightly wider for better breathing room */
  margin: 0 auto;
  padding: 0 40px;
  /* Reduced desktop padding as requested for a better fit */
}

@media (max-width: 900px) {
  .container {
    padding: 0 32px;
  }
}

section {
  padding: 10px 0;
}

.page-header {
  padding: 120px 0 40px;
}

.text-center {
  text-align: center;
}

/* Navigation */
header {
  position: fixed;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: fit-content;
  max-width: 95%;
  z-index: 1000;
  background-color: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-radius: 0 0 40px 40px;
  border: 1px solid rgba(163, 201, 168, 0.35);
  box-shadow: 0 8px 32px rgba(45, 74, 52, 0.1), 0 2px 8px rgba(0, 0, 0, 0.06);
  transition: top 0.4s cubic-bezier(0.23, 1, 0.32, 1), opacity 0.4s ease, transform 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}

header.nav-hidden {
  top: -100px;
  opacity: 0;
  pointer-events: none;
}

/* Search Overlay — blurs the page background behind the header search */
.search-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(45, 74, 52, 0.08);
  /* Very subtle green tint */
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  z-index: 999;
  /* Just below header */
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s ease, visibility 0.35s ease;
}

.search-overlay.active {
  opacity: 1;
  visibility: visible;
}

/* Slightly deeper blur on desktop for a focused search experience */
@media (min-width: 901px) {
  .search-overlay {
    backdrop-filter: blur(14px) saturate(1.05);
    -webkit-backdrop-filter: blur(14px) saturate(1.05);
    background: rgba(45, 74, 52, 0.10);
  }
}

/* Visibility Utilities */
.hide-on-desktop {
  display: none !important;
}

@media (max-width: 900px) {
  .desktop-only {
    display: none !important;
  }

  .hide-on-desktop {
    display: flex !important;
  }
}

/* Push page content down so it doesn't sit behind the floating nav */
body {
  padding-top: 0;
}

.nav-container {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
  padding: 0 45px;
  height: 80px;
}

.logo {
  height: 52px;
  /* Increased logo size for desktop */
  display: flex;
  align-items: center;
}

.logo img {
  height: 100%;
  width: auto;
  display: block;
  transition: var(--transition);
}

.logo:hover img {
  transform: scale(1.05);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 20px;
  /* Slightly more space */
}

.nav-links a {
  font-weight: 500;
  color: var(--text-dark);
  transition: var(--transition);
  padding: 8px 12px;
  border-radius: 12px;
}

.nav-links a:hover {
  background-color: var(--light-brown);
  color: var(--dark-green);
}

.nav-links .btn-primary {
  padding: 10px 24px;
  color: var(--white);
  white-space: nowrap;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 12px 28px;
  border-radius: 30px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
  border: none;
  position: relative;
  text-decoration: none;
}

.btn-primary {
  background-color: var(--dark-green);
  color: var(--white);
  box-shadow: 0 5px 0 #1a2d20;
}

.btn-primary:hover {
  background-color: var(--primary-green);
  color: var(--dark-green);
  transform: translateY(-2px);
  box-shadow: 0 7px 0 #1a2d20;
}

.btn-primary:active {
  transform: translateY(3px);
  box-shadow: 0 2px 0 #1a2d20;
}

.btn-whatsapp {
  background-color: #5CAA28;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 18px;
  padding: 16px 32px;
  width: 100%;
  box-shadow: 0 6px 0 #4a8924;
  border-radius: 12px;
}

.btn-whatsapp:hover {
  background-color: #5CAA28;
  transform: translateY(-2px);
  box-shadow: 0 8px 0 #4a8924;
}

.btn-whatsapp:active {
  transform: translateY(4px);
  box-shadow: 0 2px 0 #4a8924;
}

.related-products-title {
  font-size: 32px !important;
  margin-bottom: 25px;
}


/* Hero Section (gradient-circular used by tabbed-hero background animation) */
@keyframes gradient-circular {
  0% {
    background-position: 0% 0%;
  }

  25% {
    background-position: 100% 0%;
  }

  50% {
    background-position: 100% 100%;
  }

  75% {
    background-position: 0% 100%;
  }

  100% {
    background-position: 0% 0%;
  }
}



/* Mobile Menu Overlay */
.mobile-menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: white;
  z-index: 3000;
  display: flex;
  flex-direction: column;
  padding: 80px 40px;
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.mobile-menu-overlay.active {
  transform: translateX(0);
}

.mobile-menu-links {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.mobile-menu-links a {
  font-size: 24px;
  font-weight: 600;
  color: var(--dark-green);
  font-family: 'Outfit', sans-serif;
}

.close-menu {
  position: absolute;
  top: 20px;
  right: 20px;
  background: none;
  border: none;
  font-size: 32px;
  color: var(--dark-green);
  cursor: pointer;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: transparent;
  border: 2px solid var(--dark-green);
  cursor: pointer;
  padding: 8px;
  border-radius: 8px;
  z-index: 2001;
  /* Ensure it stays above content */
  transition: all 0.3s ease;
  box-shadow: none;
  /* Removed 3D effect */
}

.hamburger:hover {
  background: rgba(45, 74, 52, 0.05);
  /* Very subtle green tint on hover */
  transform: none;
  box-shadow: none;
}

.hamburger:active {
  background: rgba(45, 74, 52, 0.1);
  transform: scale(0.95);
  /* Slight feedback without being 3D */
}

.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--dark-green);
  transition: 0.3s;
}






@media (max-width: 600px) {
  h2 {
    font-size: 28px;
  }

  .category-header {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
  }

  .category-header h2 {
    font-size: 28px;
  }
}

/* Categories Section */
.category-section {
  padding: 60px 40px;
  /* Refined side padding */
}

.category-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 30px;
}

.category-header h2 {
  font-size: 32px;
}

.view-all {
  color: var(--primary-brown);
  font-weight: 600;
  border-bottom: 2px solid transparent;
  transition: var(--transition);
}

.view-all:hover {
  border-color: var(--primary-brown);
}

.carousel-container {
  position: relative;
  display: flex;
  align-items: center;
  overflow: visible;
}

.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
  transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
  opacity: 0;
  visibility: hidden;
  font-size: 26px;
  font-weight: 900;
  border: 1px solid rgba(255, 255, 255, 0.6);
  color: var(--dark-green);
  -webkit-text-stroke: 2px var(--dark-green);
}

.carousel-btn:hover {
  background: rgba(255, 255, 255, 0.9);
  color: var(--primary-green);
  transform: translateY(-50%) scale(1.15);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
  -webkit-text-stroke: 2px var(--primary-green);
  border-color: rgba(255, 255, 255, 1);
}

.carousel-btn:active {
  transform: translateY(-50%) scale(0.95);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.carousel-btn.prev {
  left: -45px;
}

.carousel-btn.next {
  right: -45px;
}

.carousel-container:hover .carousel-btn {
  opacity: 1;
  visibility: visible;
}

.carousel {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  overflow-y: visible;
  /* Allow card hover to lift above the row */
  padding-top: 12px;
  /* Room for translateY(-8px) + scale on hover */
  padding-bottom: 40px;
  scroll-snap-type: x mandatory;
  scrollbar-width: thin;
  scrollbar-color: var(--primary-green) transparent;
  scroll-behavior: smooth;
  width: 100%;
}

.carousel::-webkit-scrollbar {
  height: 8px;
}

.carousel::-webkit-scrollbar-track {
  background: rgba(0, 0, 0, 0.05);
  border-radius: 10px;
}

.carousel::-webkit-scrollbar-thumb {
  background: var(--primary-green);
  border-radius: 10px;
}

/* Product Card */
.product-card {
  flex: 0 0 calc((100% - (24px * 4.2)) / 5.2);
  /* 5.2 items desktop for tight look */
  scroll-snap-align: start;
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: var(--card-radius);
  padding: 12px;
  box-shadow: var(--shadow);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  color: inherit;
  border: 1px solid rgba(255, 255, 255, 0.6);
}

@media (max-width: 900px) {
  .product-card {
    flex: 0 0 280px;
    /* Tablet width */
  }

  @media (max-width: 600px) {
    .product-card {
      flex: 0 0 calc((100% - 16px) / 1.5);
      /* Show 1.5 cards on mobile */
    }
  }

  .carousel {
    gap: 16px;
    padding-bottom: 30px;
  }

  .carousel-btn {
    display: none;
    /* Mobile swipe is enough */
  }
}

.product-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: var(--shadow-hover);
  border-color: var(--primary-green);
}

.product-img-wrapper {
  width: 100%;
  aspect-ratio: 1 / 1;
  /* Square ratio */
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 16px;
  position: relative;
  background-color: #F5F5F5;
}

.product-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 0.3s ease, transform 0.3s cubic-bezier(0.23, 1, 0.32, 1);
}

.product-img-hover {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.product-card:hover:has(.product-img-hover) .product-img {
  opacity: 0;
}

.product-card:hover .product-img-hover {
  opacity: 1;
}

.card-slider-track {
  display: flex;
  width: 100%;
  height: 100%;
  transition: transform 0.3s cubic-bezier(0.23, 1, 0.32, 1);
}

.card-slider-track img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  flex-shrink: 0;
}

/* Product Card Image Gallery Arrows */
.card-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 32px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  font-size: 16px;
  color: var(--dark-green);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  user-select: none;
}

.product-card:hover .card-arrow {
  opacity: 1;
  visibility: visible;
}

.card-arrow:hover {
  background: var(--dark-green);
  color: white;
  transform: translateY(-50%) scale(1.1);
}

.card-arrow.prev {
  left: 8px;
}

.card-arrow.next {
  right: 8px;
}

.product-info {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.product-title {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 6px;
  color: var(--dark-green);
}

.product-price {
  font-size: 16px;
  color: var(--primary-brown);
  font-weight: 500;
  margin-bottom: 12px;
}

.product-price strong {
  font-weight: 700;
}

.product-price small {
  font-weight: 400;
  color: var(--text-light);
  font-size: 13px;
  /* Slightly smaller for 'excl. GST' */
}

/* USPs visible by default */
.product-usps {
  max-height: none;
  opacity: 1;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 10px;
}

.product-usps span {
  font-size: 12px;
  background: var(--light-brown);
  padding: 3px 8px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  color: var(--accent-brown);
  font-weight: 500;
  white-space: nowrap;
}

/* Info Sections */
/* Compact ESG Impact Section Styles */
.esg-impact {
  padding: 80px 0;
  background-color: #FFFFFF;
  position: relative;
}

.esg-header-compact {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 60px;
}

.esg-header-compact .section-title {
  font-size: 32px;
  margin-bottom: 15px;
  color: var(--dark-green);
  font-family: 'Dancing Script', cursive;
  font-weight: 700;
}

.esg-header-compact .section-subtitle {
  font-size: 17px;
  color: var(--text-light);
  line-height: 1.6;
}

/* 3-Column ESG Impact Style */
.impact-grid-three-col {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.impact-item-vertical {
  text-align: center;
  padding: 40px 30px;
  background: #e8f5e9;
  /* Pastel Green */
  border-radius: 24px;
  border: 1px solid rgba(0, 0, 0, 0.02);
  transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
  display: flex;
  flex-direction: column;
  height: 100%;
}

.impact-item-vertical:hover {
  transform: translateY(-10px);
  background: white;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.05);
  border-color: var(--primary-green);
}

.impact-number {
  font-size: 80px;
  font-weight: 800;
  color: var(--dark-green);
  line-height: 1;
  margin-bottom: 20px;
  font-family: 'Outfit', sans-serif;
  letter-spacing: -3px;
}

.impact-fact-text {
  font-size: 16px;
  color: var(--text-dark);
  line-height: 1.6;
  max-width: 280px;
  margin: 0 auto;
}

.impact-fact-text cite {
  display: block;
  font-size: 12px;
  color: var(--primary-green);
  margin-top: 15px;
  font-style: normal;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* ── Why Choose Us Section ── */
.why-choose-section {
  position: relative;
  background: #FFFFFF;
  padding: 90px 0 80px;
  overflow: hidden;
  isolation: isolate;
}

.why-choose-section .container {
  position: relative;
  z-index: 1;
}

.why-choose-illustrations {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

.why-choose-illustration {
  --parallax-shift: 0px;
  --rotation: 0deg;
  position: absolute;
  width: clamp(110px, 13vw, 190px);
  opacity: 0.4;
  filter: drop-shadow(0 18px 30px rgba(45, 74, 52, 0.12));
  transform: translate3d(0, var(--parallax-shift), 0) rotate(var(--rotation));
  transform-origin: center;
  will-change: transform;
  user-select: none;
}

.why-choose-illustration--mascot {
  top: 0;
  left: 50%;
  width: clamp(130px, 16vw, 220px);
  transform: translate3d(-50%, var(--parallax-shift), 0) rotate(var(--rotation));
  --rotation: 0deg;
  opacity: 0.95;
}

.why-choose-illustration--1 {
  top: 3%;
  left: 1%;
  --rotation: -14deg;
}

.why-choose-illustration--2 {
  top: 7%;
  right: 1%;
  width: clamp(100px, 12vw, 175px);
  --rotation: 11deg;
}

.why-choose-illustration--3 {
  top: 30%;
  left: -1%;
  width: clamp(115px, 13vw, 180px);
  --rotation: -8deg;
}

.why-choose-illustration--4 {
  top: 34%;
  right: -1%;
  width: clamp(115px, 13vw, 182px);
  --rotation: 16deg;
}

.why-choose-illustration--5 {
  bottom: 6%;
  left: 3%;
  width: clamp(110px, 12vw, 170px);
  --rotation: -18deg;
}

.why-choose-illustration--6 {
  bottom: 4%;
  right: 4%;
  width: clamp(118px, 13vw, 178px);
  --rotation: 9deg;
}

.why-choose-header {
  text-align: center;
  max-width: 720px;
  margin: clamp(56px, 7vw, 92px) auto 64px;
  position: relative;
  z-index: 2;
}

.why-choose-eyebrow {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--primary-green);
  background: rgba(144, 180, 148, 0.15);
  border: 1px solid rgba(144, 180, 148, 0.35);
  padding: 5px 14px;
  border-radius: 99px;
  margin-bottom: 18px;
}

.why-choose-h2 {
  font-size: 34px;
  font-family: 'Dancing Script', cursive;
  color: var(--dark-green);
  font-weight: 700;
  margin-bottom: 18px;
  line-height: 1.25;
}

.why-choose-lead {
  font-size: 16px;
  color: var(--text-light);
  line-height: 1.7;
}


@media (max-width: 900px) {
  .why-choose-h2 {
    font-size: 28px;
  }

  .why-choose-illustration {
    opacity: 0.34;
  }

  .why-choose-illustration--mascot {
    top: 1%;
    width: clamp(118px, 22vw, 180px);
    opacity: 0.92;
  }

  .why-choose-illustration--1 {
    top: 2%;
    left: -2%;
  }

  .why-choose-illustration--2 {
    top: 8%;
    right: -2%;
  }

  .why-choose-illustration--3 {
    top: 27%;
    left: -3%;
  }

  .why-choose-illustration--4 {
    top: 39%;
    right: -3%;
  }

  .why-choose-illustration--5 {
    bottom: 10%;
    left: 0;
  }

  .why-choose-illustration--6 {
    bottom: 5%;
    right: 0;
  }
}

/* ── Comparison Table (Traditional vs Eco-Friendly) ── */
.cmp-table {
  position: relative;
  z-index: 2;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 40px rgba(45, 74, 52, 0.10), 0 1px 4px rgba(45, 74, 52, 0.06);
  border: 1px solid rgba(144, 180, 148, 0.25);
  background: rgba(255, 255, 255, 0.86);
  backdrop-filter: blur(3px);
}

.cmp-head {
  display: grid;
  grid-template-columns: 190px 1fr 1fr;
}

.cmp-head-spacer {
  background: white;
  border-bottom: 2px solid rgba(144, 180, 148, 0.14);
}

.cmp-head-col {
  padding: 24px 28px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  border-bottom: 2px solid rgba(0,0,0,0.05);
}

.cmp-head-col--trad {
  background: #FDF5F0;
  border-left: 1px solid rgba(0,0,0,0.05);
}

.cmp-head-col--eco {
  background: #EAF4EB;
  border-left: 1px solid rgba(144, 180, 148, 0.22);
}

.cmp-head-icon {
  font-size: 26px;
  line-height: 1;
}

.cmp-head-col strong {
  font-size: 15px;
  font-weight: 700;
}

.cmp-head-col--trad strong { color: #7B3A26; }
.cmp-head-col--eco strong  { color: #1A4D2E; }

.cmp-head-sub {
  font-size: 11px;
  font-weight: 500;
  opacity: 0.55;
  letter-spacing: 0.04em;
}

.cmp-row {
  display: grid;
  grid-template-columns: 190px 1fr 1fr;
  border-top: 1px solid rgba(144, 180, 148, 0.10);
  transition: filter 0.15s;
}

.cmp-row:hover { filter: brightness(0.975); }

.cmp-label {
  padding: 16px 20px;
  display: flex;
  align-items: center;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-dark);
  background: white;
  border-right: 1px solid rgba(144, 180, 148, 0.12);
  letter-spacing: 0.01em;
}

.cmp-cell {
  padding: 16px 20px;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 16px;
  line-height: 1.5;
}

.cmp-cell--trad {
  background: #FFFAF8;
  border-left: 1px solid rgba(0,0,0,0.04);
  color: #5A3E34;
}

.cmp-cell--eco {
  background: #F7FBF7;
  border-left: 1px solid rgba(144, 180, 148, 0.12);
  color: #1A4D2E;
}

.cmp-row:nth-child(even) .cmp-label      { background: white; } /* same as odd rows */
.cmp-row:nth-child(even) .cmp-cell--trad { background: #FDF8F5; }
.cmp-row:nth-child(even) .cmp-cell--eco  { background: #F0F7F1; }

.cmp-x,
.cmp-check {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  font-weight: 900;
  margin-top: 1px;
}

.cmp-x     { background: #FFE8E3; color: #C0392B; }
.cmp-check { background: #C8EAD0; color: #1A6B3A; }

@media (max-width: 720px) {
  .cmp-head {
    grid-template-columns: 1fr 1fr;
  }
  .cmp-head-spacer { display: none; }
  .cmp-head-col { padding: 18px 14px; }

  .cmp-row {
    grid-template-columns: 1fr 1fr;
    grid-template-areas:
      "label label"
      "trad  eco";
  }
  .cmp-label {
    grid-area: label;
    border-right: none;
    border-bottom: 1px solid rgba(144, 180, 148, 0.10);
    background: white !important;
    justify-content: center;
    font-size: 12px;
    padding: 9px 16px;
  }
  .cmp-cell--trad { grid-area: trad; }
  .cmp-cell--eco  { grid-area: eco; }
  .cmp-cell { padding: 12px 14px; font-size: 15px; }
}

@media (max-width: 480px) {
  .why-choose-section {
    padding: 80px 0 72px;
  }

  .why-choose-illustration {
    width: clamp(88px, 22vw, 118px);
    opacity: 0.42;
  }

  .why-choose-illustration--mascot {
    top: 1%;
    width: clamp(104px, 30vw, 142px);
    opacity: 0.9;
  }

  .why-choose-illustration--1 {
    top: 4%;
    left: 1%;
  }

  .why-choose-illustration--2 {
    top: 10%;
    right: 1%;
  }

  .why-choose-illustration--3 {
    top: 29%;
    left: 2%;
  }

  .why-choose-illustration--4 {
    top: 41%;
    right: 2%;
  }

  .why-choose-illustration--5 {
    bottom: 14%;
    left: 2%;
  }

  .why-choose-illustration--6 {
    bottom: 8%;
    right: 2%;
  }

  .cmp-head-col { padding: 14px 10px; }
  .cmp-head-icon { font-size: 20px; }
  .cmp-head-col strong { font-size: 12px; }
  .cmp-head-sub { display: none; }
  .cmp-cell { padding: 10px 10px; font-size: 14px; gap: 7px; }
  .cmp-label { font-size: 11px; }
}

@media (max-width: 900px) {
  .impact-grid-three-col {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}

@media (max-width: 600px) {
  .impact-grid-three-col {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .impact-number {
    font-size: 48px;
    margin-bottom: 10px;
  }

  .impact-item-vertical {
    padding: 18px 16px;
    border-radius: 16px;
  }

  .impact-fact-text {
    font-size: 14px;
    line-height: 1.5;
  }
}

@media (max-width: 900px) {
  .esg-impact {
    padding: 80px 0;
  }
}

@media (max-width: 600px) {
  .esg-impact {
    padding: 60px 0;
  }

  .esg-header-compact .section-title {
    font-size: 28px;
  }

}



/* Testimonials */
.testimonials {
  padding: 80px 0;
  position: relative;
}

.testimonials h2 {
  text-align: center;
  margin-bottom: 50px;
  font-size: 32px;
}

@media (max-width: 600px) {
  .testimonials h2 {
    font-size: 28px;
  }

  h2.no-icon {
    font-size: 28px !important;
  }
}

.breadcrumb-container a {
  transition: var(--transition);
}

.breadcrumb-container a:hover {
  color: var(--primary-green) !important;
}

.testi-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.testi-card {
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.4);
  padding: 40px 30px;
  border-radius: 24px;
  position: relative;
  transition: all 0.4s ease;
}

@media (max-width: 600px) {
  .testi-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .testi-card {
    padding: 30px 20px;
  }
}


.testi-text {
  font-style: normal;
  margin-bottom: 20px;
  position: relative;
  z-index: 2;
}

.testi-author {
  display: flex;
  align-items: center;
  gap: 13px;
  font-weight: 600;
  color: var(--dark-green);
}

.testi-avatar {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  flex: 0 0 44px;
  border-radius: 50%;
  background: linear-gradient(140deg, var(--primary-green), var(--dark-green));
  color: #FFFFFF;
  font-size: 14px;
  font-weight: 700;
}

.testi-author-info {
  display: flex;
  flex-direction: column;
  line-height: 1.3;
}

.testi-name {
  font-size: 15px;
  font-weight: 700;
}

.testi-role {
  font-size: 13px;
  font-weight: 400;
  color: var(--text-light);
}

.testi-stars {
  color: #E0A92C;
  /* Gold color for stars */
  font-size: 17px;
  letter-spacing: 2px;
  line-height: 1;
}

.testi-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 4px 11px;
  font-size: 11px;
  font-weight: 600;
  color: var(--dark-green);
  background: rgba(144, 180, 148, 0.16);
  border: 1px solid rgba(144, 180, 148, 0.38);
  border-radius: 99px;
  white-space: nowrap;
}


/* Product Category Page */
.page-header {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: 126px 0 64px;
  background-color: #E8F0E9;
  background-image: linear-gradient(120deg, #e4efe1 0%, #f8f4e6 100%);
  margin-bottom: 32px;
  border-radius: 0 0 32px 32px;
  text-align: center;
}

.page-header h1 {
  font-size: 52px;
  color: var(--dark-green);
  margin-bottom: 10px;
}

.page-header p {
  max-width: 600px;
  margin: 0 auto;
  font-size: 17px;
  color: #405646;
}

body[data-category="tech"] .page-header { background-image: linear-gradient(120deg, #dcefe9 0%, #edf4e4 100%); }
body[data-category="drinkware"] .page-header { background-image: linear-gradient(120deg, #e1eff0 0%, #f8f3e4 100%); }
body[data-category="apparel"] .page-header { background-image: linear-gradient(120deg, #f1eadf 0%, #e5f1e5 100%); }
body[data-category="lifestyle"] .page-header { background-image: linear-gradient(120deg, #f2ebd8 0%, #e8f0dd 100%); }
body[data-category="stationery"] .page-header { background-image: linear-gradient(120deg, #f3e9d9 0%, #e3f0e7 100%); }

@media (max-width: 600px) {
  .page-header {
    padding: 70px 0 30px;
  }

  .page-header h1 {
    font-size: 28px;
    margin-bottom: 10px;
  }

  .page-header p {
    font-size: 14px;
  }
}

.category-layout {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 32px;
  align-items: start;
}

.filters {
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.4);
  padding: 30px;
  border-radius: 16px;
  box-shadow: var(--shadow);
  height: fit-content;
  position: sticky;
  top: 104px;
  max-height: calc(100vh - 124px);
  overflow-y: auto;
}

.filter-group {
  margin-bottom: 25px;
}

.filter-group h3 {
  font-size: 18px;
  margin-bottom: 15px;
  padding-bottom: 10px;
  border-bottom: 1px solid #eee;
}

.filter-label {
  display: block;
  margin-bottom: 10px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 10px;
  color: #455449;
  font-size: 15px;
}

/* Green Checkboxes */
.filter-label input[type="checkbox"] {
  appearance: none;
  width: 24px;
  height: 24px;
  border: 2px solid var(--primary-green);
  border-radius: 6px;
  cursor: pointer;
  position: relative;
  transition: var(--transition);
}

.filter-label input[type="checkbox"]:checked {
  background-color: var(--primary-green);
}

.filter-label input[type="checkbox"]:checked::after {
  content: '✓';
  position: absolute;
  color: white;
  font-size: 16px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

/* ── Sub-sub-category filter tree ─────────────────────────────── */
.filter-subcat-group {
  margin-bottom: 2px;
}

.filter-subcat-parent {
  display: flex;
  align-items: flex-start;
  gap: 4px;
}

.filter-subcat-parent .filter-label {
  flex: 1;
  margin-bottom: 0;
}

.filter-tree-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  border: 1px solid #ddd;
  border-radius: 4px;
  background: transparent;
  cursor: pointer;
  color: #888;
  padding: 0;
  margin-top: 4px;
  transition: background 0.15s, border-color 0.15s, color 0.15s;
}

.filter-tree-toggle:hover {
  background: #f5f5f5;
  border-color: #bbb;
  color: #333;
}

.filter-tree-toggle svg {
  transition: transform 0.2s ease;
  display: block;
}

.filter-tree-toggle.collapsed svg {
  transform: rotate(-90deg);
}

.filter-subcat-children {
  padding-left: 28px;
  margin-top: 2px;
  margin-bottom: 6px;
}

.filter-label-sub {
  font-size: 13px !important;
  color: #667 !important;
  margin-bottom: 6px !important;
}

.filter-label-sub input[type="checkbox"] {
  width: 18px !important;
  height: 18px !important;
  border-radius: 4px !important;
}

.filter-label-sub input[type="checkbox"]:checked::after {
  font-size: 12px !important;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  /* 4 in a row desktop */
  gap: 20px;
}

.products-grid-container {
  min-width: 0;
}

.category-results-toolbar {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
  padding: 0 0 20px;
  margin-bottom: 22px;
  border-bottom: 1px solid rgba(45, 74, 52, 0.18);
}

.category-results-summary {
  display: grid;
  gap: 2px;
  flex: 0 0 auto;
}

.category-results-eyebrow {
  color: #6c7f70;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
}

.category-results-summary strong {
  color: var(--dark-green);
  font-size: 22px;
  line-height: 1.1;
}

.category-toolbar-actions,
.active-filter-list {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 8px;
  flex-wrap: wrap;
}

.active-filter-chip,
.active-search-chip {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  min-height: 32px;
  padding: 5px 10px;
  border: 1px solid #c4d8c7;
  border-radius: 8px;
  background: #edf5ed;
  color: #36573e;
  font: inherit;
  font-size: 13px;
  line-height: 1.1;
}

.active-filter-chip {
  cursor: pointer;
}

.active-filter-chip:hover {
  border-color: var(--dark-green);
  background: #deeddf;
}

.active-filter-chip span {
  font-size: 18px;
  line-height: 0.7;
}

.clear-category-filters {
  min-height: 32px;
  padding: 5px 0;
  border: 0;
  background: transparent;
  color: #4d654f;
  font: inherit;
  font-size: 13px;
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
  cursor: pointer;
}

.products-grid .product-card {
  min-width: 0;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.82);
}

.products-grid .product-info {
  padding: 0 2px 3px;
}

.products-grid .product-title {
  min-height: 38px;
}

/* Mobile Filters Overlay & Button */
.mobile-filter-btn {
  display: none;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 14px 18px;
  background: var(--dark-green);
  color: white;
  border: none;
  border-radius: 999px;
  margin-bottom: 20px;
  font-weight: 600;
  font-size: 15px;
  cursor: pointer;
  box-shadow: 0 8px 20px rgba(45, 74, 52, 0.28);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
  -webkit-tap-highlight-color: transparent;
}

.mobile-filter-btn:active {
  transform: scale(0.98);
  box-shadow: 0 4px 12px rgba(45, 74, 52, 0.22);
}

.mobile-filter-btn .filter-btn-icon {
  display: inline-flex;
  flex: 0 0 auto;
}

.mobile-filter-btn .filter-count-badge {
  display: none;
  align-items: center;
  justify-content: center;
  min-width: 22px;
  height: 22px;
  padding: 0 6px;
  margin-left: 2px;
  background: #ffffff;
  color: var(--dark-green);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 800;
  line-height: 1;
}

.mobile-filter-btn.has-active-filters .filter-count-badge {
  display: inline-flex;
}

/* Backdrop behind the mobile filter bottom-sheet */
.filter-sheet-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(20, 33, 24, 0.5);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s ease, visibility 0s linear 0.35s;
  z-index: 3999;
}

.filter-sheet-backdrop.active {
  opacity: 1;
  visibility: visible;
  transition-delay: 0s;
}

.close-filters {
  display: none;
  position: absolute;
  top: 18px;
  right: 18px;
  width: 38px;
  height: 38px;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  line-height: 1;
  cursor: pointer;
  color: var(--dark-green);
  background: rgba(45, 74, 52, 0.07);
  border-radius: 50%;
  z-index: 4002;
  transition: background 0.2s ease;
}

.close-filters:hover {
  background: rgba(45, 74, 52, 0.14);
}

/* Mobile bottom-sheet chrome (injected by JS) — hidden on desktop sidebar */
.filter-sheet-header,
.filter-sheet-footer,
.filter-sheet-backdrop {
  display: none;
}

@media (max-width: 992px) {
  .filter-sheet-backdrop {
    display: block;
  }

  .filter-sheet-header {
    display: flex;
  }

  .filter-sheet-footer {
    display: block;
  }
}

.filter-sheet-header {
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 4px 2px 14px;
}

.filter-sheet-title {
  font-size: 20px;
  font-weight: 700;
  color: var(--dark-green);
}

.filter-sheet-clear {
  border: 0;
  background: transparent;
  color: #4d654f;
  font: inherit;
  font-size: 14px;
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
  cursor: pointer;
  padding: 6px 0;
}

.filter-sheet-footer {
  position: sticky;
  bottom: 0;
  margin: 18px -22px -20px;
  padding: 12px 22px calc(14px + env(safe-area-inset-bottom));
  background: linear-gradient(to top, #ffffff 72%, rgba(255, 255, 255, 0));
}

.filter-sheet-apply {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 15px 18px;
  border: 0;
  border-radius: 999px;
  background: var(--dark-green);
  color: #ffffff;
  font: inherit;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 10px 24px rgba(45, 74, 52, 0.3);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
  -webkit-tap-highlight-color: transparent;
}

.filter-sheet-apply:active {
  transform: scale(0.98);
}

@media (max-width: 992px) {
  .category-layout {
    grid-template-columns: 1fr;
  }

  /* Bottom-sheet filter panel */
  .filters {
    position: fixed;
    top: auto;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: auto;
    max-height: min(78vh, 640px);
    background: #ffffff;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    z-index: 4000;
    padding: 10px 22px 20px;
    transform: translateY(105%);
    opacity: 1;
    transition: transform 0.45s cubic-bezier(0.16, 1, 0.3, 1), visibility 0s linear 0.45s;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    border-radius: 22px 22px 0 0;
    border: 0;
    box-shadow: 0 -18px 50px rgba(20, 33, 24, 0.28);
    visibility: hidden;
  }

  /* Drag handle */
  .filters::before {
    content: '';
    display: block;
    width: 44px;
    height: 5px;
    margin: 2px auto 14px;
    border-radius: 999px;
    background: rgba(45, 74, 52, 0.22);
  }

  .filters.active {
    transform: translateY(0);
    visibility: visible;
    transition-delay: 0s;
  }

  .mobile-filter-btn {
    display: flex;
  }

  .close-filters {
    display: flex;
  }

  .products-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }

  .category-results-toolbar {
    align-items: flex-start;
    flex-direction: column;
    gap: 12px;
  }

  .category-toolbar-actions,
  .active-filter-list {
    justify-content: flex-start;
  }
}






/* Product Badges */
.product-badges {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.badge {
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.badge-overseas {
  background-color: #E8F5E9;
  color: #2E7D32;
}

.badge-leadtime {
  background-color: #F1F8E9;
  color: #558B2F;
}

.badge-local {
  background-color: #E8F5E9;
  color: #2E7D32;
}

.product-gallery {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.main-image-container {
  position: relative;
  width: 100%;
}

.main-image {
  width: 100%;
  height: auto;
  aspect-ratio: 1 / 1;
  max-height: 70vh;
  border-radius: 16px;
  object-fit: contain;
  background-color: #f9f9f9;
  box-shadow: var(--shadow);
  display: block;
}

.gallery-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.8);
  border: none;
  border-radius: 50%;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  opacity: 0;
  transition: all 0.3s ease;
  z-index: 10;
  font-size: 18px;
  color: var(--dark-green);
}

.main-image-container:hover .gallery-arrow {
  opacity: 1;
}

.gallery-arrow:hover {
  background: white;
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.15);
  transform: translateY(-50%) scale(1.05);
}

.gallery-arrow.prev-arrow {
  left: 15px;
}

.gallery-arrow.next-arrow {
  right: 15px;
}

.thumbnails {
  display: flex;
  gap: 15px;
  overflow-x: auto;
}

.thumb {
  width: 80px;
  height: 80px;
  border-radius: 6px;
  object-fit: cover;
  cursor: pointer;
  border: 2px solid transparent;
  transition: var(--transition);
}

.thumb:hover,
.thumb.active {
  border-color: var(--primary-green);
}



/* Swatches Display */
.swatch-row {
  margin-bottom: 12px;
}

.swatch-row h3 {
  font-size: 16px;
  margin-bottom: 4px;
}

.swatches-wrapper {
  position: relative;
}

/* 2-Column Product Layout */
.product-breadcrumb-container {
  padding: 110px 0 0;
}

.product-details-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.15fr);
  gap: 36px;
  align-items: start;
  padding-top: 10px;
  padding-bottom: 40px;
}

.product-column-left,
.product-column-middle,
.product-column-right {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

/* Breadcrumb White Box */
.breadcrumb-white-box {
  background: white;
  padding: 11px 28px;
  border-radius: 50px;
  display: inline-block;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
  margin-left: 20px;
}

.breadcrumb-content {
  color: #888;
  font-size: 14px;
  font-weight: 500;
}

.breadcrumb-content a {
  text-decoration: none;
  color: #888;
  transition: var(--transition);
}

.breadcrumb-content a:hover {
  color: var(--primary-green);
}

/* Category link (the middle link) in product page breadcrumbs */
.product-breadcrumb-container .breadcrumb-content a:nth-of-type(2) {
  color: var(--primary-green);
  font-weight: 600;
}

.product-breadcrumb-container .breadcrumb-content a:nth-of-type(2):hover {
  color: var(--dark-green);
}

/* Product Header & Title */
.product-header-wrapper {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px 16px;
  margin-top: 16px;
  margin-bottom: 6px;
}

.product-title-main {
  font-family: 'Outfit', sans-serif !important;
  font-size: 32px;
  font-weight: 700;
  color: var(--dark-green);
  margin: 0;
  line-height: 1.2;
}

@media (min-width: 1024px) {
  .product-header-wrapper {
    flex-direction: row;
    align-items: center;
    gap: 20px;
    margin-top: 20px;
    margin-bottom: 6px;
  }

  .product-title-main {
    margin-bottom: 0;
  }

  .product-badges {
    margin-bottom: 0;
  }
}

/* Right Column (Info Card Box) */
.product-info-card-box {
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  padding: 35px;
  border-radius: 25px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.4);
}

@media (min-width: 901px) {
  .product-info-card-box {
    display: flex;
    flex-wrap: wrap;
    gap: 12px 25px;
    align-items: flex-start;
  }

  .swatch-row {
    flex: 1 1 100%;
    margin-bottom: 0;
  }

  .quantity-section-embedded {
    margin-top: 0;
    margin-bottom: 8px;
    width: 100%;
    flex: 1 1 100%;
  }

  .btn-whatsapp,
  #wa-order-btn {
    flex: 1 1 100%;
    margin-top: 10px;
  }
}

/* You May Also Like Section (Below Main 2-Column Row) */
.product-related-section {
  padding-top: 10px;
  padding-bottom: 80px;
}

.related-title {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--dark-green);
}

.related-compact-list {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 16px;
}

.related-compact-card {
  display: flex;
  gap: 12px;
  background: white;
  padding: 10px;
  border-radius: 14px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  transition: var(--transition);
  align-items: center;
  text-decoration: none;
}

.related-compact-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.compact-img {
  width: 70px;
  height: 70px;
  flex-shrink: 0;
  border-radius: 8px;
  overflow: hidden;
}

.compact-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.compact-info {
  min-width: 0;
  flex: 1;
}

.compact-info h4 {
  font-size: 14px;
  line-height: 1.25;
  margin-bottom: 4px;
  color: var(--dark-green);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.compact-price {
  font-size: 14px;
  font-weight: 700;
  color: var(--primary-brown);
  margin-bottom: 4px;
}

.compact-usps {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 4px;
}

.compact-usps span {
  font-size: 10px;
  background: var(--light-brown);
  padding: 2px 6px;
  border-radius: 4px;
  color: var(--text-light);
  white-space: nowrap;
}

/* Product Description Accordion */
.product-description-accordion {
  display: block;
  width: 100%;
  flex: 1 1 100%;
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.description-content {
  font-size: 15px;
  line-height: 1.6;
  color: var(--text-light);
}

.description-content p {
  margin-bottom: 10px;
}

.description-content ul,
.description-content ol {
  margin: 10px 0;
  padding-left: 20px;
}

.description-content li {
  margin-bottom: 6px;
}

.description-content strong,
.description-content b {
  color: var(--text-dark);
}

@media (max-width: 1100px) {
  .product-details-layout {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.15fr);
    gap: 24px;
  }

  .related-compact-list {
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  }
}

@media (max-width: 768px) {
  .product-details-layout {
    grid-template-columns: 1fr;
    gap: 24px;
    padding-bottom: 20px;
  }

  .product-related-section {
    padding-top: 10px;
    padding-bottom: 50px;
  }

  .related-compact-list {
    grid-template-columns: 1fr;
    gap: 12px;
  }
}

.swatches {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  padding-bottom: 8px;
}

/* Desktop & tablet: two swatches per row so they take up less space (exclude circular colour swatches) */
@media (min-width: 601px) {
  .swatches:not(.colour-swatches) {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 6px;
  }

  .swatches:not(.colour-swatches) .swatch {
    width: 100%;
    margin: 0;
  }
}

.swatch {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 7px 12px;
  border: 2px solid #e0e0e0;
  border-radius: 8px;
  cursor: pointer;
  white-space: nowrap;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  background: white;
  font-size: 13px;
  font-weight: 500;
  color: var(--text-dark);
  box-sizing: border-box;
}

.swatch:hover {
  border-color: var(--primary-green);
  background: var(--light-green);
}

.swatch.selected {
  background: #5CAA28;
  color: var(--white);
  border-color: #5CAA28;
  box-shadow: none;
  transform: none;
  font-weight: 600;
}

.swatch.selected:hover {
  background-color: #5CAA28;
  box-shadow: none;
  transform: none;
}

.swatch:active,
.swatch.selected:active {
  transform: none;
  box-shadow: none;
}

/* Swatch with image styles - horizontal rectangle: image left, label right */
.swatch-with-image {
  display: inline-flex;
  flex-direction: row;
  align-items: center;
  gap: 6px;
  padding: 4px 10px;
  background: white;
  border: 2px solid #e0e0e0;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-sizing: border-box;
}

.swatch-with-image:hover {
  border-color: var(--primary-green);
  background: var(--light-green);
}

.swatch-image-container {
  width: 34px;
  height: 34px;
  border-radius: 4px;
  overflow: hidden;
  background: #f5f5f5;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.swatch-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.swatch-label {
  font-size: 13px;
  text-align: left;
  font-weight: 500;
  line-height: 1.25;
  color: var(--text-dark);
  word-break: normal;
  overflow-wrap: break-word;
  white-space: normal;
  padding: 0;
  box-sizing: border-box;
  border-radius: 4px;
}

.swatch.selected,
.swatch.active,
.swatch.selected .swatch-label,
.swatch.active .swatch-label,
.swatch-with-image.selected .swatch-label,
.swatch-with-image.active .swatch-label {
  color: #ffffff;
}

.swatch-with-image.selected {
  background: #5CAA28;
  border-color: #5CAA28;
}

.swatch-with-image.selected:hover {
  background: #5CAA28;
  border-color: #5CAA28;
}

.swatch-with-image.selected .swatch-image-container {
  border: 2px solid #ffffff;
}

.swatch-with-image.selected .swatch-label {
  color: #ffffff;
  font-weight: 700;
  background: transparent;
}

/* Circular Colour Swatches Container */
.swatches.colour-swatches {
  display: flex !important;
  flex-wrap: wrap !important;
  grid-template-columns: none !important;
  gap: 10px 12px !important;
  padding-bottom: 4px;
  align-items: center;
  width: 100% !important;
}

/* Circular Colour Swatches */
.colour-swatch {
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  width: 36px !important;
  height: 36px !important;
  min-width: 36px !important;
  min-height: 36px !important;
  max-width: 36px !important;
  max-height: 36px !important;
  padding: 0 !important;
  border-radius: 50% !important;
  border: 2px solid transparent !important;
  background: transparent !important;
  cursor: pointer;
  box-sizing: border-box;
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  flex: 0 0 auto !important;
  margin: 0 !important;
}

.colour-swatch:hover {
  border-color: var(--primary-green) !important;
  background: #ffffff !important;
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
}

.colour-swatch .swatch-color-dot {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  border: 1px solid rgba(0, 0, 0, 0.14);
  flex-shrink: 0;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.5);
  transition: transform 0.2s ease;
  pointer-events: none;
}

.colour-swatch.selected,
.colour-swatch.active {
  background: #ffffff !important;
  border-color: #5CAA28 !important;
  box-shadow: 0 0 0 2.5px rgba(92, 170, 40, 0.35) !important;
  transform: scale(1.08);
}

.colour-swatch.selected:hover,
.colour-swatch.active:hover {
  background: #ffffff !important;
  border-color: #5CAA28 !important;
  transform: scale(1.1);
}

.colour-swatch.selected .swatch-color-dot,
.colour-swatch.active .swatch-color-dot {
  border-color: rgba(0, 0, 0, 0.25);
  transform: scale(1.02);
}

.colour-swatch .swatch-label {
  display: none !important;
}

.selected-colour-value {
  font-weight: 700;
  color: var(--primary-green);
  margin-left: 4px;
}


.bulk-pricing-trigger {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 6px;
  font-size: 13px;
  font-weight: 600;
  color: var(--primary-green);
  cursor: pointer;
  text-decoration: underline;
  text-underline-offset: 2px;
  background: transparent;
  border: none;
  padding: 0;
  font-family: inherit;
}

.bulk-pricing-panel {
  display: grid;
  gap: 18px;
  max-height: calc(78vh - 110px);
  overflow: auto;
  padding-right: 4px;
}

.bulk-pricing-modal[hidden] {
  display: none;
}

.bulk-pricing-modal {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: 60px 20px 32px;
  overflow-y: auto;
}

.bulk-pricing-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(19, 33, 23, 0.52);
  backdrop-filter: blur(3px);
}

.bulk-pricing-dialog {
  position: relative;
  width: min(680px, calc(100vw - 40px));
  max-height: min(78vh, 720px);
  background: #fff;
  border-radius: 20px;
  padding: 22px;
  box-shadow: 0 32px 100px rgba(8, 18, 12, 0.26);
  border: 1px solid rgba(37, 74, 54, 0.08);
}

.bulk-pricing-dialog-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 18px;
  padding-bottom: 14px;
  border-bottom: 1px solid #e9ece8;
}

.bulk-pricing-dialog-head h3 {
  margin: 0;
  font-size: 24px;
  color: var(--dark-green);
}

.bulk-pricing-close {
  width: 36px;
  height: 36px;
  border: none;
  border-radius: 999px;
  background: #f3f7f2;
  color: var(--dark-green);
  font-size: 24px;
  line-height: 1;
  cursor: pointer;
}

.bulk-pricing-close:hover {
  background: #e6efe5;
}

.bulk-pricing-group h4 {
  margin: 0 0 10px;
  font-size: 14px;
  color: var(--dark-green);
}

.bulk-pricing-option + .bulk-pricing-option {
  margin-top: 14px;
}

.bulk-pricing-option h5 {
  margin: 0 0 8px;
  font-size: 12px;
  font-weight: 600;
  color: var(--text-dark);
}

.bulk-pricing-table-wrap {
  overflow-x: auto;
}

.bulk-pricing-table {
  width: 100%;
  min-width: 0;
  border-collapse: collapse;
  background: rgba(255, 255, 255, 0.7);
  border-radius: 10px;
  overflow: hidden;
}

.bulk-pricing-table th,
.bulk-pricing-table td {
  padding: 9px 11px;
  font-size: 14px;
  text-align: left;
  border-bottom: 1px solid #edf1ec;
}

.bulk-pricing-table th {
  background: #f3f7f2;
  color: var(--dark-green);
  font-weight: 700;
}

.bulk-pricing-table tbody tr:last-child td {
  border-bottom: none;
}

body.bulk-pricing-modal-open {
  overflow: hidden;
}

@media (max-width: 600px) {
  .bulk-pricing-modal {
    padding: 24px 12px 16px;
  }
  .bulk-pricing-dialog {
    padding: 16px;
    border-radius: 16px;
    width: calc(100vw - 24px);
  }
  .bulk-pricing-dialog-head h3 {
    font-size: 20px;
  }
}

/* Accordion Styles */
.accordion-toggle {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 0 12px 0;
  background: transparent;
  border: none;
  font-family: 'Outfit', sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--dark-green);
  text-align: left;
}

.accordion-toggle .icon {
  display: none;
}

.accordion-content {
  max-height: none;
  opacity: 1;
  padding-top: 0;
  overflow: visible;
}

@media (max-width: 768px) {
  .accordion-toggle {
    cursor: pointer;
    padding: 14px 0;
    font-size: 16px;
    font-weight: 600;
    border-bottom: 1px solid #eee;
  }

  .accordion-toggle .icon {
    display: flex;
    align-items: center;
    transition: transform 0.3s ease;
  }

  .accordion-toggle .icon svg {
    width: 14px;
    height: 14px;
    stroke: currentColor;
    stroke-width: 3.5;
    fill: none;
  }

  .accordion-toggle.active .icon {
    transform: rotate(180deg);
  }

  .accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, opacity 0.3s ease;
    opacity: 0;
    padding: 0;
  }

  .accordion-content.active {
    max-height: 3000px;
    opacity: 1;
    padding-top: 15px;
    padding-bottom: 15px;
  }

  .product-disclaimer {
    font-size: 13px;
    color: var(--text-light);
    line-height: 1.5;
    margin-top: 20px;
    padding: 15px;
    background: rgba(45, 74, 52, 0.03);
    border-radius: 12px;
    border-left: 3px solid var(--primary-green);
    font-style: italic;
    width: 100%;
    flex: 1 1 100%;
    box-sizing: border-box;
  }

  .breadcrumb-white-box {
    margin-left: 0;
    padding: 7px 18px;
    border-radius: 20px;
    max-width: 100%;
    box-sizing: border-box;
    display: block;
    /* Allow wrapping */
  }

  .breadcrumb-content {
    font-size: 12px;
    word-break: break-word;
    /* Ensure long breadcrumbs don't overflow */
  }

  .product-header-wrapper {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    gap: 8px;
    margin-top: 12px;
    margin-bottom: 4px;
    width: 100%;
  }

  .product-title-main {
    font-size: 23px;
    font-weight: 700;
    line-height: 1.25;
    text-align: left;
    margin: 0;
    word-break: break-word;
    width: 100%;
  }

  .product-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    justify-content: flex-start;
    margin: 0;
  }

  .main-image {
    height: auto !important;
    aspect-ratio: 1/1;
    object-fit: contain !important;
    background: #f9f9f9;
    max-width: 100%;
  }

  .swatches-wrapper {
    overflow-x: auto;
    width: calc(100% + 40px);
    margin-left: -20px;
    margin-right: -20px;
    padding: 0 20px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    position: relative;
    display: block;
    margin-bottom: 5px;
  }

  .swatches-wrapper::-webkit-scrollbar {
    display: none;
  }

  .swatches {
    flex-wrap: nowrap !important;
    padding-bottom: 5px;
    width: max-content;
    /* Ensure it scrolls */
  }

  .product-info-card-box {
    padding: 25px 20px;
    border-radius: 20px;
    max-width: 100%;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  }
}

/* Quantity Slider */
.quantity-section {
  margin-bottom: 40px;
  background: var(--white);
  padding: 24px;
  border-radius: var(--card-radius);
  box-shadow: var(--shadow);
}

.qty-header {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 6px;
}

.qty-val {
  font-size: 20px;
  font-weight: 600;
  color: var(--dark-green);
}

/* Quantity Slider Styling */
input[type=range]#qty-slider {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  height: 6px;
  background: #e0e0e0;
  /* Grey track line */
  border-radius: 5px;
  outline: none;
  margin: 8px 0 6px;
  cursor: pointer;
}

.qty-price-row {
  display: flex;
  justify-content: space-between;
  margin-top: 8px;
  align-items: baseline;
  border-top: 1px solid #eee;
  padding-top: 8px;
}

/* Thumb (Dot) for Webkit (Chrome, Safari, Edge) */
input[type=range]#qty-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 18px;
  height: 18px;
  background: #2ECC71;
  /* Bright green thumb */
  cursor: pointer;
  border-radius: 50%;
  border: 2px solid #fff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
  transition: transform 0.2s cubic-bezier(0.23, 1, 0.32, 1);
}

/* Thumb (Dot) for Firefox */
input[type=range]#qty-slider::-moz-range-thumb {
  width: 18px;
  height: 18px;
  background: #2ECC71;
  /* Bright green thumb */
  cursor: pointer;
  border-radius: 50%;
  border: 2px solid #fff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
  transition: transform 0.2s cubic-bezier(0.23, 1, 0.32, 1);
}

/* Enlarge dot when dragged/active */
input[type=range]#qty-slider:active::-webkit-slider-thumb {
  transform: scale(1.4);
}

input[type=range]#qty-slider:active::-moz-range-thumb {
  transform: scale(1.4);
}

/* Fallback for other range inputs if any */
input[type=range]:not(#qty-slider) {
  width: 100%;
  accent-color: var(--primary-green);
}

/* FAQ Section */
.faq-section {
  padding: 60px 0;
}

.faq-heading {
  font-size: 28px;
  text-align: center;
  margin-bottom: 40px;
  color: var(--dark-green);
  font-family: 'Dancing Script', cursive;
  font-weight: 700;
}

.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid #ddd;
}

.faq-item:first-child {
  border-top: 1px solid #ddd;
}

.faq-toggle {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-size: 16px;
  font-weight: 600;
  color: var(--dark-green);
  gap: 16px;
  font-family: inherit;
}

.faq-toggle:hover {
  color: var(--primary-green, var(--dark-green));
  opacity: 0.8;
}

.faq-icon {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease;
}

.faq-icon svg {
  width: 12px;
  height: 12px;
}

.faq-toggle[aria-expanded="true"] .faq-icon {
  transform: rotate(180deg);
}

.faq-answer {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.35s ease, padding 0.35s ease;
  padding-bottom: 0;
}

.faq-answer.active {
  max-height: 400px;
  padding-bottom: 20px;
}

.faq-answer p {
  color: #555;
  line-height: 1.7;
  margin: 0;
  font-size: 15px;
}

/* Post "Why Choose" homepage redesign */
.post-why-home {
  --proof-ink: #17241d;
  --proof-ink-soft: #25382d;
  --proof-moss: #88a56a;
  --proof-lime: #cbe75f;
  --proof-copper: #d58c45;
  --proof-paper: #f4eedf;
  --proof-mist: rgba(246, 241, 226, 0.72);
  --proof-line: rgba(203, 231, 95, 0.26);
  --proof-shadow: 0 28px 70px rgba(8, 21, 14, 0.38);
  position: relative;
  isolation: isolate;
  overflow: clip;
  color: var(--proof-paper);
  background:
    radial-gradient(circle at 8% 12%, rgba(203, 231, 95, 0.18), transparent 29rem),
    radial-gradient(circle at 88% 34%, rgba(213, 140, 69, 0.18), transparent 26rem),
    linear-gradient(128deg, #101a15 0%, #213727 48%, #0d1612 100%);
  font-family: 'Alegreya Sans', sans-serif;
}

.post-why-home::before,
.post-why-home::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: -1;
}

.post-why-home::before {
  opacity: 0.34;
  background-image:
    linear-gradient(115deg, transparent 0 46%, rgba(203, 231, 95, 0.14) 46% 46.45%, transparent 46.45%),
    linear-gradient(rgba(244, 238, 223, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(244, 238, 223, 0.045) 1px, transparent 1px);
  background-size: 100% 100%, 38px 38px, 38px 38px;
}

.post-why-home::after {
  opacity: 0.16;
  mix-blend-mode: screen;
  background-image:
    radial-gradient(circle at 18% 72%, #fff 0 1px, transparent 1.6px),
    radial-gradient(circle at 70% 18%, #fff 0 1px, transparent 1.5px);
  background-size: 42px 42px, 58px 58px;
}

.post-why-home .sgp-section,
.post-why-home .esg-impact,
.post-why-home .testimonials,
.post-why-home .faq-section {
  position: relative;
  background: transparent;
  padding: clamp(72px, 8vw, 120px) 0;
}

.post-why-kicker {
  display: block;
  width: fit-content;
  margin: 0 auto 14px;
  color: var(--proof-lime);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.22em;
  line-height: 1.1;
  text-transform: uppercase;
}

.post-why-home h2,
.post-why-home .sgp-h2,
.post-why-home .section-title,
.post-why-home .faq-heading,
.post-why-home .testimonials h2 {
  color: var(--proof-paper);
  font-family: 'Fraunces', serif;
  font-size: clamp(42px, 7vw, 86px);
  font-weight: 820;
  letter-spacing: 0;
  line-height: 0.92;
  margin-bottom: 18px;
  text-wrap: balance;
}

.post-why-home .sgp-lead,
.post-why-home .section-subtitle {
  color: rgba(244, 238, 223, 0.74);
  font-size: clamp(17px, 2vw, 21px);
  line-height: 1.55;
}

.post-why-home .sgp-header,
.post-why-home .esg-header-compact {
  max-width: 820px;
  margin: 0 auto clamp(34px, 5vw, 64px);
}

.post-why-home .sgp-diagram {
  max-width: 1040px;
  padding: clamp(18px, 3vw, 34px);
  border: 1px solid rgba(244, 238, 223, 0.16);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(244, 238, 223, 0.12), rgba(244, 238, 223, 0.035)),
    rgba(10, 22, 16, 0.36);
  box-shadow: var(--proof-shadow);
  transform: rotate(-1deg);
}

.post-why-home .sgp-diagram > * {
  transform: rotate(1deg);
}

.post-why-home .sgp-badge {
  border: 1px solid var(--proof-line);
  background: rgba(12, 24, 17, 0.72);
  color: var(--proof-paper);
  box-shadow: 0 16px 44px rgba(0, 0, 0, 0.22);
}

.post-why-home .sgp-badge-icon,
.post-why-home .sgp-hub,
.post-why-home .sgp-pillar--on,
.post-why-home .sgp-sum-icon {
  background: var(--proof-lime);
  color: var(--proof-ink);
}

.post-why-home .sgp-badge-title,
.post-why-home .sgp-hub,
.post-why-home .sgp-pillar,
.post-why-home .sgp-focus h4 {
  color: var(--proof-paper);
  font-family: 'Alegreya Sans', sans-serif;
}

.post-why-home .sgp-badge-sub,
.post-why-home .sgp-focus p {
  color: rgba(244, 238, 223, 0.62);
}

.post-why-home .sgp-badge-line,
.post-why-home .sgp-badge-line:last-child {
  background: linear-gradient(90deg, transparent, var(--proof-lime), transparent);
}

.post-why-home .sgp-line {
  stroke: var(--proof-lime);
  stroke-width: 2;
  stroke-dasharray: 1 9;
  stroke-linecap: round;
  animation: proofDash 16s linear infinite;
}

.post-why-home .sgp-pillar,
.post-why-home .sgp-focus {
  border: 1px solid rgba(244, 238, 223, 0.16);
  border-radius: 8px;
  background: rgba(244, 238, 223, 0.08);
  transition: transform 0.38s ease, background 0.38s ease, border-color 0.38s ease;
}

.post-why-home .sgp-pillar:hover,
.post-why-home .sgp-focus:hover {
  transform: translateY(-8px);
  border-color: var(--proof-lime);
  background: rgba(203, 231, 95, 0.12);
}

.post-why-home .sgp-pillar--on {
  border-color: transparent;
  box-shadow: 0 18px 42px rgba(203, 231, 95, 0.18);
}

.post-why-home .sgp-pillar--on,
.post-why-home .sgp-pillar--on .sgp-p-icon,
.post-why-home .sgp-pillar--on span {
  color: var(--proof-ink);
}

.post-why-home .sgp-p-icon,
.post-why-home .sgp-f-icon {
  background: rgba(244, 238, 223, 0.12);
  color: var(--proof-lime);
}

.post-why-home .sgp-sum {
  max-width: 1040px;
  border-radius: 8px;
  background: linear-gradient(95deg, rgba(12, 24, 17, 0.82), rgba(54, 82, 47, 0.82));
  border: 1px solid rgba(203, 231, 95, 0.28);
  box-shadow: 0 18px 52px rgba(0, 0, 0, 0.25);
}

.post-why-home .sgp-sum strong {
  color: var(--proof-lime);
}

.post-why-home .esg-impact {
  padding-top: clamp(40px, 6vw, 86px);
}

.post-why-home .impact-grid-three-col {
  grid-template-columns: 1.05fr 0.82fr 1.05fr;
  gap: clamp(18px, 3vw, 34px);
  align-items: stretch;
}

.post-why-home .impact-item-vertical {
  min-height: 330px;
  justify-content: space-between;
  text-align: left;
  border: 1px solid rgba(244, 238, 223, 0.16);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(244, 238, 223, 0.12), rgba(244, 238, 223, 0.035)),
    rgba(17, 35, 25, 0.68);
  box-shadow: var(--proof-shadow);
  overflow: hidden;
}

.post-why-home .impact-item-vertical:nth-child(2) {
  transform: translateY(44px);
  background:
    linear-gradient(145deg, rgba(203, 231, 95, 0.20), rgba(244, 238, 223, 0.035)),
    rgba(17, 35, 25, 0.72);
}

.post-why-home .impact-item-vertical::before {
  content: "";
  position: absolute;
  width: 160px;
  height: 160px;
  right: -58px;
  top: -58px;
  border: 1px solid rgba(203, 231, 95, 0.34);
  border-radius: 50%;
}

.post-why-home .impact-item-vertical:hover {
  transform: translateY(-12px) rotate(1deg);
  background: rgba(244, 238, 223, 0.13);
  border-color: var(--proof-lime);
}

.post-why-home .impact-item-vertical:nth-child(2):hover {
  transform: translateY(28px) rotate(-1deg);
}

.post-why-home .impact-number {
  color: var(--proof-lime);
  font-family: 'Fraunces', serif;
  font-size: clamp(76px, 10vw, 132px);
  font-weight: 900;
  letter-spacing: 0;
  text-shadow: 0 18px 36px rgba(0, 0, 0, 0.26);
}

.post-why-home .impact-fact-text {
  max-width: none;
  margin: 0;
  color: rgba(244, 238, 223, 0.84);
  font-size: 18px;
  line-height: 1.45;
}

.post-why-home .impact-fact-text cite {
  color: var(--proof-copper);
  font-size: 12px;
  letter-spacing: 0.15em;
}

.post-why-home .testimonials {
  padding-top: clamp(112px, 12vw, 170px);
}

.post-why-home .testimonials .post-why-kicker,
.post-why-home .testimonials h2,
.post-why-home .faq-section .post-why-kicker,
.post-why-home .faq-heading {
  margin-left: 0;
  text-align: left;
}

.post-why-home .testi-grid {
  grid-template-columns: 0.9fr 1.18fr 0.92fr;
  gap: clamp(18px, 3vw, 34px);
  align-items: start;
}

.post-why-home .testi-card {
  border: 1px solid rgba(244, 238, 223, 0.17);
  border-radius: 8px;
  background: rgba(244, 238, 223, 0.10);
  box-shadow: var(--proof-shadow);
  transform-origin: center;
}

.post-why-home .testi-card:nth-child(1) {
  margin-top: 58px;
  transform: rotate(-2deg);
}

.post-why-home .testi-card:nth-child(2) {
  background: var(--proof-paper);
  color: var(--proof-ink);
}

.post-why-home .testi-card:nth-child(3) {
  margin-top: 28px;
  transform: rotate(1.5deg);
}

.post-why-home .testi-card:hover {
  transform: translateY(-12px) rotate(0deg);
  border-color: var(--proof-lime);
}

.post-why-home .testi-stars {
  color: var(--proof-copper);
  letter-spacing: 0.12em;
}

.post-why-home .testi-text {
  color: inherit;
  font-size: 18px;
  line-height: 1.55;
}

.post-why-home .testi-author {
  color: var(--proof-lime);
  font-family: 'Alegreya Sans', sans-serif;
  font-weight: 800;
}

.post-why-home .testi-card:nth-child(2) .testi-author {
  color: #49652f;
}

.post-why-home .faq-section {
  padding-bottom: clamp(96px, 10vw, 150px);
}

.post-why-home .faq-list {
  max-width: none;
  display: grid;
  grid-template-columns: minmax(240px, 0.72fr) minmax(0, 1.28fr);
  gap: 0 34px;
  align-items: start;
}

.post-why-home .faq-item {
  border: 0;
  border-top: 1px solid rgba(244, 238, 223, 0.16);
  grid-column: 2;
}

.post-why-home .faq-item:first-child {
  border-top: 1px solid rgba(244, 238, 223, 0.16);
}

.post-why-home .faq-list::before {
  content: "Fast answers for branded eco gifts, delivery, sourcing, and production.";
  position: sticky;
  top: 112px;
  grid-row: 1 / span 5;
  color: var(--proof-paper);
  font-family: 'Fraunces', serif;
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 760;
  line-height: 1;
}

.post-why-home .faq-toggle {
  min-height: 78px;
  color: var(--proof-paper);
  font-family: 'Alegreya Sans', sans-serif;
  font-size: clamp(18px, 2vw, 24px);
  font-weight: 800;
  transition: color 0.28s ease, padding-left 0.28s ease;
}

.post-why-home .faq-toggle:hover,
.post-why-home .faq-toggle[aria-expanded="true"] {
  color: var(--proof-lime);
  padding-left: 14px;
  opacity: 1;
}

.post-why-home .faq-icon {
  width: 34px;
  height: 34px;
  border: 1px solid rgba(203, 231, 95, 0.36);
  border-radius: 50%;
  color: var(--proof-lime);
}

.post-why-home .faq-answer p {
  max-width: 780px;
  color: rgba(244, 238, 223, 0.74);
  font-size: 17px;
  line-height: 1.7;
}

.post-why-reveal {
  opacity: 0;
  transform: translateY(42px);
  transition:
    opacity 0.9s cubic-bezier(0.18, 0.78, 0.22, 1),
    transform 0.9s cubic-bezier(0.18, 0.78, 0.22, 1);
}

.post-why-reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes proofDash {
  to {
    stroke-dashoffset: -120;
  }
}

@media (max-width: 980px) {
  .post-why-home .sgp-diagram {
    transform: none;
  }

  .post-why-home .sgp-diagram > * {
    transform: none;
  }

  .post-why-home .impact-grid-three-col,
  .post-why-home .testi-grid,
  .post-why-home .faq-list {
    grid-template-columns: 1fr;
  }

  .post-why-home .impact-item-vertical:nth-child(2),
  .post-why-home .impact-item-vertical:nth-child(2):hover,
  .post-why-home .testi-card:nth-child(1),
  .post-why-home .testi-card:nth-child(3) {
    margin-top: 0;
    transform: none;
  }

  .post-why-home .faq-list::before {
    position: static;
    grid-row: auto;
    margin-bottom: 20px;
  }
}

@media (max-width: 600px) {
  .post-why-home .sgp-section,
  .post-why-home .esg-impact,
  .post-why-home .testimonials,
  .post-why-home .faq-section {
    padding: 64px 0;
  }

  .post-why-home h2,
  .post-why-home .sgp-h2,
  .post-why-home .section-title,
  .post-why-home .faq-heading,
  .post-why-home .testimonials h2 {
    font-size: clamp(38px, 13vw, 58px) !important;
  }

  .post-why-home .sgp-diagram {
    padding: 14px;
  }

  .post-why-home .sgp-pillar,
  .post-why-home .sgp-focus {
    border-radius: 8px;
  }

  .post-why-home .impact-item-vertical {
    min-height: 270px;
    padding: 26px 22px;
  }

  .post-why-home .faq-toggle {
    min-height: 68px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .post-why-home *,
  .post-why-reveal {
    animation: none !important;
    transition-duration: 0.01ms !important;
  }

  .post-why-reveal {
    opacity: 1;
    transform: none;
  }
}

/* Footer */
footer {
  background: #507A58;
  /* Lighter, more natural soft green */
  color: var(--white);
  padding: 80px 0 30px;
  /* Increased top padding to accommodate the mask */
  position: relative;
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 400 40' xmlns='http://www.w3.org/2000/svg'%3E%3Crect x='0' y='34.5' width='400' height='6' fill='black' /%3E%3Ctext x='33' y='33' font-size='28' text-anchor='middle' font-family='sans-serif' fill='black'%3E%26%23x267B;%3C/text%3E%3Cpath d='M90,15 h20 v20 h-20 z' fill='black' /%3E%3Cpath d='M95,15 v-6 a5,5 0 0,1 10,0 v6' fill='none' stroke='black' stroke-width='2.5' /%3E%3Ctext x='166' y='33' font-size='28' text-anchor='middle' font-family='sans-serif' fill='black'%3E%26%23x267B;%3C/text%3E%3Cpath d='M225,15 h16 v12 a8,8 0 0,1 -16,0 z' fill='black' /%3E%3Cpath d='M241,18 h5 a5,5 0 0,1 0,10 h-5' fill='none' stroke='black' stroke-width='2.5' /%3E%3Ctext x='300' y='33' font-size='28' text-anchor='middle' font-family='sans-serif' fill='black'%3E%26%23x267B;%3C/text%3E%3Cpath d='M353,35 v-15 q7,-4 13,0 v15 q-7,-4 -13,0 Z M366,35 v-15 q7,-4 13,0 v15 q-7,-4 -13,0 Z' fill='black' /%3E%3C/svg%3E"), linear-gradient(black, black);
  mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 400 40' xmlns='http://www.w3.org/2000/svg'%3E%3Crect x='0' y='34.5' width='400' height='6' fill='black' /%3E%3Ctext x='33' y='33' font-size='28' text-anchor='middle' font-family='sans-serif' fill='black'%3E%26%23x267B;%3C/text%3E%3Cpath d='M90,15 h20 v20 h-20 z' fill='black' /%3E%3Cpath d='M95,15 v-6 a5,5 0 0,1 10,0 v6' fill='none' stroke='black' stroke-width='2.5' /%3E%3Ctext x='166' y='33' font-size='28' text-anchor='middle' font-family='sans-serif' fill='black'%3E%26%23x267B;%3C/text%3E%3Cpath d='M225,15 h16 v12 a8,8 0 0,1 -16,0 z' fill='black' /%3E%3Cpath d='M241,18 h5 a5,5 0 0,1 0,10 h-5' fill='none' stroke='black' stroke-width='2.5' /%3E%3Ctext x='300' y='33' font-size='28' text-anchor='middle' font-family='sans-serif' fill='black'%3E%26%23x267B;%3C/text%3E%3Cpath d='M353,35 v-15 q7,-4 13,0 v15 q-7,-4 -13,0 Z M366,35 v-15 q7,-4 13,0 v15 q-7,-4 -13,0 Z' fill='black' /%3E%3C/svg%3E"), linear-gradient(black, black);
  -webkit-mask-size: 400px 40px, 100% calc(100% - 39px);
  mask-size: 400px 40px, 100% calc(100% - 39px);
  -webkit-mask-repeat: repeat-x, no-repeat;
  mask-repeat: repeat-x, no-repeat;
  -webkit-mask-position: top left, bottom left;
  mask-position: top left, bottom left;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 40px;
  margin-bottom: 40px;
}

.footer-logo {
  font-size: 24px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 20px;
  line-height: 0;
}

.footer-logo img {
  display: block;
  width: 220px;
  max-width: 100%;
  height: auto;
  border-radius: 12px;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  color: #E8F0E9;
  transition: var(--transition);
}

.footer-links a:hover {
  color: var(--white);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  margin-top: 40px;
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.copyright {
  color: #CFE1D2;
  font-size: 14px;
}

/* Category Page Specific Mobile Filters */
@media (max-width: 768px) {
  .category-layout {
    display: flex;
    flex-direction: column;
  }

  .filters {
    z-index: 4000;
    background: #ffffff;
  }

  .mobile-filter-btn {
    margin-bottom: 16px;
  }
}

/* Final Mobile Portability & Layout Overrides */
@media (max-width: 600px) {
  .intro-section {
    display: none !important;
  }

  body {
    overflow-x: clip;
    /* clip allows sticky tracking better than hidden */
    position: relative;
    width: 100%;
  }

  .container {
    width: 100% !important;
    max-width: 100% !important;
    padding-left: 16px !important;
    padding-right: 16px !important;
    box-sizing: border-box !important;
    margin-left: auto !important;
    margin-right: auto !important;
  }

  .product-breadcrumb-container {
    padding: 10px 0 0 !important;
  }

  /* Reduce top spacing of product header on mobile */
  .product-header-wrapper {
    display: flex !important;
    flex-direction: column !important;
    align-items: flex-start !important;
    text-align: left !important;
    gap: 8px !important;
    margin-top: 10px !important;
    margin-bottom: 4px !important;
    width: 100% !important;
  }

  /* Product Details Layout Fix */
  .product-details-layout {
    display: flex !important;
    flex-direction: column !important;
    gap: 20px !important;
    padding: 10px 0 60px !important;
  }

  .product-column-left,
  .product-column-middle,
  .product-column-right {
    width: 100% !important;
    padding: 0 !important;
  }

  .product-gallery {
    margin: 0 -16px;
    /* Offset container padding for full-bleed feel if desired, but safely */
    overflow: hidden;
  }

  .main-image {
    width: 100% !important;
    height: auto !important;
    aspect-ratio: 1/1;
    border-radius: 0 !important;
    /* Mobile full-bleed */
    object-fit: contain;
    background: #f9f9f9;
  }

  .thumbnails {
    padding: 10px 16px;
  }

  .product-title-main {
    font-size: 23px !important;
    font-weight: 700 !important;
    line-height: 1.25 !important;
    text-align: left !important;
    margin: 0 !important;
    word-break: break-word !important;
    width: 100% !important;
  }

  .breadcrumb-white-box {
    margin-left: 0;
    padding: 7px 18px;
    border-radius: 20px;
    display: inline-block;
    max-width: 100%;
    box-sizing: border-box;
  }

  .breadcrumb-content {
    font-size: 12px;
    word-wrap: break-word;
  }

  .product-info-card-box {
    padding: 24px 16px;
    border-radius: 0;
    /* Full width card on mobile */
    border: none;
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
    box-shadow: none;
    width: 100% !important;
    box-sizing: border-box;
    overflow: hidden;
    /* Prevent swatch spill */
  }

  .swatches-wrapper {
    overflow-x: auto;
    width: calc(100% + 32px);
    margin-left: -16px;
    margin-right: -16px;
    padding: 0 16px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }

  .swatches-wrapper::-webkit-scrollbar {
    display: none;
  }

  .swatches {
    display: flex !important;
    flex-wrap: nowrap !important;
    width: max-content;
    padding-bottom: 8px;
  }

  .swatch {
    flex: 0 0 auto;
    padding: 6px 10px !important;
    font-size: 12px !important;
  }

  .quantity-section-embedded {
    margin-top: 0;
    margin-bottom: 16px;
  }

  /* Footer Mobile */
  footer {
    padding: 40px 16px 20px;
  }
}


/* ==================================================== */
/* Tabbed Hero Section & Search Header Updates */
/* ==================================================== */

header {
  max-width: 1240px;
}

.nav-item.dropdown {
  position: relative;
}

.nav-item.dropdown .dropdown-toggle {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-item.dropdown .dropdown-menu {
  position: absolute;
  top: 100%;
  /* Align with the bottom of the nav bar */
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  /* Center anchor and offset down */
  background: white;
  min-width: 220px;
  border-radius: 18px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
  padding: 12px 0;
  z-index: 2000;
  display: flex;
  flex-direction: column;
}

.nav-item.dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(5px);
}

.nav-item.dropdown .dropdown-menu a {
  padding: 10px 20px;
  border-radius: 0;
}

.nav-item.dropdown .dropdown-menu a:hover {
  background-color: var(--light-brown);
}

.nav-search {
  display: flex;
  align-items: center;
  background: rgba(45, 74, 52, 0.05);
  border-radius: 30px;
  padding: 4px 12px;
  position: relative;
  width: 350px;
  transition: all 0.3s ease;
}

.nav-search:focus-within {
  background: white;
  box-shadow: 0 8px 30px rgba(45, 74, 52, 0.22), 0 0 0 2px rgba(144, 180, 148, 0.4);
  transform: scaleX(1.025);
}

.nav-search .search-icon {
  padding: 6px;
  margin-left: 0;
  color: var(--primary-green);
}

.nav-search .search-input {
  padding: 6px 0;
  font-size: 14px;
  width: 100%;
}

.nav-search .typewriter-placeholder {
  font-size: 14px;
  left: 35px;
}

/* Search UI Base Styles (used by nav search on all pages) */
.search-results-dropdown {
  position: absolute;
  top: calc(100% + 15px);
  left: 0;
  right: 0;
  background: white;
  border-radius: 20px;
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.15), 0 0 0 1px rgba(0, 0, 0, 0.05);
  z-index: 3000;
  max-height: 400px;
  overflow-y: auto;
  display: none;
  padding: 8px;
}

.search-results-dropdown.active {
  display: block;
}

.search-item {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 8px;
  border-bottom: 1px solid #f5f5f5;
  transition: var(--transition);
}

.search-item:last-child {
  border-bottom: none;
}

.search-item:hover {
  background: var(--light-brown);
  border-radius: 10px;
}

.search-item img {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  object-fit: cover;
}

.search-item-info span {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: var(--dark-green);
}

.search-item-info small {
  color: var(--text-light);
  font-size: 12px;
}

.search-input-wrapper {
  position: relative;
  flex-grow: 1;
  display: flex;
  align-items: center;
}

.search-input {
  border: none;
  padding: 12px 10px;
  width: 100%;
  font-family: inherit;
  font-size: 16px;
  outline: none;
  background: transparent;
  position: relative;
  z-index: 2;
}

.typewriter-placeholder {
  position: absolute;
  left: 10px;
  pointer-events: none;
  color: #777;
  font-size: 16px;
  display: flex;
  align-items: center;
  z-index: 1;
}



@keyframes search-icon-bounce {
  0% {
    transform: scale(1);
  }

  30% {
    transform: scale(1.35) rotate(-8deg);
  }

  55% {
    transform: scale(0.9) rotate(4deg);
  }

  75% {
    transform: scale(1.1) rotate(-2deg);
  }

  100% {
    transform: scale(1) rotate(0deg);
  }
}

@keyframes search-icon-pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(144, 180, 148, 0.6);
  }

  60% {
    box-shadow: 0 0 0 10px rgba(144, 180, 148, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(144, 180, 148, 0);
  }
}

.search-icon {
  display: flex !important;
  align-items: center;
  justify-content: center;
  color: var(--primary-green);
  flex-shrink: 0;
  /* Now interactive */
  pointer-events: auto;
  cursor: pointer;
  user-select: none;
  border-radius: 50%;
  padding: 6px;
  width: 32px;
  height: 32px;
  margin-left: 4px;
  box-sizing: border-box;
  transition: color 0.25s ease, background 0.25s ease, transform 0.25s ease;
}

.search-icon:hover {
  color: var(--dark-green);
  background: rgba(45, 74, 52, 0.08);
  transform: scale(1.15);
}

.search-icon.clicked {
  animation: search-icon-bounce 0.55s cubic-bezier(0.23, 1, 0.32, 1) forwards;
  color: var(--dark-green);
}

.nav-search.search-focused {
  background: white;
  box-shadow: 0 8px 30px rgba(45, 74, 52, 0.22), 0 0 0 2px rgba(144, 180, 148, 0.45);
  transform: scaleX(1.025);
}

.tabbed-hero {
  padding: 96px 0 64px;
  background-color: #e8f5e9;
  position: relative;
  transition: background-color 0.8s ease;
}

.hero-top-split {
  display: flex;
  align-items: center;
  gap: 12px;
  width: min(100%, 980px);
  margin: 0 auto;
  position: relative;
  overflow: visible;
}

.hero-top-text {
  flex: 1;
  min-width: 0;
  position: relative;
  z-index: 3;
}

.hero-top-image {
  flex: 0 1 540px;
  min-width: 0;
  max-width: 540px;
  margin-top: -24px;
  margin-bottom: -36px;
  position: relative;
  z-index: 3;
}

.hero-leaf {
  position: absolute;
  display: block;
  height: auto;
  pointer-events: none;
  user-select: none;
  z-index: 2;
  transform: rotate(var(--leaf-rotation));
  animation: hero-leaf-rotate 6s ease-in-out infinite alternate;
}

@keyframes hero-leaf-rotate {
  from {
    transform: rotate(calc(var(--leaf-rotation) - 10deg));
  }

  to {
    transform: rotate(calc(var(--leaf-rotation) + 10deg));
  }
}

.hero-leaf-top-left {
  --leaf-rotation: 126deg;
  top: -180px;
  left: calc(50% - 50vw - 98px);
  width: clamp(220px, 20vw, 340px);
  transform-origin: center;
}

.hero-leaf-bottom-right {
  --leaf-rotation: -58deg;
  right: calc(50% - 50vw - 110px);
  bottom: -80px;
  width: clamp(280px, 24vw, 420px);
  transform-origin: center;
}

.hero-products-img {
  width: 100%;
  height: auto;
  border-radius: 16px;
  object-fit: cover;
}

.tabbed-hero-title {
  font-size: 42px;
  font-family: 'Dancing Script', cursive;
  color: var(--dark-green);
  font-weight: 700;
  text-align: left;
  margin-bottom: 12px;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-bottom: 24px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: #fff;
  border: 1px solid rgba(27, 94, 32, 0.12);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  color: var(--dark-green, #1b5e20);
  font-size: 13px;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 999px;
  white-space: nowrap;
}

.tabbed-hero-title span {
  display: inline-block;
  margin: 0 5px;
}

.tabbed-hero-container {
  display: flex;
  gap: 30px;
  position: relative;
  z-index: 4;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: 30px;
  padding: 30px;
  box-shadow: 0 20px 50px rgba(45, 74, 52, 0.08);
  align-items: flex-start;
  min-height: 500px;
  position: relative;
  /* overflow: hidden removed to preserve sticky behavior for child elements */
}

/* Decorative rotating recycle icon */
@keyframes hero-spin {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

.hero-recycle-icon {
  position: absolute;
  top: -60px;
  right: -60px;
  width: 380px;
  height: 380px;
  z-index: 0;
  pointer-events: none;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: hero-spin 18s linear infinite;
}

.hero-recycle-symbol {
  font-size: 340px;
  line-height: 1;
  color: var(--primary-green, #5d9166);
  opacity: 0.15;
  display: block;
  user-select: none;
}

.glass-vertical-tabs {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 12px;
  width: 95px;
  border-right: 1px solid rgba(0, 0, 0, 0.06);
  padding-right: 15px;
  padding-bottom: 20px;
  flex-shrink: 0;
  position: sticky;
  top: 100px;
  align-self: flex-start;
}

.glass-vertical-tabs::-webkit-scrollbar {
  display: none;
}

.tab-btn {
  background: rgba(255, 255, 255, 0.4);
  border: 1px solid transparent;
  width: 80px;
  height: 80px;
  padding: 0;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2px;
  color: var(--text-light);
  transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
  position: relative;
  overflow: hidden;
  flex: 0 0 auto;
}

.tab-btn:hover {
  background: rgba(255, 255, 255, 0.8);
}

.tab-btn.active {
  background: var(--primary-green);
  color: white;
  border-color: rgba(163, 201, 168, 0.4);
  box-shadow: 0 8px 16px rgba(45, 74, 52, 0.15);
  transform: scale(1.05);
  font-weight: 700;
}

.tab-icon {
  font-size: 26px;
  line-height: 1;
  transition: transform 0.4s ease;
}

.tab-btn.active .tab-icon {
  transform: scale(1.1);
}

.tab-text {
  font-size: 11px;
  font-weight: 600;
  font-family: 'Outfit', sans-serif;
  opacity: 1;
  transform: translateY(0);
  transition: all 0.4s ease;
  max-height: 15px;
  margin-top: 0;
}

.tab-btn.active .tab-text {
  font-weight: 700;
}

.tab-content-container {
  flex-grow: 1;
  position: relative;
  z-index: 1;
}

.tab-pane {
  display: none;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s cubic-bezier(0.23, 1, 0.32, 1), transform 0.5s cubic-bezier(0.23, 1, 0.32, 1);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
}

.tab-pane.active {
  display: block;
  opacity: 1;
  transform: translateY(0);
  position: relative;
}

.tab-pane-header {
  margin-bottom: 30px;
  padding: 0 10px;
}

.tab-pane-header h2 {
  font-size: 42px;
  margin-bottom: 10px;
  text-align: left;
}

.tab-pane-header h2::before {
  display: none !important;
}

.tab-pane-header p {
  color: var(--text-light);
  font-size: 16px;
  max-width: 700px;
  line-height: 1.6;
}

.category-header-flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 15px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  padding-bottom: 10px;
}

.category-header-flex h2 {
  margin-bottom: 0 !important;
  font-size: 36px;
}

.category-header-flex .view-all {
  font-weight: 600;
  color: var(--primary-brown);
  text-decoration: none;
  font-size: 18px;
}

.category-header-flex .view-all:hover {
  text-decoration: underline;
}

.nav-item.dropdown .dropdown-toggle span {
  font-weight: 900;
  display: inline-block;
  transform: scale(1.4);
}



.tab-product-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
  padding-bottom: 20px;
}

.tab-product-grid .product-card {
  margin-bottom: 0;
}


@media (max-width: 1100px) {
  .tab-product-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 900px) {
  header {
    width: calc(100% - 20px);
    max-width: 98%;
    border-radius: 0 0 25px 25px;
    height: auto !important;
    min-height: 58px;
    padding-bottom: 0;
    overflow: visible;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
  }

  header.search-expanded {
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    background-color: #ffffff;
    z-index: 1005;
  }

  .nav-container {
    padding: 0 15px;
    height: 58px !important;
    display: flex;
    align-items: center;
    position: relative;
    flex-wrap: wrap;
  }

  .logo {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    height: 36px;
    /* Increased logo size for mobile */
    margin: 0 !important;
    z-index: 1010;
  }

  .mobile-search-btn {
    display: flex !important;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: var(--primary-green);
    color: white;
    border-radius: 50%;
    border: none;
    cursor: pointer;
    position: absolute;
    left: 15px;
    /* Placed at the left side as requested */
    top: 50%;
    transform: translateY(-50%);
    z-index: 1010;
    box-shadow: 0 4px 10px rgba(144, 180, 148, 0.3);
    transition: all 0.3s ease;
  }

  .hamburger {
    display: flex !important;
    align-items: center;
    justify-content: center;
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1010;
    margin: 0;
    padding: 8px;
    background: transparent;
  }

  .nav-links {
    width: 100%;
    max-height: 0;
    overflow: hidden;
    /* Keep hidden by default */
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    display: flex !important;
    flex-direction: column;
    padding: 0;
    gap: 0;
    margin-top: 58px;
  }

  header.search-expanded .nav-links {
    max-height: 100px;
    padding-bottom: 12px;
    overflow: visible;
    /* Allow results dropdown to show */
  }

  .nav-search {
    width: 100%;
    padding: 0 8px;
    position: relative;
  }

  .nav-search .search-input-wrapper {
    display: block !important;
    opacity: 1 !important;
    visibility: visible !important;
    width: 100% !important;
    background: #ffffff !important;
    border: 1px solid rgba(144, 180, 148, 0.4);
    border-radius: 20px;
    padding: 10px 15px;
    transform: none !important;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12), 0 4px 10px rgba(45, 74, 52, 0.05);
    /* Premium multi-layer shadow */
  }

  .nav-search .search-results-dropdown {
    top: 100% !important;
    margin-top: 12px;
    /* Bigger gap for clarity */
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  }

  .nav-search .search-input {
    font-size: 16px;
    width: 100%;
    padding: 4px 0;
    color: var(--dark-green);
  }

  .nav-search .typewriter-placeholder {
    left: 15px;
    font-size: 14px;
  }

  .hero-top-split {
    flex-direction: column;
    gap: 24px;
    margin-bottom: 0;
  }

  .hero-top-image {
    flex: unset;
    max-width: 100%;
    width: 100%;
    margin-top: -30px;
    margin-bottom: -50px;
  }

  .tabbed-hero-title {
    text-align: center;
  }

  .hero-badges {
    justify-content: center;
  }

  .tabbed-hero-container {
    flex-direction: column;
    padding: 20px;
  }

  .glass-vertical-tabs {
    flex-direction: row;
    width: 100%;
    min-width: 0;
    border-right: none;
    border-bottom: 1px solid rgba(0, 0, 0, 0.04);
    padding: 10px 15px 20px 15px;
    margin: 0;
    flex-wrap: nowrap;
    white-space: nowrap;
    overflow-x: auto;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    overflow-y: visible;
    scroll-padding: 0 20px;
    position: static;
    top: auto;
    z-index: 12;
    justify-content: flex-start;
    gap: 12px;
    background: rgba(250, 250, 247, 0.9);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-radius: 20px;
    box-shadow: 0 10px 24px rgba(45, 74, 52, 0.08);
  }

  .tab-btn {
    width: 72px;
    height: 72px;
    padding: 0;
    flex-direction: column;
    border-radius: 50%;
    flex: 0 0 72px;
    overflow: visible;
    gap: 2px;
  }

  .tab-btn.active {
    transform: scale(1.05);
  }

  .tab-product-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ============================================================
   SINGAPORE GREEN PLAN ALIGNMENT SECTION
   ============================================================ */

.sgp-section {
  padding: 80px 0 72px;
  background: linear-gradient(160deg, #F6F1E8 0%, #EDE8DC 100%);
  position: relative;
  overflow: hidden;
}

.sgp-header {
  text-align: center;
  margin-bottom: 28px;
}

.sgp-h2 {
  font-size: 44px;
  margin-bottom: 10px;
}

.sgp-h2::before {
  display: none !important;
}

.sgp-lead {
  color: var(--text-light);
  font-size: 16px;
  margin: 0;
}

.sgp-badge-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 40px;
}

.sgp-badge-line {
  flex: 1;
  max-width: 120px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--primary-green));
}

.sgp-badge-line:last-child {
  background: linear-gradient(90deg, var(--primary-green), transparent);
}

.sgp-badge {
  display: flex;
  align-items: center;
  gap: 12px;
  border: 2px solid var(--dark-green);
  border-radius: 40px;
  padding: 8px 22px 8px 10px;
  background: rgba(255, 255, 255, 0.55);
  white-space: nowrap;
}

.sgp-badge-icon {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--dark-green);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.sgp-badge-title {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.8px;
  color: var(--dark-green);
  line-height: 1.3;
}

.sgp-badge-sub {
  font-size: 10px;
  color: var(--text-light);
  letter-spacing: 2.5px;
}

.sgp-diagram {
  position: relative;
  max-width: 920px;
  margin: 0 auto;
}

.sgp-svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
  overflow: visible;
}

.sgp-line {
  fill: none;
  stroke: var(--primary-green);
  stroke-width: 1.5;
  stroke-dasharray: 5 4;
  opacity: 0.7;
}

.sgp-pillars {
  display: flex;
  justify-content: center;
  gap: 10px;
  position: relative;
  z-index: 2;
}

.sgp-pillar {
  flex: 0 0 162px;
  background: rgba(255, 255, 255, 0.82);
  border: 2px solid #C8DBC9;
  border-radius: 14px;
  padding: 18px 12px 14px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  text-align: center;
  font-size: 13px;
  font-weight: 600;
  color: var(--dark-green);
  line-height: 1.3;
}

.sgp-pillar--on {
  background: var(--dark-green);
  border-color: var(--dark-green);
  color: white;
  box-shadow: 0 6px 22px rgba(45, 74, 52, 0.24);
}

.sgp-p-icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(144, 180, 148, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--dark-green);
}

.sgp-pillar--on .sgp-p-icon {
  background: rgba(255, 255, 255, 0.18);
  color: white;
}

.sgp-hub-row {
  display: flex;
  justify-content: center;
  padding: 34px 0;
  position: relative;
  z-index: 2;
}

.sgp-hub {
  background: #E3EEE4;
  border: 2px solid var(--primary-green);
  border-radius: 50px;
  padding: 13px 32px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 2px;
  color: var(--dark-green);
}

.sgp-focuses {
  display: flex;
  justify-content: center;
  gap: 10px;
  position: relative;
  z-index: 2;
}

.sgp-focus {
  flex: 0 0 162px;
  background: #EEF6EF;
  border: 2px solid #C2DBC4;
  border-radius: 14px;
  padding: 18px 12px 14px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  text-align: center;
}

.sgp-focus--hi {
  background: #FAF0E6;
  border-color: #C4956A;
}

.sgp-f-icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: #C2DBC4;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--dark-green);
}

.sgp-focus--hi .sgp-f-icon {
  background: #C4956A;
  color: white;
}

.sgp-focus h4 {
  font-size: 13px;
  font-weight: 700;
  color: var(--dark-green);
  line-height: 1.25;
  margin: 0;
}

.sgp-focus--hi h4 {
  color: #7B4F2A;
}

.sgp-focus p {
  font-size: 12px;
  color: var(--text-light);
  line-height: 1.4;
  margin: 0;
}

.sgp-sum {
  max-width: 920px;
  margin: 28px auto 0;
  background: var(--dark-green);
  border-radius: 14px;
  padding: 20px 26px;
  display: flex;
  align-items: center;
  gap: 16px;
  color: white;
}

.sgp-sum-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.sgp-sum p {
  font-size: 14px;
  line-height: 1.65;
  margin: 0;
}

.sgp-sum strong {
  color: #AEDDB2;
}

/* Tablet: wrap cards, hide connector lines */
@media (min-width: 601px) and (max-width: 980px) {
  .sgp-pillars,
  .sgp-focuses {
    flex-wrap: wrap;
    justify-content: center;
  }
  .sgp-pillar,
  .sgp-focus {
    flex: 0 0 calc(33.33% - 8px);
    min-width: 140px;
  }
  .sgp-svg {
    display: none;
  }
  .sgp-h2 {
    font-size: 36px;
  }
}

/* Mobile: compact single-row so connector lines work */
@media (max-width: 600px) {
  .sgp-section {
    padding: 56px 0 48px;
  }
  .sgp-h2 {
    font-size: 28px;
  }
  .sgp-lead {
    font-size: 13px;
  }
  .sgp-badge-wrap {
    display: none;
  }
  .sgp-pillars,
  .sgp-focuses {
    flex-wrap: nowrap;
    gap: 4px;
  }
  .sgp-pillar,
  .sgp-focus {
    flex: 1 1 0;
    min-width: 0;
    padding: 10px 4px 8px;
    gap: 5px;
    border-radius: 10px;
    border-width: 1.5px;
  }
  .sgp-p-icon {
    width: 34px;
    height: 34px;
  }
  .sgp-p-icon svg {
    width: 18px;
    height: 18px;
  }
  .sgp-f-icon {
    width: 34px;
    height: 34px;
  }
  .sgp-f-icon svg {
    width: 16px;
    height: 16px;
  }
  .sgp-pillar span {
    font-size: 9px;
    line-height: 1.2;
  }
  .sgp-focus h4 {
    font-size: 9px;
    line-height: 1.2;
  }
  .sgp-focus p {
    display: none;
  }
  .sgp-svg {
    display: block;
  }
  .sgp-hub-row {
    padding: 18px 0;
  }
  .sgp-hub {
    font-size: 9px;
    padding: 8px 12px;
    letter-spacing: 0.3px;
    gap: 5px;
  }
  .sgp-hub svg {
    width: 12px;
    height: 12px;
  }
  .sgp-sum {
    flex-direction: column;
    text-align: center;
    gap: 12px;
  }
  .sgp-sum p {
    font-size: 13px;
  }
}

@media (max-width: 600px) {

  .tab-content-container,
  .tab-pane {
    min-width: 0;
    width: 100%;
  }

  .tab-product-grid {
    display: flex !important;
    flex-wrap: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x mandatory;
    gap: 15px;
    padding-bottom: 20px;
    width: 100%;
    min-width: 0;
    scrollbar-color: var(--primary-green) rgba(0, 0, 0, 0.05);
    scrollbar-width: thin;
  }

  .tab-product-grid::-webkit-scrollbar {
    display: block;
    height: 8px;
    background: transparent;
  }

  .tab-product-grid::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, 0.05);
    border-radius: 10px;
    margin-top: 5px;
  }

  .tab-product-grid::-webkit-scrollbar-thumb {
    background: var(--primary-green);
    border-radius: 10px;
  }

  .tab-product-grid .product-card {
    flex: 0 0 calc(42vw - 15px);
    scroll-snap-align: start;
    min-width: 140px;
  }

  .tabbed-hero {
    padding: 80px 0 50px;
  }

  .hero-top-split {
    gap: 16px;
    overflow: visible;
  }

  .hero-leaf-top-left {
    top: -54px;
    left: -88px;
    width: 118px;
  }

  .hero-leaf-bottom-right {
    right: -118px;
    bottom: -8px;
    width: 190px;
  }

  .tabbed-hero-title {
    font-size: 24px;
    padding: 0 5px;
    margin-bottom: 8px;
  }

  .hero-badges {
    gap: 6px;
    margin-bottom: 14px;
    padding: 0 5px;
  }

  .hero-badge {
    font-size: 11px;
    padding: 3px 9px;
  }

  .tab-pane-header h2 {
    font-size: 28px;
  }

  .tab-pane-header p {
    font-size: 13px;
  }
}

@media (min-width: 901px) {
  .tab-pane-header h2,
  .category-header-flex h2,
  .why-choose-h2,
  .sgp-h2,
  .esg-header-compact .section-title,
  .testimonials h2,
  .faq-heading {
    font-size: 34px;
  }
}

@media (min-width: 901px) {
  .post-why-home .esg-header-compact .section-title {
    font-size: 34px;
  }
}

/* Light homepage continuation after Why Choose */
.post-why-home {
  --post-bg: #FFFFFF;
  --post-bg-soft: #F7FBF7;
  --post-bg-warm: #FDF8F5;
  --post-line: rgba(144, 180, 148, 0.24);
  --post-line-strong: rgba(144, 180, 148, 0.38);
  --post-shadow: 0 16px 45px rgba(45, 74, 52, 0.10);
  --post-shadow-hover: 0 22px 55px rgba(45, 74, 52, 0.14);
  position: relative;
  isolation: isolate;
  overflow: clip;
  color: var(--text-dark);
  background: #FFFFFF;
  font-family: 'Outfit', sans-serif;
}

.post-why-home::before,
.post-why-home::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: -1;
}

.post-why-home::before {
  display: none;
  background: none;
}

.post-why-home::after {
  display: none;
  background: none;
}

.post-why-home .sgp-section,
.post-why-home .esg-impact,
.post-why-home .testimonials,
.post-why-home .faq-section {
  position: relative;
  background: transparent !important;
  padding: 52px 0;
}

.post-why-home .post-why-kicker {
  display: inline-block;
  width: auto;
  margin: 0 auto 18px;
  font-family: 'Outfit', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  line-height: 1.2;
  text-transform: uppercase;
  color: var(--primary-green);
  background: rgba(144, 180, 148, 0.15);
  border: 1px solid rgba(144, 180, 148, 0.35);
  padding: 5px 14px;
  border-radius: 99px;
}

.post-why-home h2,
.post-why-home .sgp-h2,
.post-why-home .section-title,
.post-why-home .testimonials h2,
.post-why-home .faq-heading {
  color: var(--dark-green);
  font-family: 'Dancing Script', cursive;
  font-size: 34px !important;
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: 0;
  margin-bottom: 18px;
  text-align: center;
}

.post-why-home .sgp-lead,
.post-why-home .section-subtitle {
  max-width: 720px;
  margin: 0 auto;
  color: var(--text-light);
  font-family: 'Outfit', sans-serif;
  font-size: 16px;
  line-height: 1.7;
  text-align: center;
}

.post-why-home .sgp-header,
.post-why-home .esg-header-compact {
  max-width: 720px;
  margin: 0 auto 36px;
  text-align: center;
}

.post-why-home .sgp-badge-wrap {
  margin-bottom: 24px;
}

.post-why-home .sgp-badge-line,
.post-why-home .sgp-badge-line:last-child {
  background: linear-gradient(90deg, transparent, var(--primary-green), transparent);
}

.post-why-home .sgp-badge {
  color: var(--dark-green);
  border: 1px solid var(--post-line-strong);
  background: rgba(255, 255, 255, 0.76);
  box-shadow: 0 10px 30px rgba(45, 74, 52, 0.08);
}

.post-why-home .sgp-badge-icon,
.post-why-home .sgp-sum-icon {
  background: var(--dark-green);
  color: #FFFFFF;
}

.post-why-home .sgp-badge-title,
.post-why-home .sgp-hub,
.post-why-home .sgp-pillar,
.post-why-home .sgp-focus h4 {
  color: var(--dark-green);
  font-family: 'Outfit', sans-serif;
}

.post-why-home .sgp-badge-sub,
.post-why-home .sgp-focus p {
  color: var(--text-light);
}

.post-why-home .sgp-diagram {
  max-width: 1160px;
  width: 100%;
  margin: 0 auto;
  padding: 34px;
  border: 1px solid var(--post-line);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: var(--post-shadow);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transform: none;
}

.post-why-home .sgp-diagram > * {
  transform: none;
}

.post-why-home .sgp-line {
  stroke: var(--primary-green);
  stroke-width: 1.5;
  stroke-dasharray: 5 4;
  stroke-linecap: round;
  opacity: 0.68;
  animation: proofDash 18s linear infinite;
}

.post-why-home .sgp-pillar,
.post-why-home .sgp-focus {
  flex-basis: 196px;
  border: 1px solid var(--post-line);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 10px 26px rgba(45, 74, 52, 0.06);
  transition: transform 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease, background 0.35s ease;
}

.post-why-home .sgp-pillar span,
.post-why-home .sgp-focus h4,
.post-why-home .sgp-focus p,
.post-why-home .sgp-hub,
.post-why-home .sgp-sum p {
  font-size: 16px;
  line-height: 1.55;
}

.post-why-home .sgp-focus h4 {
  font-weight: 700;
}

.post-why-home .sgp-focus p {
  margin-top: 2px;
}

.post-why-home .sgp-pillar:hover,
.post-why-home .sgp-focus:hover {
  transform: translateY(-6px);
  border-color: var(--primary-green);
  box-shadow: var(--post-shadow-hover);
}

.post-why-home .sgp-pillar:hover,
.post-why-home .sgp-focus:hover {
  background: rgba(255, 255, 255, 0.86);
}

.post-why-home .sgp-pillar--on {
  color: #FFFFFF;
  background: var(--dark-green);
  border-color: var(--dark-green);
  box-shadow: 0 16px 36px rgba(45, 74, 52, 0.18);
}

.post-why-home .sgp-pillar--on:hover {
  background: var(--dark-green);
}

.post-why-home .sgp-pillar--on,
.post-why-home .sgp-pillar--on span {
  color: #FFFFFF;
}

.post-why-home .sgp-p-icon,
.post-why-home .sgp-f-icon {
  background: rgba(144, 180, 148, 0.18);
  color: var(--dark-green);
}

.post-why-home .sgp-pillar--on .sgp-p-icon {
  background: rgba(255, 255, 255, 0.18);
  color: #FFFFFF;
}

.post-why-home .sgp-hub {
  color: var(--dark-green);
  border: 1px solid var(--post-line-strong);
  background: #EAF4EB;
}

.post-why-home .sgp-sum {
  max-width: 1160px;
  color: #FFFFFF;
  border: 1px solid rgba(45, 74, 52, 0.12);
  border-radius: 18px;
  background: var(--dark-green);
  box-shadow: var(--post-shadow);
}

.post-why-home .sgp-sum strong {
  color: #C8EAD0;
}

.post-why-home .impact-grid-three-col {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  align-items: stretch;
}

.post-why-home .impact-item-vertical {
  min-height: auto;
  position: relative;
  overflow: hidden;
  text-align: center;
  padding: 40px 30px;
  border: 1px solid var(--post-line);
  border-radius: 20px;
  background: #E8F5E9;
  box-shadow: 0 10px 30px rgba(45, 74, 52, 0.06);
  transform: none;
  transition: transform 0.35s ease, background 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

.post-why-home .impact-item-vertical:nth-child(2) {
  transform: none;
  background: #F1E9E0;
}

.post-why-home .impact-item-vertical:nth-child(3) {
  background: #F7FBF7;
}

.post-why-home .impact-item-vertical::before {
  content: "";
  position: absolute;
  width: 130px;
  height: 130px;
  right: -46px;
  top: -46px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.36);
  border: 1px solid rgba(144, 180, 148, 0.20);
}

.post-why-home .impact-item-vertical:hover,
.post-why-home .impact-item-vertical:nth-child(2):hover {
  transform: translateY(-8px);
  background: #FFFFFF;
  border-color: var(--primary-green);
  box-shadow: var(--post-shadow-hover);
}

.post-why-home .impact-number {
  color: var(--dark-green);
  font-family: 'Outfit', sans-serif;
  font-size: 72px;
  font-weight: 800;
  letter-spacing: -2px;
  line-height: 1;
  margin-bottom: 20px;
  text-shadow: none;
}

.post-why-home .impact-fact-text {
  max-width: 280px;
  margin: 0 auto;
  color: var(--text-dark);
  font-size: 16px;
  line-height: 1.6;
}

.post-why-home .impact-fact-text cite {
  color: var(--primary-green);
  font-size: 12px;
  letter-spacing: 0.05em;
}

.post-why-home .testimonials .post-why-kicker,
.post-why-home .faq-section .post-why-kicker {
  margin-left: auto;
  margin-right: auto;
}

.post-why-home .testimonials h2,
.post-why-home .faq-heading {
  text-align: center;
}

.post-why-home .testi-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 28px;
  align-items: stretch;
}

.post-why-home .testi-card,
.post-why-home .testi-card:nth-child(1),
.post-why-home .testi-card:nth-child(2),
.post-why-home .testi-card:nth-child(3) {
  position: relative;
  display: flex;
  flex-direction: column;
  margin-top: 0;
  padding: 34px 30px 28px;
  color: var(--text-dark);
  border: 1px solid rgba(144, 180, 148, 0.30);
  border-radius: 22px;
  background:
    linear-gradient(160deg, #FFFFFF 0%, #F6FAF5 100%);
  box-shadow: 0 10px 28px rgba(45, 74, 52, 0.08);
  transform: none;
  overflow: hidden;
  transition: transform 0.35s cubic-bezier(0.23, 1, 0.32, 1),
    border-color 0.35s ease,
    box-shadow 0.35s ease;
}

/* Top accent bar that sweeps in on hover */
.post-why-home .testi-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-green), var(--dark-green));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.45s cubic-bezier(0.23, 1, 0.32, 1);
}

.post-why-home .testi-card:hover {
  transform: translateY(-10px);
  border-color: var(--primary-green);
  box-shadow: 0 26px 54px rgba(45, 74, 52, 0.16);
}

.post-why-home .testi-card:hover::before {
  transform: scaleX(1);
}

/* Featured centre card */
.post-why-home .testi-card--featured {
  background: linear-gradient(160deg, #F1F7EF 0%, #E4F0E1 100%);
  border-color: rgba(144, 180, 148, 0.5);
}

.post-why-home .testi-card--featured::before {
  transform: scaleX(1);
}

/* Big decorative quote mark */
.post-why-home .testi-quote-mark {
  position: absolute;
  top: 18px;
  right: 26px;
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 110px;
  font-weight: 700;
  line-height: 1;
  color: rgba(144, 180, 148, 0.35);
  pointer-events: none;
  user-select: none;
}

/* Top row: stars + verified badge */
.post-why-home .testi-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 18px;
}

.post-why-home .testi-stars {
  color: #E0A92C;
  font-size: 24px;
  letter-spacing: 4px;
  line-height: 1;
}

.post-why-home .testi-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 4px 11px;
  font-family: 'Outfit', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--dark-green);
  background: rgba(144, 180, 148, 0.16);
  border: 1px solid rgba(144, 180, 148, 0.38);
  border-radius: 99px;
  white-space: nowrap;
}

.post-why-home .testi-badge::before {
  content: "\2713";
  font-weight: 700;
  color: var(--primary-green);
}

/* Quote text */
.post-why-home .testi-text {
  position: relative;
  z-index: 1;
  flex: 1;
  color: var(--text-dark);
  font-size: 16px;
  font-style: normal;
  line-height: 1.65;
  margin-bottom: 24px;
}

/* Author block: avatar + name/role */
.post-why-home .testi-author,
.post-why-home .testi-card:nth-child(2) .testi-author {
  display: flex;
  align-items: center;
  gap: 13px;
  padding-top: 18px;
  border-top: 1px solid rgba(144, 180, 148, 0.28);
  color: var(--dark-green);
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
}

.post-why-home .testi-avatar {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  flex: 0 0 44px;
  border-radius: 50%;
  background: linear-gradient(140deg, var(--primary-green), var(--dark-green));
  color: #FFFFFF;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.03em;
  box-shadow: 0 6px 14px rgba(45, 74, 52, 0.22);
}

.post-why-home .testi-author-info {
  display: flex;
  flex-direction: column;
  line-height: 1.3;
}

.post-why-home .testi-name {
  font-size: 15px;
  font-weight: 700;
  color: var(--dark-green);
}

.post-why-home .testi-role {
  font-size: 13px;
  font-weight: 400;
  color: var(--text-light);
}

@media (max-width: 600px) {
  .post-why-home .testi-card,
  .post-why-home .testi-card:nth-child(1),
  .post-why-home .testi-card:nth-child(2),
  .post-why-home .testi-card:nth-child(3) {
    padding: 26px 20px 22px;
  }

  .post-why-home .testi-quote-mark {
    font-size: 80px;
    right: 16px;
    top: 14px;
  }

  .post-why-home .testi-stars {
    font-size: 21px;
    letter-spacing: 3px;
  }
}

.post-why-home .faq-list {
  max-width: 840px;
  display: block;
  margin: 0 auto;
}

.post-why-home .faq-list::before {
  content: none;
}

.post-why-home .faq-item,
.post-why-home .faq-item:first-child {
  border-top: 0;
  border-bottom: 1px solid rgba(144, 180, 148, 0.24);
  grid-column: auto;
}

.post-why-home .faq-item:first-child {
  border-top: 1px solid rgba(144, 180, 148, 0.24);
}

.post-why-home .faq-toggle {
  min-height: auto;
  color: var(--dark-green);
  font-family: 'Outfit', sans-serif;
  font-size: 16px;
  font-weight: 600;
  padding: 20px 0;
  transition: color 0.28s ease, opacity 0.28s ease;
}

.post-why-home .faq-toggle:hover,
.post-why-home .faq-toggle[aria-expanded="true"] {
  color: var(--primary-green);
  padding-left: 0;
  opacity: 0.9;
}

.post-why-home .faq-icon {
  width: 20px;
  height: 20px;
  border: 0;
  border-radius: 0;
  color: currentColor;
}

.post-why-home .faq-answer p {
  max-width: none;
  color: #555;
  font-size: 15px;
  line-height: 1.7;
}

.post-why-reveal {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 0.65s cubic-bezier(0.23, 1, 0.32, 1),
    transform 0.65s cubic-bezier(0.23, 1, 0.32, 1);
}

.post-why-reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 900px) {
  .post-why-home h2,
  .post-why-home .sgp-h2,
  .post-why-home .section-title,
  .post-why-home .testimonials h2,
  .post-why-home .faq-heading {
    font-size: 28px !important;
  }

  .post-why-home .impact-grid-three-col {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .post-why-home .sgp-section,
  .post-why-home .esg-impact,
  .post-why-home .testimonials,
  .post-why-home .faq-section {
    padding: 44px 0;
  }

  .post-why-home .sgp-diagram {
    padding: 14px;
    border-radius: 16px;
    overflow: visible;
  }

  .post-why-home .sgp-svg {
    display: none;
  }

  .post-why-home .sgp-pillars,
  .post-why-home .sgp-focuses {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .post-why-home .sgp-pillar,
  .post-why-home .sgp-focus {
    min-width: 0;
    padding: 14px 10px;
    gap: 8px;
    border-radius: 14px;
  }

  .post-why-home .sgp-pillar:last-child,
  .post-why-home .sgp-focus:last-child {
    grid-column: 1 / -1;
  }

  .post-why-home .sgp-p-icon,
  .post-why-home .sgp-f-icon {
    width: 42px;
    height: 42px;
  }

  .post-why-home .sgp-p-icon svg,
  .post-why-home .sgp-f-icon svg {
    width: 22px;
    height: 22px;
  }

  .post-why-home .sgp-pillar span,
  .post-why-home .sgp-focus h4,
  .post-why-home .sgp-focus p,
  .post-why-home .sgp-hub,
  .post-why-home .sgp-sum p {
    font-size: 14px;
    line-height: 1.45;
  }

  .post-why-home .sgp-focus p {
    display: block;
  }

  .post-why-home .sgp-hub-row {
    padding: 16px 0;
  }

  .post-why-home .sgp-hub {
    width: 100%;
    justify-content: center;
    padding: 10px 14px;
    letter-spacing: 0.08em;
  }

  .post-why-home .sgp-sum {
    padding: 18px;
  }

  .post-why-home .impact-grid-three-col {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .post-why-home .impact-number {
    font-size: 48px;
    letter-spacing: -1px;
  }

  .post-why-home .impact-item-vertical {
    padding: 24px 18px;
  }
}

/* Homepage category rows */
.tabbed-hero-container {
  display: grid;
  grid-template-columns: 95px minmax(0, 1fr);
  column-gap: 30px;
  row-gap: 18px;
  align-items: start;
  min-height: 0;
}

.homepage-catalog-mascot {
  position: absolute;
  top: 0;
  right: 4px;
  display: block;
  width: clamp(112px, 12vw, 150px);
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 14px 20px rgba(45, 74, 52, 0.14));
}

.tab-content-container {
  grid-column: 2;
  min-width: 0;
  width: 100%;
}

#homepage-category-content > .tab-pane {
  display: none;
}

.homepage-category-rows {
  display: flex;
  flex-direction: column;
  gap: 34px;
}

.homepage-category-row {
  min-width: 0;
  padding-bottom: 34px;
  border-bottom: 1px solid rgba(45, 74, 52, 0.12);
  scroll-margin-top: 110px;
}

.homepage-category-row:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.homepage-category-row .tab-pane-header {
  margin-bottom: 18px;
  padding: 0;
}

.homepage-category-row .category-header-flex {
  justify-content: flex-start;
  align-items: baseline;
  gap: 16px;
  margin-bottom: 7px;
  padding-bottom: 0;
  border-bottom: 0;
}

.homepage-category-row .category-header-flex h2 {
  margin: 0 !important;
  font-size: 34px;
}

.homepage-category-row .category-header-flex .view-all {
  display: inline-flex;
  align-items: center;
  color: var(--primary-brown);
  font-size: 14px;
  font-weight: 700;
  white-space: nowrap;
}

.homepage-category-row .tab-pane-header p {
  max-width: 700px;
  color: var(--text-light);
  font-size: 16px;
  line-height: 1.5;
}

.homepage-category-row .tab-product-grid {
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
  padding: 0;
}

.homepage-category-row .product-card {
  min-width: 0;
  padding: 10px;
  border: 1px solid rgba(45, 74, 52, 0.10);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.82);
}

.homepage-category-row .product-card:hover {
  border-color: var(--primary-green);
}

.homepage-category-row .product-img-wrapper {
  margin-bottom: 12px;
  border-radius: 10px;
}

.homepage-category-row .product-title {
  display: -webkit-box;
  min-height: 2.7em;
  margin-bottom: 6px;
  overflow: hidden;
  font-size: 14px;
  line-height: 1.35;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  line-clamp: 2;
}

.homepage-category-row .product-price {
  margin-bottom: 9px;
  font-size: 14px;
}

.homepage-category-row .product-usps {
  gap: 3px;
  font-size: 11px;
}

.homepage-products-loading,
.homepage-products-error,
.homepage-row-empty {
  grid-column: 1 / -1;
  margin: 0;
  padding: 26px 12px;
  color: var(--text-light);
  font-size: 14px;
  font-style: italic;
  text-align: center;
}

.homepage-products-error {
  color: #9a4535;
}

.homepage-nav-empty {
  padding: 18px 8px;
  color: var(--text-light);
  font-size: 12px;
  text-align: center;
}

@media (max-width: 1100px) {
  .homepage-category-row .tab-product-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 900px) {
  .tabbed-hero-container {
    display: block;
    padding: 12px 20px 20px;
  }

  .homepage-catalog-mascot {
    position: static;
    margin: 0 auto 6px;
  }

  .glass-vertical-tabs {
    position: sticky;
    top: 58px;
    width: calc(100% + 40px);
    margin: 0 -20px;
    padding: 10px 20px 12px;
    border-right: 0;
    border-radius: 0;
    z-index: 900;
  }

  .tab-content-container {
    width: 100%;
  }

  .homepage-category-row .tab-product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .homepage-category-row {
    scroll-margin-top: 92px;
  }
}

@media (max-width: 600px) {
  .tabbed-hero {
    padding: 56px 0 40px;
  }

  .homepage-catalog-mascot {
    width: 96px;
  }

  .glass-vertical-tabs {
    width: calc(100% + 72px);
    margin-left: -36px;
    margin-right: -36px;
    padding-left: 36px;
    padding-right: 36px;
  }

  .homepage-category-row .category-header-flex {
    flex-wrap: wrap;
    gap: 5px 14px;
  }

  .homepage-category-row .category-header-flex h2 {
    font-size: 28px;
  }

  .homepage-category-row .tab-product-grid {
    display: flex !important;
    flex-wrap: nowrap;
    gap: 12px;
    overflow-x: auto;
    padding-bottom: 12px;
    scroll-snap-type: x mandatory;
  }

  .homepage-category-row .tab-product-grid .product-card {
    flex: 0 0 42%;
    scroll-snap-align: start;
  }
}




/* Homepage mobile bottom navigation */
@media (max-width: 900px) {
  body {
    padding-bottom: calc(80px + env(safe-area-inset-bottom)) !important;
  }

  body header {
    top: auto !important;
    bottom: 0;
    left: 0;
    width: 100%;
    max-width: none;
    min-height: 68px;
    height: auto !important;
    padding-bottom: env(safe-area-inset-bottom);
    transform: none !important;
    border: 0;
    border-radius: 20px 20px 0 0;
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    box-shadow: 0 -8px 30px rgba(45, 74, 52, 0.16);
    transition: box-shadow 0.3s ease;
  }

  body header.nav-hidden {
    top: auto !important;
    opacity: 1 !important;
    pointer-events: auto !important;
    transform: none !important;
  }

  body .nav-container {
    height: 68px !important;
    padding: 0 18px !important;
  }

  body .logo {
    position: absolute;
    top: 50%;
    left: 50%;
    height: 38px;
    margin: 0 !important;
    transform: translate(-50%, -50%);
    z-index: 2;
  }

  body .mobile-search-btn {
    top: 50%;
    right: 18px;
    left: auto !important;
    width: 38px;
    height: 38px;
    transform: translateY(-50%);
    z-index: 3;
  }

  body .hamburger {
    top: 50%;
    right: auto;
    left: 18px;
    transform: translateY(-50%) !important;
    z-index: 3;
    transition: background-color 0.3s ease, border-color 0.3s ease;
  }

  body .hamburger:active,
  body .hamburger[aria-expanded="true"] {
    transform: translateY(-50%) !important;
    background: var(--primary-green);
    border-color: var(--primary-green);
  }

  body .hamburger:active span,
  body .hamburger[aria-expanded="true"] span {
    background: #fff;
  }

  body .nav-links {
    position: fixed;
    top: 0;
    right: 0;
    bottom: auto;
    left: 0;
    width: auto;
    max-height: none;
    height: calc(68px + env(safe-area-inset-top));
    margin: 0;
    padding: env(safe-area-inset-top) 16px 0;
    align-items: center;
    justify-content: center;
    overflow: visible;
    visibility: hidden;
    opacity: 0;
    pointer-events: none;
    transform-origin: calc(100% - 37px) calc(100vh - 34px);
    transform: scale(0.04);
    background: rgba(255, 255, 255, 0.78);
    border-bottom: 1px solid rgba(144, 180, 148, 0.32);
    border-radius: 0 0 18px 18px;
    box-shadow: 0 10px 28px rgba(45, 74, 52, 0.14);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    transition: opacity 0.32s ease, transform 0.45s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.32s ease;
  }

  body header.search-expanded .nav-links {
    max-height: none;
    height: calc(68px + env(safe-area-inset-top));
    padding: env(safe-area-inset-top) 16px 0;
    visibility: visible;
    opacity: 1;
    pointer-events: auto;
    transform: scale(1);
  }

  body .nav-item.dropdown,
  body .nav-links > .btn {
    display: none !important;
  }

  body .nav-search {
    align-self: center;
    width: 100%;
    min-width: 0;
    margin: 0 auto;
    padding: 4px 12px;
    background: rgba(45, 74, 52, 0.05);
    border-radius: 30px;
    box-shadow: none;
  }

  body .nav-search:focus-within {
    background: #ffffff;
    box-shadow: 0 8px 30px rgba(45, 74, 52, 0.22), 0 0 0 2px rgba(144, 180, 148, 0.4);
    transform: scaleX(1.025);
  }

  body .nav-search .search-input-wrapper {
    display: flex !important;
    width: 100% !important;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent !important;
    box-shadow: none;
  }

  body .nav-search .search-input {
    padding: 6px 0;
    font-size: 14px;
  }

  body .nav-search .typewriter-placeholder {
    left: 35px;
    font-size: 14px;
  }

  body .mobile-menu-overlay {
    top: auto;
    right: 12px;
    bottom: calc(68px + env(safe-area-inset-bottom) + 12px);
    left: 12px;
    width: auto;
    height: auto;
    max-height: calc(100vh - 104px);
    padding: 18px;
    overflow-y: auto;
    border: 1px solid rgba(144, 180, 148, 0.28);
    border-radius: 20px;
    box-shadow: 0 16px 40px rgba(45, 74, 52, 0.2);
    transform: translateY(calc(100% + 24px));
    opacity: 0;
    visibility: hidden;
    transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.25s ease, visibility 0.35s ease;
  }

  body .mobile-menu-overlay.active {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  body .mobile-menu-links {
    gap: 2px;
    padding-top: 20px;
  }

  body .mobile-menu-links a {
    padding: 10px 8px;
    border-bottom: 1px solid rgba(45, 74, 52, 0.08);
    font-size: 18px;
  }

  body .mobile-menu-links a:last-child {
    border-bottom: 0;
  }

  body .close-menu {
    top: 8px;
    right: 12px;
    font-size: 28px;
  }

  body.homepage .glass-vertical-tabs {
    display: none !important;
  }

  body.homepage .tabbed-hero {
    padding-top: 28px;
  }

  body.homepage .homepage-category-row {
    scroll-margin-top: 28px;
  }

}
