/* CSS Variables for Nature Theme */
:root {
  --primary-green: #2d5a27;
  --secondary-green: #4a7c59;
  --light-green: #86a66f;
  --earth-brown: #8b5a2b;
  --light-brown: #d2b48c;
  --cream: #f5f0e6;
  --dark-text: #333;
  --light-text: #fff;
  --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  --transition: all 0.3s ease;
  --mobile-nav-offset: 70px;

  /* Typography Scale */
  --font-family-primary: "Inter", sans-serif;
  --font-family-secondary: "Playfair Display", serif;

  /* Font Sizes */
  --text-xs: 0.75rem;
  --text-sm: 0.875rem;
  --text-base: 1rem;
  --text-lg: 1.125rem;
  --text-xl: 1.25rem;
  --text-2xl: 1.5rem;
  --text-3xl: 1.875rem;
  --text-4xl: 2.25rem;
  --text-5xl: 3rem;
  --text-6xl: 3.75rem;
  --section-spacing: 1rem;

  /* Font Weights */
  --font-thin: 300;
  --font-light: 400;
  --font-normal: 500;
  --font-medium: 600;
  --font-semibold: 700;
  --font-bold: 800;
}

/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: var(--font-family-primary);
  line-height: 1.6;
  color: var(--dark-text);
  background-color: var(--cream);
  font-size: var(--text-base);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
}

/* Typography System */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-family-secondary);
  line-height: 1.2;
  margin: 0;
}

/* Heading Hierarchy */
h1 {
  font-size: var(--text-6xl);
  font-weight: var(--font-semibold);
  margin-bottom: var(--text-xl);
}

h2 {
  font-size: var(--text-5xl);
  font-weight: var(--font-semibold);
  margin-bottom: var(--text-2xl);
  color: var(--primary-green);
  text-align: center;
}

h3 {
  font-size: var(--text-3xl);
  font-weight: var(--font-semibold);
  margin-bottom: var(--text-xl);
  color: var(--primary-green);
}

h4 {
  font-size: var(--text-2xl);
  font-weight: var(--font-medium);
  margin-bottom: var(--text-lg);
  color: var(--secondary-green);
}

h5 {
  font-size: var(--text-xl);
  font-weight: var(--font-medium);
  margin-bottom: var(--text-base);
  color: var(--primary-green);
}

h6 {
  font-size: var(--text-lg);
  font-weight: var(--font-medium);
  margin-bottom: var(--text-base);
  color: var(--secondary-green);
}

/* Body Text */
p {
  margin-bottom: var(--text-lg);
  font-size: var(--text-base);
  line-height: 1.6;
  font-weight: var(--font-light);
}

/* Small Text */
.small-text {
  font-size: var(--text-sm);
  color: #666;
  font-weight: var(--font-light);
}

/* Large Text */
.large-text {
  font-size: var(--text-xl);
  line-height: 1.6;
  font-weight: var(--font-normal);
}

/* Navigation Text */
.nav-text {
  font-family: var(--font-family-primary);
  font-weight: var(--font-medium);
  font-size: var(--text-base);
}

/* Button Text */
.btn-text {
  font-family: var(--font-family-primary);
  font-weight: var(--font-semibold);
  font-size: var(--text-base);
}

/* Section Titles */
.section-title {
  position: relative;
  display: table;
  width: fit-content;
  max-width: 100%;
  margin: 0 auto 3rem;
  font-family: var(--font-family-secondary);
  font-weight: var(--font-semibold);
  font-size: var(--text-4xl);
  color: var(--primary-green);
  text-align: center;
}

.section-title::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 100%;
  height: 3px;
  background-color: var(--light-green);
  border-radius: 2px;
}

.section-title {
  position: relative;
  display: table;
  width: fit-content;
  max-width: 100%;
  margin: 0 auto 3rem;
  text-align: center;
}

.section-title::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 100%;
  height: 3px;
  background-color: var(--light-green);
  border-radius: 2px;
}

/* Explore Products Title - White color with 20% larger font */
.explore-products {
  color: #ffffff !important;
  font-size: 2.7rem !important;
}

/* Navigation */
.navbar {
  background-color: var(--primary-green);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: var(--shadow);
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1rem 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo a {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  color: var(--light-text);
}

.logo img {
  height: 80px;
  width: auto;
  transition: var(--transition);
  background-color: white;
  border-radius: 8px;
  display: block;
}

.logo-text {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.logo .footer-brand {
  display: inline-block;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--light-text);
  line-height: 1.1;
}

.logo .footer-tagline {
  font-size: 0.9rem;
  color: var(--light-text);
  opacity: 0.9;
  line-height: 1.3;
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 2rem;
}

.nav-menu a {
  color: var(--light-text);
  text-decoration: none;
  font-weight: 500;
  transition: var(--transition);
  position: relative;
  font-size: 1.2rem;
}

.nav-menu a:hover {
  color: var(--light-brown);
}

.nav-menu a::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--light-brown);
  transition: var(--transition);
}

.nav-menu a:hover::after {
  width: 100%;
}

.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
}

.bar {
  width: 25px;
  height: 3px;
  background-color: var(--light-text);
  margin: 3px 0;
  transition: var(--transition);
}

/* Hero Section */
.hero {
  position: relative;
  min-height: 80vh;
  background-color: var(--primary-green);
  color: var(--light-text);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.18) 0%,
    rgba(0, 0, 0, 0.3) 45%,
    rgba(0, 0, 0, 0.5) 100%
  );
  z-index: 2;
}

.hero-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  z-index: 3;
  max-width: 800px;
  width: min(700px, calc(100% - 2rem));
  padding: 2rem;
  background: rgba(45, 90, 39, 0.88);
  border-radius: 15px;
  backdrop-filter: blur(10px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.hero-content h1 {
  color: var(--light-text);
  margin-bottom: 1.5rem;
  font-size: 3.5rem;
  line-height: 1.15;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-content p {
  font-size: 1.2rem;
  margin-bottom: 1rem;
  opacity: 1;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.98);
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.35);
}

/* Ensure hero content doesn't cover controls */
.hero-content {
  max-width: 700px;
  padding: 1.5rem;
}

.hero-content h1 {
  font-size: 3rem;
}

.hero-content p {
  font-size: 1.1rem;
}

.hero-slider {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  overflow: hidden;
}

.slider-container {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: all 1.5s ease-in-out;
  transform: scale(1);
}

.slide.active {
  opacity: 1;
  transform: scale(1);
}

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

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Hero section overlay text animation */
.hero-content h1 {
  animation: slideInLeft 1s ease-out;
}

.hero-content p {
  animation: slideInRight 1s ease-out 0.2s both;
}

.hero-content p:nth-child(3) {
  animation: slideInLeft 1s ease-out 0.4s both;
}

/* Details Section */
.details {
  padding: 4rem 0;
  background-color: var(--cream);
}

.details .container {
  background-color: var(--light-text);
  padding: 3rem;
  border-radius: 10px;
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}

.details .container::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background-color: var(--light-green);
}

.details h2 {
  text-align: left;
  margin-bottom: var(--text-2xl);
  font-family: var(--font-family-secondary);
  font-weight: var(--font-semibold);
  font-size: var(--text-5xl);
  color: var(--primary-green);
}

.details p {
  font-size: var(--text-base);
  line-height: 1.8;
  color: #555;
  font-weight: var(--font-light);
}

/* Products Section */
.products {
  padding: 4rem 0;
  background-color: var(--light-green);
  color: var(--light-text);
}

.products-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.product-card {
  background-color: var(--light-text);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
  position: relative;
}

.product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.product-card img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  transition: var(--transition);
}

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

.card-content {
  padding: 2rem;
}

.card-content h3 {
  color: var(--primary-green);
  margin-bottom: 1rem;
}

.card-content p {
  color: #666;
  margin-bottom: 1rem;
}

.quote {
  font-style: italic;
  color: var(--secondary-green);
  font-weight: 600;
  margin-bottom: 2rem;
}

.btn {
  display: inline-block;
  background-color: var(--primary-green);
  color: var(--light-text);
  padding: 12px 30px;
  text-decoration: none;
  border-radius: 5px;
  font-weight: 600;
  transition: var(--transition);
  border: 2px solid transparent;
}

.btn:hover {
  background-color: transparent;
  color: var(--primary-green);
  border-color: var(--primary-green);
}

.product-info h3 {
  color: var(--light-text);
  margin-bottom: 2rem;
}

.product-info ul {
  list-style: none;
  padding-left: 0;
}

.product-info li {
  padding: 0.5rem 0;
  position: relative;
  padding-left: 20px;
}

.product-info li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--cream);
  font-weight: bold;
}

/* BOOMI Story Video Section */
.boomi-story {
  background-color: var(--cream);
}

.boomi-story-video {
  max-width: 960px;
  margin: 0 auto;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 18px 40px rgba(45, 90, 39, 0.12);
  background-color: #000;
}

.boomi-story-video iframe {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  border: 0;
}

/* Why Partner Section */
.why-partner {
  padding: 4rem 0;
  background-color: var(--cream);
}

.why-partner .container {
  text-align: center;
}

.why-partner-content {
  display: flex;
  gap: 3rem;
  align-items: flex-start;
  text-align: left;
}

.why-partner-image {
  flex: 0 0 40%;
  max-width: 40%;
}

.why-partner-image img {
  width: 100%;
  height: auto;
  border-radius: 10px;
}

.why-partner-content .tiles-grid {
  flex: 1;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

@media (max-width: 992px) {
  .why-partner-content {
    flex-direction: column;
  }

  .why-partner-image {
    flex: 0 0 100%;
    max-width: 100%;
  }

  .why-partner-content .tiles-grid {
    grid-template-columns: 1fr;
  }
}

.subtitle {
  font-size: var(--text-xl);
  color: var(--primary-green);
  font-weight: var(--font-semibold);
  margin-bottom: var(--text-lg);
  font-family: var(--font-family-secondary);
}

.description {
  font-size: var(--text-lg);
  color: #666;
  margin-bottom: var(--text-4xl);
  font-weight: var(--font-light);
}

.tiles-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: var(--text-lg);
}

.tile {
  background-color: var(--light-text);
  padding: var(--text-lg);
  border-radius: 0 30px;
  box-shadow: var(--shadow);
  transition: var(--transition);
  text-align: left;
  border-top: 5px solid var(--light-green);
}

.tile:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.tile-icon {
  font-size: 3rem;
  margin-bottom: var(--text-lg);
}

.tile h3 {
  margin-bottom: var(--text-xl);
  font-family: var(--font-family-secondary);
  font-weight: var(--font-semibold);
  color: var(--primary-green);
}

.tile ul {
  list-style: none;
  padding-left: 0;
  margin-bottom: var(--text-lg);
}

.tile li {
  padding: 0.5rem 0;
  border-bottom: 1px solid #eee;
  position: relative;
  padding-left: 20px;
}

.tile li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--light-green);
  font-size: 1.5rem;
  line-height: 1;
}

/* Eco-Friendly Section */
.eco-friendly {
  padding: 40px 0;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.eco-friendly .subtitle {
  text-align: center;
  font-size: 1.2rem;
  color: #666;
  margin-bottom: 40px;
}

.eco-images-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  max-width: 1000px;
  margin: 0 auto;
}

.eco-image-item {
  background: transparent;
  border-radius: 15px;
  padding: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
}

.eco-image-item img {
  max-width: 120px !important;
  max-height: 120px;
  width: auto !important;
  height: auto;
  object-fit: contain;
}

/* From Nature to Table Section */
.from-nature-to-table {
  padding: 80px 20px;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.from-nature-to-table .section-subtitle {
  text-align: center;
  font-size: 1.4rem;
  color: #666;
  margin-top: -20px;
  margin-bottom: 50px;
  font-weight: 700;
}

.sustainable-dining-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.dining-image-item {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.dining-image-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.dining-image-item img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  display: block;
}

.dining-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
  color: white;
  padding: 40px 20px 20px;
  font-size: 1.1rem;
  font-weight: 500;
  text-align: center;
}

/* Footer */
.footer {
  background-color: var(--primary-green);
  color: var(--light-text);
  padding: 3rem 0 1rem;
  margin-top: auto;
}

.footer .container {
  padding-top: 0;
  padding-bottom: 0;
}

.footer-content {
  display: grid;
  grid-template-columns: minmax(200px, 0.95fr) minmax(160px, 0.8fr) minmax(340px, 1.6fr);
  gap: 2rem;
  margin-bottom: 2rem;
  align-items: start;
}

.footer-logo,
.footer-links,
.footer-contact {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1rem;
}

.footer-logo a {
  display: inline-flex;
}

.footer-logo img {
  height: 80px;
  background-color: white;
  border-radius: 8px;
  display: block;
}

.footer-logo p {
  margin: 0;
  font-size: 1.1rem;
  line-height: 1.5;
  opacity: 0.9;
}

.footer-logo .footer-brand {
  display: inline-block;
  font-size: 1.5rem;
  font-weight: 700;
}

.footer-logo .footer-tagline {
  font-size: 0.9rem;
}

.footer-links h3,
.footer-contact h3 {
  margin-bottom: 0;
  font-size: var(--text-2xl);
  font-family: var(--font-family-secondary);
  font-weight: var(--font-semibold);
  color: var(--light-text);
}

.footer-links ul {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.75rem;
  width: 100%;
}

.footer-links a,
.footer-contact a {
  color: var(--light-text);
  text-decoration: none;
  transition: var(--transition);
  font-family: var(--font-family-primary);
  font-weight: var(--font-light);
  font-size: var(--text-base);
}

.footer-links a:hover,
.footer-contact a:hover {
  color: var(--light-brown);
}

.footer-contact p {
  margin: 0;
  opacity: 0.9;
  font-family: var(--font-family-primary);
  font-weight: var(--font-light);
  font-size: var(--text-base);
  line-height: 1.7;
  word-break: break-word;
}

.footer-contact .footer-contact-label {
  font-weight: var(--font-semibold);
  color: var(--light-text);
}

.footer-bottom {
  text-align: center;
  padding-top: var(--text-2xl);
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  opacity: 0.8;
  font-family: var(--font-family-primary);
  font-weight: var(--font-light);
  font-size: var(--text-base);
}

/* Responsive Design */
@media (max-width: 992px) {
  .hero {
    min-height: 60vh;
  }

  .hero-content {
    max-width: 90%;
    padding: 1.5rem;
    background: rgba(45, 90, 39, 0.9);
  }

  .hero-content h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
  }

  .hero-content p {
    font-size: 1rem;
    margin-bottom: 0.75rem;
    line-height: 1.5;
  }

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

  .footer-content {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 2rem;
  }

  .footer-logo {
    grid-column: 1 / -1;
    align-items: center;
    text-align: center;
  }
}

@media (max-width: 768px) {
  h1 {
    font-size: 2rem;
  }

  h2 {
    font-size: 2rem;
  }

  .hero {
    min-height: 72vh;
    min-height: 72svh;
  }

  .hero-content {
    width: calc(100% - 2rem);
    max-width: 34rem;
    padding: 1.5rem 1.25rem;
    border-radius: 12px;
  }

  .hero-content h1 {
    font-size: 2.1rem;
    margin-bottom: 0.9rem;
    line-height: 1.2;
  }

  .hero-content p {
    font-size: 1.05rem;
    margin-bottom: 0.75rem;
    line-height: 1.55;
  }

  .nav-menu {
    position: fixed;
    left: -100%;
    top: var(--mobile-nav-offset);
    flex-direction: column;
    background-color: var(--primary-green);
    width: 100%;
    text-align: center;
    transition: var(--transition);
    height: calc(100vh - var(--mobile-nav-offset));
    height: calc(100dvh - var(--mobile-nav-offset));
    overflow-y: auto;
    padding: 1.5rem 0 2rem;
    box-shadow: var(--shadow);
  }

  .nav-menu.active {
    left: 0;
  }

  .nav-menu li {
    margin: 1rem 0;
  }

  .hamburger {
    display: flex;
  }

  .nav-container {
    padding: 0.75rem 16px;
    gap: 1rem;
  }

  .logo img {
    height: 64px;
  }

  .logo a {
    gap: 0.6rem;
  }

  .logo .footer-brand {
    font-size: 1.25rem;
  }

  .logo .footer-tagline {
    font-size: 0.75rem;
  }

  .hamburger.active .bar:nth-child(2) {
    opacity: 0;
  }

  .hamburger.active .bar:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }

  .hamburger.active .bar:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }

  .footer-content {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-logo,
  .footer-links,
  .footer-contact {
    align-items: center;
  }

  .footer-links ul {
    grid-template-columns: 1fr;
    max-width: 280px;
  }

  .footer-contact {
    max-width: 320px;
    margin: 0 auto;
  }
}

@media (max-width: 480px) {
  h1 {
    font-size: 1.5rem;
  }

  h2 {
    font-size: 1.5rem;
  }

  .hero {
    min-height: 68vh;
    min-height: 68svh;
  }

  .hero-content {
    width: calc(100% - 1.5rem);
    max-width: none;
    padding: 1.25rem 1rem;
    border-radius: 10px;
  }

  .hero-content h1 {
    font-size: 1.8rem;
    margin-bottom: 0.75rem;
    line-height: 1.18;
  }

  .hero-content p {
    font-size: 1rem;
    margin-bottom: 0.6rem;
    line-height: 1.5;
  }

  .details .container {
    padding: 2rem;
  }

  .product-card img {
    height: 300px;
  }
}

/* Lazy Loading Animation */
img {
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
}

img.lazy-loaded {
  opacity: 1;
}

/* Scroll Animation */
@keyframes slideInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.animate-on-scroll {
  animation: slideInUp 0.6s ease-out;
}

/* Products Grid Section */
.products-grid-section {
  padding: 4rem 0;
  background-color: var(--cream);
}

.products-grid-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

/* Responsive Grid */
@media (max-width: 768px) {
  .products-grid-container {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
  }
}

@media (max-width: 480px) {
  .products-grid-container {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}

.product-item {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  box-shadow: var(--shadow);
  transition: var(--transition);
}

.product-item img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  transition: var(--transition);
}

.product-item:hover img {
  transform: scale(1.1);
}

.product-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
  color: var(--light-text);
  padding: 2rem;
  transform: translateY(100%);
  transition: var(--transition);
}

.product-item:hover .product-overlay {
  transform: translateY(0);
}

.product-overlay h3 {
  color: var(--light-text);
  margin-bottom: 0.5rem;
}

/* Product Card Styles */
.product-card {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
  cursor: pointer;
  background: linear-gradient(to bottom, var(--light-text), #f9f9f9);
}

.product-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.product-card-image {
  width: 100%;
  height: 250px;
  overflow: hidden;
}

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

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

.product-card-content {
  padding: 1.5rem;
  text-align: center;
}

.product-card-content h3 {
  color: var(--primary);
  margin-bottom: 0.5rem;
  font-size: 1.4rem;
}

.product-card-content p {
  color: var(--dark-text);
  font-size: 0.95rem;
  opacity: 0.8;
}

/* Section Subtitle */
.section-subtitle {
  text-align: center;
  color: var(--dark-text);
  opacity: 0.8;
  margin-top: 1rem;
  font-size: 1.1rem;
  font-weight: 700;
}

/* Gallery Modal Styles */
.gallery-modal {
  display: none;
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow-x: hidden;
  overflow-y: auto;
  background: rgba(18, 28, 20, 0.62);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.gallery-modal.active {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(1rem, 3vw, 2rem);
  animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.gallery-modal-content {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(247, 243, 236, 0.96) 100%);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  margin: 0;
  padding: clamp(1.5rem, 3vw, 2.5rem);
  border-radius: 28px;
  border: 1px solid rgba(255, 255, 255, 0.75);
  max-width: 980px;
  width: 100%;
  max-height: min(88vh, 760px);
  overflow: hidden;
  position: relative;
  animation: slideUp 0.4s ease;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.28),
              inset 0 1px 0 rgba(255, 255, 255, 0.6);
}

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

.gallery-modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(45, 90, 39, 0.12);
}

.gallery-close {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(45, 90, 39, 0.08);
  border: 1px solid rgba(45, 90, 39, 0.12);
  color: var(--primary-green);
  font-size: 1.8rem;
  font-weight: 300;
  line-height: 1;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.gallery-close:hover {
  background: rgba(45, 90, 39, 0.14);
  border-color: rgba(45, 90, 39, 0.18);
  transform: translateY(-1px);
}

.gallery-close:focus-visible {
  outline: 3px solid rgba(134, 166, 111, 0.35);
  outline-offset: 2px;
}

.gallery-modal-content h2 {
  margin: 0;
  color: var(--primary-green);
  font-family: var(--font-family-secondary);
  font-size: clamp(2rem, 4vw, 2.6rem);
  font-weight: 700;
  line-height: 1.1;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 280px));
  justify-content: center;
  align-content: start;
  gap: 1.25rem;
  min-height: 0;
  padding: 0.25rem;
  overflow-y: auto;
  visibility: visible;
  opacity: 1;
}

.gallery-item {
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  background: #ffffff;
  border: 1px solid rgba(45, 90, 39, 0.08);
  min-height: 200px;
  display: block;
}

.gallery-item:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.16);
}

.gallery-item img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
  min-height: 220px;
}

/* Gallery Modal Responsive */
@media (max-width: 768px) {
  .gallery-modal.active {
    align-items: flex-start;
  }

  .gallery-modal-content {
    max-height: calc(100vh - 2rem);
    border-radius: 22px;
  }

  .gallery-modal-content h2 {
    font-size: 1.75rem;
  }

  .gallery-grid {
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 1rem;
  }

  .gallery-item img {
    height: 180px;
    min-height: 180px;
  }
}

@media (max-width: 480px) {
  .gallery-modal-header {
    align-items: flex-start;
  }

  .gallery-close {
    width: 40px;
    height: 40px;
    font-size: 1.6rem;
  }

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

  .gallery-item img {
    height: 220px;
    min-height: 220px;
  }
}

.about-product-focus-section {
  padding: 4rem 2rem;
  background-color: #f9f9f9;
}

.about-vision-shared-block {
  background-color: var(--light-green);
}

.about-product-focus-wrapper {
  display: flex;
  align-items: stretch;
  gap: 0;
  max-width: 1200px;
  margin: 0 auto;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  border-radius: 8px;
  overflow: hidden;
}

.about-product-focus-image {
  flex: 0 0 50%;
  min-height: 400px;
}

.about-product-focus-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.about-product-focus-text {
  flex: 0 0 50%;
  padding: 3rem;
  background-color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.about-focus-title {
  font-size: 1.8rem;
  color: #1a1a1a;
  font-weight: 700;
  margin-bottom: 0.5rem;
  font-family: 'Playfair Display', serif;
}

.about-focus-intro {
  font-size: 1.1rem;
  color: #333;
  font-weight: 500;
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.about-product-focus-text > p:not(.about-focus-intro) {
  font-size: 1rem;
  color: #555;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.about-focus-category {
  background-color: #f5f5f5;
  padding: 1.5rem;
  border-radius: 6px;
  border-left: 4px solid #2e7d32;
}

.about-focus-category h4 {
  color: #2e7d32;
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  font-family: 'Inter', sans-serif;
}

.about-focus-category p {
  color: #666;
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 0.5rem;
}

.about-focus-category p:last-child {
  margin-bottom: 0;
}

.about-future-list p,
.about-commitment-list p {
  font-size: 1.225rem;
  line-height: 1.7;
}

.about-story-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  border-radius: 8px;
  overflow: hidden;
}

.about-story-image {
  width: 100%;
  height: auto;
  display: block;
}

@media (max-width: 900px) {
  .about-product-focus-section {
    padding: 2rem 1rem;
  }

  .about-product-focus-wrapper {
    flex-direction: column;
  }

  .about-product-focus-image,
  .about-product-focus-text {
    flex: none;
    width: 100%;
  }

  .about-product-focus-image {
    min-height: 300px;
  }

  .about-product-focus-text {
    padding: 2rem;
  }
}

/* Our Mission Section */
.about-mission-section {
  padding: 5rem 2rem;
  background-color: var(--cream);
}

.about-mission-header {
  text-align: center;
  margin-bottom: 2.25rem;
}

.about-mission-title {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  color: var(--secondary-green);
  margin-bottom: 0.75rem;
  font-weight: 800;
}

.about-mission-subtitle {
  font-size: 1.3rem;
  color: var(--secondary-green);
  font-weight: 700;
  line-height: 1.6;
  max-width: 700px;
  margin: 0 auto;
}

.about-mission-intro {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 2.5rem;
}

.about-mission-intro p {
  font-size: 1.05rem;
  color: var(--dark-text);
  line-height: 1.8;
  margin-bottom: 0.75rem;
}

.about-mission-intro p.about-mission-commitment {
  font-weight: 800;
  color: var(--secondary-green);
  margin-top: 1.25rem;
  font-size: 2rem !important;
  line-height: 1.15;
  letter-spacing: 0.01em;
  text-transform: none;
}

.about-mission-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.75rem;
  max-width: 1400px;
  margin: 0 auto;
}

.about-mission-card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid rgba(74, 124, 89, 0.18);
}

.about-mission-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.about-mission-card-image {
  width: 100%;
  height: 200px;
  overflow: hidden;
  background: #f5f5f5;
}

.about-mission-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-mission-card-content {
  padding: 1.5rem;
}

.about-mission-card-content h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  color: var(--secondary-green);
  margin-bottom: 0.75rem;
  font-weight: 700;
}

.about-mission-card-content p {
  font-size: 0.9rem;
  color: var(--dark-text);
  line-height: 1.6;
}

.about-mission-footer {
  text-align: center;
  margin-top: 3rem;
  padding-top: 1.75rem;
  border-top: 2px solid var(--light-green);
}

.about-mission-footer p {
  font-size: 1.2rem;
  color: var(--secondary-green);
  font-weight: 600;
  line-height: 1.8;
}

/* Responsive Styles for Mission Section */
@media (max-width: 1200px) {
  .about-mission-cards {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .about-mission-title {
    font-size: 2rem;
  }
  
  .about-mission-subtitle {
    font-size: 1.1rem;
  }
  
  .about-mission-cards {
    grid-template-columns: 1fr;
  }
  
  .about-mission-card-image {
    height: 180px;
  }
}

/* Our Vision + The Future We Are Building Sections */
.about-vision-section,
.about-future-section {
  padding: 5rem 2rem;
  background-color: var(--light-green);
  color: var(--light-text);
}

.about-vision-header,
.about-future-header {
  text-align: center;
  margin-bottom: 2rem;
}

.about-vision-title,
.about-future-title {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  color: var(--cream);
  margin: 0;
}

.about-vision-title {
  margin-bottom: 1rem;
}

.about-vision-tagline {
  font-size: 1.4rem;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 600;
}

.about-future-intro {
  text-align: center;
  margin-bottom: 3rem;
}

.about-future-intro p {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.85);
}

.about-vision-card-grid,
.about-future-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 2rem;
  max-width: 1200px;
}

.about-vision-card-grid {
  margin: 0 auto;
}

.about-future-grid {
  margin: 0 auto;
  grid-template-columns: repeat(4, 1fr);
}

.about-vision-feature-card,
.about-future-card {
  border-radius: 15px;
  transition: all 0.3s ease;
}

.about-vision-feature-card {
  background: linear-gradient(180deg, #fffdf8 0%, #f5f0e6 100%);
  padding: 2rem;
  border: 1px solid rgba(45, 90, 39, 0.14);
  box-shadow: 0 18px 40px rgba(24, 48, 21, 0.16);
  color: var(--dark-text);
}

.about-vision-feature-card:hover,
.about-future-card:hover {
  transform: translateY(-5px);
}

.about-vision-feature-header {
  margin-bottom: 1.5rem;
}

.about-vision-feature-label {
  display: inline-block;
  margin-bottom: 0.85rem;
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  background: rgba(74, 124, 89, 0.12);
  color: var(--secondary-green);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.about-vision-feature-header h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.85rem;
  color: var(--primary-green);
  line-height: 1.3;
  margin: 0;
}

.about-vision-feature-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.about-vision-feature-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.1rem 1.15rem;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(74, 124, 89, 0.12);
}

.about-vision-feature-icon,
.future-card-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.about-vision-feature-icon {
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--secondary-green), var(--primary-green));
  color: var(--light-text);
  font-size: 1.15rem;
  font-weight: 700;
  flex-shrink: 0;
}

.about-vision-feature-card:first-child .about-vision-feature-icon {
  width: auto;
  height: auto;
  border-radius: 0;
  background: none;
  color: var(--secondary-green);
  font-size: 1.5rem;
}

.about-vision-feature-card:last-child .about-vision-feature-icon {
  width: auto;
  height: auto;
  border-radius: 0;
  background: none;
  color: var(--secondary-green);
  font-size: 1.4rem;
}

.future-card-icon {
  font-size: 3rem;
  display: block;
  margin-bottom: 1rem;
}

.about-vision-feature-item p {
  font-size: 1.1rem;
  color: var(--dark-text);
  font-weight: 600;
  margin: 0;
  line-height: 1.4;
}

.about-future-card h3 {
  font-size: 1.1rem;
  color: var(--cream);
  margin: 0;
  line-height: 1.4;
}

.about-future-card h3 {
  font-family: 'Playfair Display', serif;
}

/* Our Commitment Section */
.about-commitment-section {
  padding: 5rem 2rem;
  background-color: var(--cream);
}

.about-commitment-content {
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
}

.about-commitment-title {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  color: var(--secondary-green);
  margin-bottom: 2.5rem;
}

.about-commitment-statements {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.commitment-statement {
  font-size: 1.3rem;
  color: var(--dark-text);
  margin: 0;
}

.commitment-statement.emphasis {
  font-size: 1.5rem;
  font-weight: 600;
  padding-top: 1rem;
  border-top: 2px solid var(--light-green);
}

/* Nurturing Nature Section */
.about-nurturing-section {
  padding: 5rem 2rem;
  background: linear-gradient(135deg, #f8f9f5 0%, #e8f5e9 100%);
}

.about-nurturing-header {
  text-align: center;
  margin-bottom: 3rem;
}

.about-nurturing-title {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  color: var(--secondary-green);
  margin-bottom: 1rem;
}

.about-nurturing-subtitle {
  font-size: 1.1rem;
  color: #555;
  max-width: 600px;
  margin: 0 auto;
}

.about-nurturing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
  max-width: 1100px;
  margin: 0 auto;
}

.about-nurturing-card {
  background: #fff;
  border-radius: 12px;
  padding: 1.5rem;
  text-align: center;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.about-nurturing-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.14);
}

.about-nurturing-image {
  width: 75px;
  height: 75px;
  margin: 0 auto 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-nurturing-image img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.about-nurturing-content h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem;
  color: var(--secondary-green);
  margin-bottom: 0.5rem;
}

.about-nurturing-content p {
  font-size: 0.88rem;
  color: #666;
  line-height: 1.5;
  margin: 0;
}

/* Responsive Styles for New Sections */
@media (max-width: 1024px) {
  .about-future-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .about-vision-title,
  .about-future-title {
    font-size: 1.8rem;
  }
  
  .about-vision-tagline {
    font-size: 1.1rem;
  }

  .about-vision-card-grid,
  .about-future-grid {
    grid-template-columns: 1fr;
  }

  .about-vision-feature-card {
    padding: 1.5rem;
  }

  .about-vision-feature-header h3 {
    font-size: 1.55rem;
  }

  .about-vision-feature-item p {
    font-size: 1rem;
  }
  
  .about-commitment-title {
    font-size: 1.8rem;
  }
  
  .commitment-statement {
    font-size: 1.1rem;
  }
  
  .commitment-statement.emphasis {
    font-size: 1.2rem;
  }
}

/* Mission and Vision Sections */
.mission-section,
.vision-section {
  padding: 4rem 0;
  background-color: var(--light-green);
  color: var(--light-text);
}

.mission-items,
.vision-items {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
  margin: 2rem 0;
}

.mission-item,
.vision-item {
  background-color: rgba(255, 255, 255, 0.1);
  padding: 1.5rem;
  border-radius: 8px;
  text-align: center;
  backdrop-filter: blur(5px);
}

/* Empowerment Sections */
.empowerment-section {
  padding: 4rem 0;
  background-color: var(--cream);
}

.empowerment-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  margin-top: 3rem;
}

.empowerment-card {
  background-color: var(--light-text);
  padding: 2rem;
  border-radius: 10px;
  box-shadow: var(--shadow);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.empowerment-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.empowerment-card h2 {
  color: var(--primary-green);
  margin-bottom: 1.5rem;
  text-align: left;
  font-size: 1.8rem;
}

.empowerment-content {
  text-align: left;
}

.empowerment-content ul {
  list-style: none;
  padding-left: 0;
  margin: 2rem 0;
}

.empowerment-content li {
  padding: 0.5rem 0;
  border-bottom: 1px solid #eee;
  position: relative;
  padding-left: 20px;
  text-align: left;
}

.empowerment-content li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--light-green);
  font-weight: bold;
}

/* Responsive Design for Empowerment Grid */
@media (max-width: 768px) {
  .empowerment-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .empowerment-card h2 {
    font-size: 1.5rem;
  }
}

.closing-statement {
  padding: 4rem 0;
  background-color: var(--primary-green);
  color: var(--light-text);
  text-align: center;
}

/* Contact Section Styles */
.contact-info {
  padding: 4rem 0;
  background-color: var(--cream);
}

.contact-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  margin-top: 3rem;
}

/* Mobile: Stack contact sections */
@media (max-width: 768px) {
  .contact-content {
    grid-template-columns: 1fr;
  }
}

.contact-details h3 {
  color: var(--primary-green);
  margin-bottom: 0;
}

.contact-card-header {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.contact-details {
  background-color: var(--light-text);
  padding: 2.5rem;
  border-radius: 10px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 1.5rem;
  height: 100%;
  text-align: left;
}

.contact-item {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.35rem;
  margin-bottom: 0;
}

.contact-item h4 {
  color: var(--primary-green);
  margin-bottom: 0;
}

.contact-card-header p,
.contact-item p {
  margin: 0;
}

.contact-image img {
  width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: var(--shadow);
}

/* Contact Form Styles */
.contact-form-section {
  padding: 4rem 0;
  background-color: var(--light-green);
  color: var(--light-text);
}

.contact-form {
  max-width: 600px;
  margin: 0 auto;
  background-color: rgba(255, 255, 255, 0.1);
  padding: 3rem;
  border-radius: 10px;
  backdrop-filter: blur(10px);
}

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

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 1rem;
  border: none;
  border-radius: 5px;
  font-family: "Inter", sans-serif;
  font-size: 1rem;
  transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: 2px solid var(--light-green);
  background-color: rgba(255, 255, 255, 0.9);
}

.contact-form button {
  width: 100%;
  padding: 1.2rem;
  background-color: var(--primary-green);
  color: var(--light-text);
  border: none;
  border-radius: 5px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
}

.contact-form button:hover {
  background-color: var(--light-text);
  color: var(--primary-green);
  transform: translateY(-2px);
}

/* Brochure Section Styles */
.brochure-section {
  padding: 4rem 0;
  background-color: var(--cream);
}

.brochure-content {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 3rem;
  margin-top: 3rem;
}

/* Mobile: Reorder brochure sections - show download first on mobile */
@media (max-width: 768px) {
  .brochure-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .brochure-download {
    order: -1;
  }

  .brochure-info,
  .download-card {
    padding: 1.5rem;
  }

  .download-icon {
    font-size: 3rem;
  }
}

.brochure-info h3 {
  color: var(--primary-green);
  margin-bottom: 1.5rem;
}

.brochure-info ul {
  list-style: none;
  padding-left: 0;
}

.brochure-info li {
  padding: 0.5rem 0;
  border-bottom: 1px solid #eee;
  position: relative;
  padding-left: 20px;
}

.brochure-info li::before {
  content: "📄";
  position: absolute;
  left: 0;
  color: var(--light-green);
}

.download-card {
  background-color: var(--light-text);
  padding: 2rem;
  border-radius: 10px;
  text-align: center;
  box-shadow: var(--shadow);
  transition: var(--transition);
}

.download-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.download-icon {
  font-size: 4rem;
  margin-bottom: 1rem;
}

.download-card h3 {
  color: var(--primary-green);
  margin-bottom: 1rem;
}

.file-size {
  color: #666;
  margin-bottom: 2rem;
  font-style: italic;
}

.download-btn {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  background-color: var(--primary-green);
  color: var(--light-text);
  padding: 1rem 2rem;
  text-decoration: none;
  border-radius: 5px;
  font-weight: 600;
  transition: var(--transition);
}

.download-btn:hover {
  background-color: var(--light-text);
  color: var(--primary-green);
  transform: scale(1.05);
}

.download-icon-small {
  font-size: 1.2rem;
}

/* Resources Section */
.resources-section {
  padding: 4rem 0;
  background-color: var(--light-green);
  color: var(--light-text);
}

.resources-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.resource-card {
  background-color: rgba(255, 255, 255, 0.1);
  padding: 2rem;
  border-radius: 10px;
  text-align: center;
  backdrop-filter: blur(10px);
  transition: var(--transition);
}

.resource-card:hover {
  transform: translateY(-5px);
  background-color: rgba(255, 255, 255, 0.2);
}

.resource-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.resource-card h3 {
  color: var(--cream);
  margin-bottom: 1rem;
}

.resource-link {
  color: var(--light-green);
  text-decoration: none;
  font-weight: 600;
  font-size: 1.1rem;
  transition: var(--transition);
}

.resource-link:hover {
  color: var(--primary-green);
  text-decoration: underline;
}

/* Blog Section Styles */
.blog-section {
  padding: 4rem 0;
  background-color: var(--cream);
}

.blog-card-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--text-2xl);
  max-width: 1100px;
  margin: 0 auto;
}

.blog-card {
  background-color: var(--light-text);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
  width: 100%;
}

.blog-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.12);
}

.blog-card-link {
  display: grid;
  grid-template-columns: minmax(0, 48%) minmax(0, 52%);
  height: 100%;
  min-height: 420px;
  color: inherit;
  text-decoration: none;
  align-items: stretch;
}

.blog-card-image {
  overflow: hidden;
  height: 100%;
  min-height: 420px;
}

.blog-card-image img {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: contain;
  transition: var(--transition);
}

.blog-card-image-contain {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #fff;
  padding: 1rem;
  min-height: 420px;
}

.blog-card-image-contain img {
  width: 100%;
  height: auto;
  min-height: 0;
  max-height: none;
  height: 100%;
  object-fit: contain;
}

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

.blog-card-content {
  padding: clamp(1.5rem, 3vw, 3rem);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.blog-card-title {
  margin: 0 0 var(--text-lg);
  color: var(--primary-green);
  font-family: var(--font-family-secondary);
  font-weight: var(--font-semibold);
  font-size: clamp(2rem, 3.5vw, 3.5rem);
  line-height: 1.15;
  max-width: 12ch;
  width: 100%;
}

.blog-card-cta,
.blog-back-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-family-primary);
  font-weight: var(--font-semibold);
  text-decoration: none;
}

.blog-card-cta {
  background-color: var(--primary-green);
  color: var(--light-text);
  padding: 0.9rem 1.4rem;
  border-radius: 999px;
  box-shadow: 0 10px 24px rgba(45, 90, 39, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease;
  margin-top: var(--text-sm);
}

.blog-card-cta::after {
  content: "→";
  transition: transform 0.3s ease;
}

.blog-card:hover .blog-card-cta {
  background-color: var(--light-green);
  box-shadow: 0 14px 28px rgba(45, 90, 39, 0.26);
  transform: translateY(-2px);
}

.blog-card:hover .blog-card-cta::after {
  transform: translateX(4px);
}

.blog-back-link {
  color: var(--light-text);
  border-bottom: 1px solid rgba(255, 255, 255, 0.45);
  padding-bottom: 0.15rem;
}

.blog-back-link:hover {
  border-color: var(--light-text);
}

.blog-post h2 {
  text-align: left;
  margin-bottom: var(--text-4xl);
  font-family: var(--font-family-secondary);
  font-weight: var(--font-semibold);
  font-size: var(--text-5xl);
  color: var(--primary-green);
}

/* Business Value Section Styles */
.business-value {
  background-color: var(--light-green);
  color: var(--light-text);
  padding: var(--text-4xl);
  border-radius: 15px;
  margin: var(--text-4xl) 0;
  position: relative;
  overflow: hidden;
}

.business-value::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background-color: var(--primary-green);
}

.business-value h2 {
  color: var(--light-text);
  text-align: center;
  margin-bottom: var(--text-4xl);
  font-family: var(--font-family-secondary);
  font-weight: var(--font-semibold);
  font-size: var(--text-5xl);
  position: relative;
  z-index: 2;
}

.value-content {
  position: relative;
  z-index: 2;
}

.intro-text {
  font-size: var(--text-xl);
  font-weight: var(--font-semibold);
  margin-bottom: var(--text-lg);
  color: var(--cream);
  font-family: var(--font-family-secondary);
}

.value-list {
  list-style: none;
  padding-left: 0;
  margin-bottom: var(--text-4xl);
}

.value-list li {
  padding: 0.75rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  position: relative;
  padding-left: 2rem;
  font-size: var(--text-lg);
  line-height: 1.6;
  font-family: var(--font-family-primary);
  font-weight: var(--font-light);
}

.value-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--cream);
  font-weight: bold;
  font-size: 1.2rem;
  top: 0.25rem;
}

.opportunity-statement {
  background-color: rgba(255, 255, 255, 0.1);
  padding: var(--text-lg);
  border-radius: 10px;
  border-left: 4px solid var(--primary-green);
}

.opportunity-statement p {
  color: var(--light-text);
  line-height: 1.6;
  font-family: var(--font-family-primary);
  font-weight: var(--font-light);
  font-size: var(--text-base);
  margin: 0;
  font-style: italic;
}

.comparison-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--text-lg);
  margin-bottom: var(--text-5xl);
}

.comparison-item {
  background-color: var(--light-text);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
}

.comparison-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.product-image {
  position: relative;
  overflow: hidden;
}

.product-image img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  transition: var(--transition);
}

.comparison-item:hover .product-image img {
  transform: scale(1.1);
}

.product-label {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
  color: var(--light-text);
  padding: var(--text-lg);
  font-weight: var(--font-semibold);
  font-size: var(--text-lg);
  font-family: var(--font-family-primary);
}

.product-details {
  padding: var(--text-lg);
}

.lifecycle-card {
  max-width: 1100px;
  margin: 0 auto;
}

.lifecycle-image-wrap {
  background-color: #fff;
}

.lifecycle-image-wrap img {
  display: block;
  width: 100%;
  height: auto;
  max-height: 720px;
  object-fit: contain;
  background-color: #fff;
}

.lifecycle-details section + section {
  margin-top: var(--text-2xl);
  padding-top: var(--text-2xl);
  border-top: 1px solid rgba(45, 90, 39, 0.12);
}

.lifecycle-note {
  margin: var(--text-2xl) 0 0;
  padding: var(--text-lg);
  border-left: 4px solid var(--primary-green);
  background-color: rgba(77, 124, 15, 0.08);
  color: var(--primary-green);
  font-size: var(--text-lg);
  line-height: 1.7;
  font-weight: var(--font-medium);
}

.product-details h3 {
  color: var(--primary-green);
  margin-bottom: var(--text-lg);
  font-size: var(--text-xl);
  font-family: var(--font-family-secondary);
  font-weight: var(--font-semibold);
}

.product-details ul {
  margin-left: 1.5rem;
  margin-bottom: var(--text-lg);
}

.product-details li {
  margin-bottom: 0.5rem;
  color: #666;
  font-family: var(--font-family-primary);
  font-weight: var(--font-light);
  font-size: var(--text-base);
}

/* Verdict Section */
.verdict-section {
  background-color: var(--light-green);
  color: var(--light-text);
  padding: var(--text-4xl);
  border-radius: 10px;
  margin: var(--text-4xl) 0;
}

.verdict-table {
  width: 100%;
  border-collapse: collapse;
  margin: var(--text-2xl) 0;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  overflow: hidden;
}

.table-header,
.table-row {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: var(--text-base);
}

.table-header {
  background-color: var(--primary-green);
  font-weight: var(--font-semibold);
  padding: var(--text-base);
  font-family: var(--font-family-secondary);
}

.table-row {
  padding: var(--text-base);
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.feature-cell,
.product-cell {
  text-align: center;
  padding: var(--text-sm);
  font-family: var(--font-family-primary);
  font-weight: var(--font-light);
  font-size: var(--text-base);
}

.product-cell {
  font-size: var(--text-xl);
  font-weight: var(--font-semibold);
}

/* Mobile Responsive Styles for Verdict Table */
@media (max-width: 768px) {
  .verdict-section {
    padding: var(--text-2xl);
    margin: var(--text-2xl) 0;
  }

  .verdict-table {
    display: block;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .table-header,
  .table-row {
    grid-template-columns: 100px 1fr 1fr 1fr;
    min-width: 500px;
  }

  .table-header {
    font-size: var(--text-sm);
  }

  .feature-cell,
  .product-cell {
    font-size: var(--text-sm);
    padding: var(--text-xs);
  }

  .product-cell {
    font-size: var(--text-base);
  }

  .winner-announcement h3 {
    font-size: var(--text-2xl);
  }
}

.winner-announcement {
  text-align: center;
  margin-top: var(--text-2xl);
  padding: var(--text-2xl);
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
}

.winner-announcement h3 {
  color: var(--cream);
  font-size: var(--text-3xl);
  margin-bottom: var(--text-lg);
  font-family: var(--font-family-secondary);
  font-weight: var(--font-semibold);
}

/* Polished styles for the Areca vs Plastic vs Paper blog page */
.comparison-business-value {
  background: linear-gradient(135deg, var(--primary-green) 0%, var(--secondary-green) 100%);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 24px;
  box-shadow: 0 20px 40px rgba(45, 90, 39, 0.2);
}

.comparison-business-value::before {
  height: 100%;
  background: radial-gradient(circle at top right, rgba(255, 255, 255, 0.16), transparent 38%);
}

.comparison-business-value .section-title {
  margin-bottom: var(--text-2xl);
}

.comparison-business-value .value-content {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 20px;
  padding: clamp(1.25rem, 2vw, 2rem);
}

.comparison-business-value .intro-text {
  color: var(--light-text);
  letter-spacing: 0.01em;
  margin-bottom: var(--text-xl);
}

.comparison-business-value .value-list {
  display: grid;
  gap: 0.9rem;
  margin-bottom: var(--text-2xl);
}

.comparison-business-value .value-list li {
  border-bottom: none;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 16px;
  padding: 1rem 1rem 1rem 3.25rem;
  font-weight: 400;
}

.comparison-business-value .value-list li::before {
  left: 1rem;
  top: 50%;
  transform: translateY(-50%);
  font-size: 0.95rem;
}

.comparison-business-value .opportunity-statement {
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-left: none;
  border-radius: 18px;
  padding: 1.25rem 1.5rem;
}

.comparison-business-value .opportunity-statement p {
  color: rgba(255, 255, 255, 0.92);
  font-style: normal;
}

.comparison-verdict-section {
  background: linear-gradient(180deg, #ffffff 0%, var(--cream) 100%);
  color: var(--dark-text);
  border: 1px solid rgba(45, 90, 39, 0.12);
  border-radius: 24px;
  box-shadow: 0 18px 40px rgba(45, 90, 39, 0.12);
}

.comparison-verdict-section .section-title {
  color: var(--primary-green);
  text-align: center;
  margin-bottom: var(--text-2xl);
}

.comparison-verdict-table {
  background: #ffffff;
  border: 1px solid rgba(45, 90, 39, 0.12);
  border-radius: 20px;
  box-shadow: 0 14px 30px rgba(45, 90, 39, 0.08);
}

.comparison-verdict-section .table-header,
.comparison-verdict-section .table-row {
  gap: 0;
  align-items: stretch;
}

.comparison-verdict-section .table-header {
  background: linear-gradient(135deg, var(--primary-green) 0%, var(--secondary-green) 100%);
}

.comparison-verdict-section .table-row {
  padding: 0;
  background-color: rgba(255, 255, 255, 0.92);
  border-bottom: 1px solid rgba(45, 90, 39, 0.1);
}

.comparison-verdict-section .table-row:nth-child(odd) {
  background-color: rgba(45, 90, 39, 0.04);
}

.comparison-verdict-section .table-row:last-child {
  border-bottom: none;
}

.comparison-verdict-section .feature-cell,
.comparison-verdict-section .product-cell {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 76px;
  padding: 1rem;
}

.comparison-verdict-section .feature-cell {
  justify-content: flex-start;
  color: var(--primary-green);
  font-weight: 600;
}

.comparison-verdict-section .table-header .feature-cell,
.comparison-verdict-section .table-header .product-cell {
  color: var(--light-text);
  justify-content: center;
  font-family: var(--font-family-secondary);
  font-weight: var(--font-semibold);
}

.comparison-verdict-section .table-row .product-cell,
.comparison-verdict-section .table-row .feature-cell {
  border-right: 1px solid rgba(45, 90, 39, 0.08);
}

.comparison-verdict-section .table-row .product-cell:last-child {
  border-right: none;
}

.comparison-verdict-section .status-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 88px;
  padding: 0.55rem 0.95rem;
  border-radius: 999px;
  font-size: var(--text-base);
  font-weight: 600;
  line-height: 1;
}

.comparison-verdict-section .status-positive {
  background: rgba(45, 90, 39, 0.12);
  color: var(--primary-green);
}

.comparison-verdict-section .status-negative {
  background: rgba(139, 90, 43, 0.14);
  color: var(--earth-brown);
}

.comparison-verdict-section .status-neutral {
  background: rgba(74, 124, 89, 0.14);
  color: var(--secondary-green);
}

.comparison-verdict-section .winner-announcement {
  margin-top: var(--text-2xl);
  padding: 1.5rem;
  background: linear-gradient(135deg, var(--primary-green) 0%, var(--secondary-green) 100%);
  border: 1px solid rgba(45, 90, 39, 0.16);
  border-radius: 20px;
  box-shadow: 0 12px 28px rgba(45, 90, 39, 0.16);
}

.comparison-verdict-section .winner-announcement h3 {
  color: var(--light-text);
}

.comparison-verdict-section .winner-announcement p {
  margin: 0;
  color: rgba(255, 255, 255, 0.9);
}

@media (max-width: 768px) {
  .comparison-business-value,
  .comparison-verdict-section {
    border-radius: 18px;
  }

  .comparison-business-value .value-content {
    padding: 1rem;
  }

  .comparison-business-value .value-list li {
    padding: 0.95rem 0.95rem 0.95rem 3rem;
  }

  .comparison-verdict-section .feature-cell,
  .comparison-verdict-section .product-cell {
    min-height: 64px;
  }

  .comparison-verdict-section .feature-cell {
    justify-content: flex-start;
  }

  .comparison-verdict-section .status-badge {
    min-width: 72px;
    padding: 0.45rem 0.7rem;
    font-size: var(--text-sm);
  }
}

/* Page Header Styles */
.page-header {
  background-color: var(--primary-green);
  color: var(--light-text);
  padding: var(--text-4xl) 0;
  text-align: center;
}

.page-header .container {
  max-width: 800px;
}

.page-header h1 {
  color: var(--light-text);
  margin-bottom: var(--text-lg);
  text-align: center;
  font-family: var(--font-family-secondary);
  font-weight: var(--font-semibold);
  font-size: var(--text-5xl);
}

.page-header p {
  font-size: var(--text-lg);
  margin-bottom: var(--text-base);
  opacity: 0.9;
  font-family: var(--font-family-primary);
  font-weight: var(--font-light);
}

/* About Banner Styles */
.about-banner {
  width: 100%;
  overflow: hidden;
}

.about-banner img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

/* Site-wide section spacing normalization */
.page-header,
.details,
.products,
.boomi-story,
.why-partner,
.eco-friendly,
.from-nature-to-table,
.products-grid-section,
.about-product-focus-section,
.about-mission-section,
.about-vision-section,
.about-future-section,
.about-commitment-section,
.about-nurturing-section,
.mission-section,
.vision-section,
.empowerment-section,
.closing-statement,
.contact-info,
.contact-form-section,
.brochure-section,
.resources-section,
.blog-section {
  padding-top: var(--section-spacing);
  padding-bottom: var(--section-spacing);
}

/* Loading Spinner */
.loading {
  display: inline-block;
  width: 20px;
  height: 20px;
  border: 3px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  border-top-color: var(--light-text);
  animation: spin 1s ease-in-out infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

/* Responsive Enhancements */
@media (max-width: 768px) {
  .blog-card-grid {
    grid-template-columns: 1fr;
  }

  .blog-card-link {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .blog-card-image {
    height: auto;
    min-height: 240px;
  }

  .blog-card-image-contain {
    min-height: 240px;
  }

  .blog-card-image img {
    min-height: 240px;
  }

  .blog-card-content {
    padding: var(--text-lg);
  }

  .blog-card-title {
    max-width: none;
    font-size: clamp(1.8rem, 8vw, 2.6rem);
  }

  .business-value {
    padding: var(--text-lg);
  }

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

  .summary-header,
  .summary-row {
    grid-template-columns: 1.2fr 1fr 1fr 1fr;
    font-size: var(--text-sm);
  }

  .feature-name {
    font-size: var(--text-sm);
  }

  .feature-result {
    font-size: var(--text-sm);
  }

  .champion-announcement {
    padding: var(--text-lg);
  }

  .champion-badge h3 {
    font-size: var(--text-2xl);
  }
}

@media (max-width: 480px) {
  .summary-header,
  .summary-row {
    grid-template-columns: 1fr 1fr 1fr 1fr;
    font-size: var(--text-xs);
  }

  .feature-name {
    font-size: var(--text-xs);
    padding-left: var(--text-xs);
  }

  .feature-result {
    font-size: var(--text-xs);
    padding: var(--text-xs);
  }
}
