/*
Theme Name: Microgreen Plus
Theme URI: https://microgreenplus.com
Author: Rahul
Description: Premium custom WordPress + WooCommerce theme for Microgreens business
Version: 1.0
Text Domain: microgreen
*/

/* ===============================
   RESET & BASE
================================ */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Poppins", system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.7;
  color: #1e1e1e;
  background: #ffffff;
}

a {
  text-decoration: none;
  color: inherit;
}

img {
  max-width: 100%;
  height: auto;
}

/* ===============================
   CONTAINER
================================ */
.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}


/* ===============================
   HERO SECTION
================================ */
.hero {
  background: linear-gradient(to right, #e8f8ee, #ffffff);
  padding: 90px 0;
}

.hero-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  align-items: center;
  gap: 40px;
}

.hero h1 {
  font-size: 42px;
  color: #0f2f1d;
  margin-bottom: 20px;
}

.hero p {
  font-size: 18px;
  margin-bottom: 30px;
  color: #444;
}

/* BUTTONS */
.btn {
  display: inline-block;
  padding: 14px 32px;
  background: #1a7f37;
  color: #ffffff;
  border-radius: 40px;
  font-weight: 600;
  transition: 0.3s;
}

.btn:hover {
  background: #145f2a;
}

/* ===============================
   SECTION COMMON
================================ */
.section {
  padding: 80px 0;
}

.section-title {
  text-align: center;
  margin-bottom: 50px;
}

.section-title h2 {
  font-size: 34px;
  color: #0f2f1d;
}

.section-title p {
  max-width: 600px;
  margin: 10px auto 0;
  color: #555;
}

/* ===============================
   FEATURES / BENEFITS
================================ */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.feature-box {
  background: #f6fff9;
  padding: 35px;
  border-radius: 16px;
  text-align: center;
  transition: 0.3s;
}

.feature-box:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(0,0,0,0.08);
}

.feature-box h3 {
  margin-bottom: 10px;
  color: #1a7f37;
}

/* ===============================
   PRODUCT GRID (Our Microgreens)
================================ */
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 30px;
}

.product-card {
  border: 1px solid #eaeaea;
  border-radius: 18px;
  padding: 20px;
  text-align: center;
  transition: 0.3s;
}

.product-card:hover {
  box-shadow: 0 12px 30px rgba(0,0,0,0.1);
}

.product-card h3 {
  margin: 15px 0;
  font-size: 18px;
}

/* ===============================
   INNER PAGES
================================ */
.page-header {
  background: #f3fbf6;
  padding: 60px 0;
  text-align: center;
}

.page-header h1 {
  font-size: 38px;
  color: #0f2f1d;
}

.page-content {
  padding: 60px 0;
}

.page-content p {
  margin-bottom: 20px;
  color: #444;
}

/* ===============================
   FOOTER
================================ */
.site-footer {
  background: #0f2f1d;
  color: #e6f3eb;
  padding: 70px 0 20px;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 40px;
}

.footer-col h3,
.footer-col h4 {
  color: #ffffff;
  margin-bottom: 15px;
}

.footer-col ul {
  list-style: none;
}

.footer-col ul li {
  margin-bottom: 10px;
}

.footer-col ul li a {
  color: #cfe9db;
}

.footer-col ul li a:hover {
  color: #3bb54a;
}

.footer-bottom {
  text-align: center;
  border-top: 1px solid rgba(255,255,255,0.1);
  margin-top: 40px;
  padding-top: 15px;
  font-size: 14px;
}

/* ===============================
   WOOCOMMERCE
================================ */
.woocommerce ul.products {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 30px;
}

.woocommerce ul.products li.product {
  border: 1px solid #eaeaea;
  border-radius: 18px;
  padding: 20px;
  text-align: center;
}

.woocommerce ul.products li.product:hover {
  box-shadow: 0 12px 30px rgba(0,0,0,0.08);
}

.woocommerce ul.products li.product .price {
  color: #1a7f37;
  font-weight: 700;
}

.woocommerce a.button,
.woocommerce button.button {
  background: #1a7f37;
  color: #fff;
  border-radius: 40px;
  padding: 12px 26px;
}

.woocommerce a.button:hover,
.woocommerce button.button:hover {
  background: #145f2a;
}

/* CART & CHECKOUT */
.woocommerce-cart table,
.woocommerce-checkout {
  background: #ffffff;
}



  .hero h1 {
    font-size: 32px;
  }

  .section {
    padding: 60px 0;
  }




/* ===============================
   HERO SECTION
================================ */
.hero {
  background: linear-gradient(135deg, #e8f8ee, #ffffff);
  padding: 110px 0;
  text-align: center;
}

.hero h1 {
  font-size: 44px;
  font-weight: 700;
  color: #0f2f1d;
  margin-bottom: 15px;
}

.hero p {
  font-size: 18px;
  color: #444;
  margin-bottom: 35px;
}

.hero-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.btn-primary {
  background: #1a7f37;
  color: #fff;
}

.btn-outline {
  border: 2px solid #1a7f37;
  color: #1a7f37;
  background: transparent;
}

.btn-outline:hover {
  background: #1a7f37;
  color: #fff;
}

/* ===============================
   ABOUT SECTION
================================ */
.about {
  padding: 80px 0;
  background: #ffffff;
  text-align: center;
}

.about h2 {
  font-size: 34px;
  color: #0f2f1d;
  margin-bottom: 20px;
}

.about p {
  max-width: 850px;
  margin: auto;
  font-size: 17px;
  color: #555;
}

/* ===============================
   BENEFITS
================================ */
.benefits {
  background: #f3fbf6;
  padding: 90px 0;
  text-align: center;
}

.benefits h2 {
  font-size: 34px;
  margin-bottom: 40px;
}

.benefit-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 25px;
}

.benefit-box {
  background: #ffffff;
  padding: 22px;
  border-radius: 14px;
  font-weight: 600;
  transition: 0.3s;
}

.benefit-box:hover {
  transform: translateY(-6px);
  box-shadow: 0 15px 35px rgba(0,0,0,0.08);
}

.btn-link {
  display: inline-block;
  margin-top: 30px;
  font-weight: 600;
  color: #1a7f37;
}

/* ===============================
   MICROGREENS SECTION
================================ */
.microgreens {
  padding: 90px 0;
  text-align: center;
}

.microgreens h2 {
  font-size: 34px;
  margin-bottom: 10px;
}

.microgreens p {
  margin-bottom: 40px;
  color: #555;
}

.microgreen-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 30px;
  margin-bottom: 40px;
}

.microgreen-card {
  background: #ffffff;
  border: 1px solid #eaeaea;
  padding: 30px;
  border-radius: 18px;
  transition: 0.3s;
}

.microgreen-card:hover {
  box-shadow: 0 18px 40px rgba(0,0,0,0.1);
}

.microgreen-card h3 {
  color: #1a7f37;
  margin-bottom: 10px;
}

/* ===============================
   HOW TO USE
================================ */
.usage {
  background: #f6fff9;
  padding: 80px 0;
  text-align: center;
}

.usage h2 {
  font-size: 34px;
  margin-bottom: 30px;
}

.usage-list {
  list-style: none;
  max-width: 500px;
  margin: auto;
  text-align: left;
}

.usage-list li {
  padding: 12px 0;
  font-size: 17px;
}

/* ===============================
   WHY US
================================ */
.why-us {
  padding: 90px 0;
  background: #ffffff;
  text-align: center;
}

.why-us h2 {
  font-size: 34px;
  margin-bottom: 40px;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
}

.why-grid div {
  background: #f3fbf6;
  padding: 22px;
  border-radius: 14px;
  font-weight: 600;
}

/* ===============================
   MARKET & FUTURE
================================ */
.market {
  padding: 80px 0;
  background: #0f2f1d;
  color: #e6f3eb;
  text-align: center;
}

.market h2 {
  font-size: 34px;
  margin-bottom: 15px;
  color: #ffffff;
}

.market p {
  max-width: 850px;
  margin: auto;
  font-size: 17px;
}

.market .btn-link {
  color: #9ff0b7;
}

/* ===============================
   CTA
================================ */
.cta {
  padding: 90px 0;
  background: linear-gradient(135deg, #1a7f37, #0f2f1d);
  color: #ffffff;
  text-align: center;
}

.cta h2 {
  font-size: 38px;
  margin-bottom: 10px;
}

.cta p {
  font-size: 18px;
  margin-bottom: 30px;
}

/* ===============================
   MOBILE
================================ */
@media (max-width: 768px) {
  .hero h1 {
    font-size: 32px;
  }

  .section,
  .about,
  .benefits,
  .microgreens,
  .usage,
  .why-us,
  .market,
  .cta {
    padding: 60px 0;
  }
}


/* ===============================
   PRODUCT
================================ */

/* ===============================
   EQUAL HEIGHT MICROGREEN CARDS
================================ */

.microgreen-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 30px;
  align-items: stretch;
}

.microgreen-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  background: #ffffff;
  border-radius: 18px;
  padding: 25px;
  box-shadow: 0 12px 30px rgba(0,0,0,0.08);
  transition: transform 0.3s ease;
}

.microgreen-card:hover {
  transform: translateY(-6px);
}

/* IMAGE FIXED HEIGHT */
.microgreen-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 14px;
  margin-bottom: 15px;
}

/* TITLE */
.microgreen-card h3 {
  font-size: 18px;
  font-weight: 700;
  color: #0f2f1d;
  margin-bottom: 6px;
}

/* PRICE */
.microgreen-card .price {
  font-size: 17px;
  font-weight: 700;
  color: #1a7f37;
  margin-bottom: 15px;
}

/* PUSH BUTTON TO BOTTOM */
.microgreen-card .add-to-cart {
  margin-top: auto;
  width: 100%;
  text-align: center;
}





/* ===============================
   GLOBAL PAGE STYLES
================================ */
body {
  font-family: 'Poppins', system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  color: #1f2937;
  line-height: 1.7;
  background-color: #ffffff;
}

.container {
  max-width: 1200px;
  margin: auto;
  padding: 0 20px;
}

h1, h2, h3 {
  font-weight: 700;
  color: #064e3b;
}

h1 {
  font-size: clamp(2rem, 4vw, 3rem);
}

h2 {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  margin-bottom: 20px;
}

p {
  font-size: 1rem;
  color: #374151;
  max-width: 850px;
  margin: 0 auto 20px;
}

/* ===============================
   BUTTONS
================================ */
.btn {
  display: inline-block;
  padding: 14px 30px;
  border-radius: 40px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn-primary {
  background: linear-gradient(135deg, #16a34a, #22c55e);
  color: #ffffff;
  box-shadow: 0 10px 30px rgba(34, 197, 94, 0.3);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(34, 197, 94, 0.45);
}

/* ===============================
   HERO SECTION
================================ */
.hero {
  padding: 120px 0;
  text-align: center;
  background: linear-gradient(135deg, #ecfdf5, #f0fdf4);
}

.hero p {
  font-size: 1.1rem;
  margin-bottom: 30px;
}

/* ===============================
   SECTION SPACING
================================ */
.about,
.benefits,
.microgreens,
.usage,
.cta {
  padding: 90px 0;
  text-align: center;
}

/* ===============================
   BENEFITS GRID
================================ */
.benefits {
  background: #f9fafb;
}

.benefit-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
  margin-top: 50px;
}

.benefit-box {
  background: #ffffff;
  padding: 30px;
  border-radius: 16px;
  font-weight: 600;
  font-size: 1rem;
  box-shadow: 0 15px 40px rgba(0,0,0,0.05);
  transition: transform 0.3s ease;
}

.benefit-box:hover {
  transform: translateY(-8px);
}

/* ===============================
   MICROGREENS GRID (EQUAL BOXES)
================================ */
.microgreen-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.microgreen-card {
  background: #ffffff;
  padding: 35px 25px;
  border-radius: 18px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.06);
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 220px; /* equal height */
  transition: all 0.3s ease;
}

.microgreen-card h3 {
  font-size: 1.2rem;
  margin-bottom: 10px;
}

.microgreen-card p {
  font-size: 0.95rem;
  margin: 0;
}

.microgreen-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 30px 70px rgba(0,0,0,0.08);
}

/* ===============================
   USAGE LIST
================================ */
.usage {
  background: #ecfdf5;
}

.usage-list {
  list-style: none;
  padding: 0;
  max-width: 600px;
  margin: 40px auto 0;
}

.usage-list li {
  background: #ffffff;
  margin-bottom: 15px;
  padding: 16px 20px;
  border-radius: 14px;
  font-weight: 500;
  box-shadow: 0 10px 25px rgba(0,0,0,0.05);
}

/* ===============================
   CTA SECTION
================================ */
.cta {
  background: linear-gradient(135deg, #16a34a, #22c55e);
  color: #ffffff;
}

.cta h2,
.cta p {
  color: #ffffff;
}

.cta .btn-primary {
  background: #ffffff;
  color: #16a34a;
  margin-top: 20px;
}

/* ===============================
   RESPONSIVE FIXES
================================ */
@media (max-width: 768px) {
  .hero {
    padding: 90px 0;
  }

  .about,
  .benefits,
  .microgreens,
  .usage,
  .cta {
    padding: 70px 0;
  }

  .btn {
    padding: 12px 26px;
  }
}






/* =====================================
   ABOUT US PAGE – MICROGREEN PLUS
===================================== */

/* ---------- GLOBAL ---------- */
.container {
  max-width: 1200px;
  margin: auto;
  padding: 0 20px;
}

.about-us-section {
  padding: 80px 0;
}

.bg-light {
  background: #f8fafc;
}

/* ---------- HERO ---------- */
.hero-about {
  background: linear-gradient(135deg, #dcfce7, #f0fdf4);
  padding: 120px 0;
  text-align: center;
}

.hero-about h1 {
  font-size: 3.2rem;
  font-weight: 800;
  color: #14532d;
  margin-bottom: 12px;
}

.hero-about p {
  font-size: 1.25rem;
  color: #334155;
  max-width: 700px;
  margin: auto;
}

/* ---------- HEADINGS ---------- */
.about-us-section h2 {
  font-size: 2.2rem;
  font-weight: 700;
  color: #166534;
  text-align: center;
  margin-bottom: 24px;
}

/* ---------- PARAGRAPHS ---------- */
.about-us-section p {
  font-size: 1.1rem;
  color: #475569;
  line-height: 1.9;
  max-width: 900px;
  margin: 0 auto 20px;
  text-align: center;
}

/* ---------- LISTS ---------- */
.about-us-section ul {
  max-width: 800px;
  margin: 30px auto 0;
  padding: 0;
  list-style: none;
}

.about-us-section ul li {
  background: #ffffff;
  padding: 14px 18px;
  margin-bottom: 12px;
  border-radius: 10px;
  font-size: 1.05rem;
  color: #1f2937;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

/* ---------- TESTIMONIALS ---------- */
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  margin-top: 40px;
}

.testimonial-card {
  background: #ffffff;
  padding: 28px;
  border-radius: 14px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  transition: transform 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-6px);
}

.testimonial-card p {
  font-size: 1.05rem;
  color: #334155;
  margin-bottom: 14px;
}

.testimonial-card strong {
  color: #166534;
  font-size: 0.95rem;
}

/* ---------- CTA ---------- */
.cta-about {
  background: linear-gradient(135deg, #166534, #22c55e);
  padding: 90px 0;
  text-align: center;
}

.cta-about h2 {
  font-size: 2.5rem;
  color: #ffffff;
  margin-bottom: 12px;
}

.cta-about p {
  color: #dcfce7;
  font-size: 1.15rem;
  margin-bottom: 30px;
}

.btn {
  display: inline-block;
  padding: 14px 34px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-primary {
  background: #ffffff;
  color: #166534;
}

.btn-primary:hover {
  background: #dcfce7;
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 768px) {
  .hero-about h1 {
    font-size: 2.4rem;
  }

  .about-us-section h2 {
    font-size: 1.9rem;
  }

  .cta-about h2 {
    font-size: 2rem;
  }
}

@media (max-width: 480px) {
  .hero-about {
    padding: 90px 0;
  }

  .about-us-section {
    padding: 60px 0;
  }
}




/* =====================================
   HEALTH BENEFITS PAGE
===================================== */

/* ---------- HERO SECTION ---------- */
.hero-about {
  background: linear-gradient(135deg, #ecfdf5, #f0fdf4);
  padding: 110px 0;
  text-align: center;
}

.hero-about h1 {
  font-size: 3rem;
  font-weight: 800;
  color: #123b22;
  margin-bottom: 12px;
}

.hero-about p {
  font-size: 1.2rem;
  color: #475569;
}

/* ---------- COMMON SECTION ---------- */
.about-us-section {
  padding: 80px 0;
}

.about-us-section.bg-light {
  background: #f9fafb;
}

.about-us-section .container {
  max-width: 1000px;
}

/* Headings */
.about-us-section h2 {
  font-size: 2.1rem;
  font-weight: 700;
  color: #166534;
  margin-bottom: 18px;
}

/* Paragraphs */
.about-us-section p {
  font-size: 1.05rem;
  line-height: 1.8;
  color: #475569;
  margin-bottom: 25px;
}

/* Lists */
.about-us-section ul {
  list-style: none;
  padding: 0;
  margin-top: 20px;
}

.about-us-section ul li {
  background: #ffffff;
  padding: 16px 20px;
  margin-bottom: 14px;
  border-radius: 14px;
  font-weight: 600;
  color: #14532d;
  box-shadow: 0 6px 20px rgba(0,0,0,0.05);
  display: flex;
  align-items: center;
  gap: 12px;
}

/* Check icon style */
.about-us-section ul li::before {
  content: "🌱";
  font-size: 1.3rem;
}

/* ---------- CTA SECTION ---------- */
.cta-about {
  background: linear-gradient(135deg, #22c55e, #16a34a);
  padding: 90px 0;
  text-align: center;
  color: #ffffff;
}

.cta-about h2 {
  font-size: 2.4rem;
  font-weight: 800;
  margin-bottom: 10px;
}

.cta-about p {
  font-size: 1.1rem;
  margin-bottom: 30px;
  opacity: 0.95;
}

/* Button spacing */
.cta-about .btn {
  padding: 14px 36px;
  font-size: 1rem;
}

/* =====================================
   RESPONSIVE
===================================== */

@media (max-width: 1024px) {
  .hero-about h1 {
    font-size: 2.6rem;
  }

  .about-us-section h2 {
    font-size: 1.9rem;
  }
}

@media (max-width: 768px) {
  .hero-about {
    padding: 80px 0;
  }

  .hero-about h1 {
    font-size: 2.2rem;
  }

  .hero-about p {
    font-size: 1.05rem;
  }

  .about-us-section {
    padding: 60px 0;
  }

  .about-us-section p {
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .hero-about h1 {
    font-size: 1.9rem;
  }

  .about-us-section h2 {
    font-size: 1.6rem;
  }

  .about-us-section ul li {
    font-size: 0.95rem;
    padding: 14px 16px;
  }

  .cta-about h2 {
    font-size: 1.9rem;
  }
}




/* ================================
   HOW TO USE MICROGREENS – PREMIUM
================================ */

/* Page wrapper */
.page.how-to-use {
  background: #ffffff;
  color: #222;
  line-height: 1.8;
}

/* ================= HERO ================= */
.hero-about {
  background: linear-gradient(120deg, #0f3d2e, #1e7f4f);
  color: #fff;
  padding: 90px 20px;
  text-align: center;
}

.hero-about h1 {
  font-size: 44px;
  font-weight: 700;
  margin-bottom: 12px;
}

.hero-about p {
  font-size: 18px;
  max-width: 720px;
  margin: auto;
  opacity: 0.9;
}

/* ================= SECTIONS ================= */
.about-us-section {
  padding: 70px 20px;
}

.about-us-section .container {
  max-width: 1200px;
  margin: auto;
}

.about-us-section h2 {
  font-size: 32px;
  margin-bottom: 15px;
  color: #0f3d2e;
}

.about-us-section p {
  font-size: 16px;
  color: #555;
  max-width: 850px;
}

/* Light background */
.bg-light {
  background: #f8faf9;
}

/* ================= LIST STYLE ================= */
.about-us-section ul {
  margin-top: 20px;
  padding-left: 0;
  list-style: none;
}

.about-us-section ul li {
  padding: 10px 0;
  font-size: 16px;
  color: #333;
  position: relative;
  padding-left: 28px;
}

.about-us-section ul li::before {
  content: "✔";
  position: absolute;
  left: 0;
  top: 10px;
  color: #1e7f4f;
  font-weight: bold;
}

/* ================= CTA ================= */
.cta-about {
  background: linear-gradient(120deg, #1e7f4f, #28a868);
  color: #fff;
  padding: 80px 20px;
  text-align: center;
}

.cta-about h2 {
  font-size: 36px;
  margin-bottom: 12px;
}

.cta-about p {
  font-size: 18px;
  margin-bottom: 25px;
  opacity: 0.95;
}

/* Button */
.btn {
  display: inline-block;
  padding: 14px 32px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-primary {
  background: #ffffff;
  color: #1e7f4f;
}

.btn-primary:hover {
  background: #0f3d2e;
  color: #fff;
}

/* ================= RESPONSIVE ================= */
@media (max-width: 768px) {

  .hero-about h1 {
    font-size: 32px;
  }

  .hero-about p {
    font-size: 16px;
  }

  .about-us-section h2 {
    font-size: 26px;
  }

  .cta-about h2 {
    font-size: 28px;
  }
}







/* ================================
   MARKET FUTURE – PREMIUM STYLE
================================ */

.page-market-future {
  background: #fff;
  color: #222;
}

/* HERO */
.hero-about {
  background: linear-gradient(120deg, #0f3d2e, #1e7f4f);
  color: #fff;
  padding: 90px 20px;
  text-align: center;
}

.hero-about h1 {
  font-size: 46px;
  font-weight: 700;
  margin-bottom: 10px;
}

.hero-about p {
  font-size: 18px;
  max-width: 750px;
  margin: auto;
  opacity: 0.9;
}

/* SECTIONS */
.about-us-section {
  padding: 75px 20px;
}

.about-us-section .container {
  max-width: 1200px;
  margin: auto;
}

.about-us-section h2 {
  font-size: 32px;
  color: #0f3d2e;
  margin-bottom: 15px;
}

.about-us-section p {
  font-size: 16px;
  color: #555;
  max-width: 900px;
}

/* LIGHT BG */
.bg-light {
  background: #f7faf8;
}

/* LIST */
.about-us-section ul {
  list-style: none;
  padding: 0;
  margin-top: 20px;
}

.about-us-section ul li {
  font-size: 16px;
  padding: 10px 0 10px 30px;
  position: relative;
}

.about-us-section ul li::before {
  content: "✔";
  position: absolute;
  left: 0;
  color: #1e7f4f;
  font-weight: bold;
}

/* CTA */
.cta-about {
  background: linear-gradient(120deg, #1e7f4f, #2fbf71);
  color: #fff;
  padding: 85px 20px;
  text-align: center;
}

.cta-about h2 {
  font-size: 36px;
  margin-bottom: 10px;
}

.cta-about p {
  font-size: 18px;
  margin-bottom: 25px;
}

/* BUTTON */
.btn {
  padding: 14px 34px;
  border-radius: 50px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn-primary {
  background: #fff;
  color: #1e7f4f;
}

.btn-primary:hover {
  background: #0f3d2e;
  color: #fff;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .hero-about h1 {
    font-size: 32px;
  }

  .about-us-section h2 {
    font-size: 26px;
  }

  .cta-about h2 {
    font-size: 28px;
  }
}





/* =====================================
   WHY MICROGREEN PLUS – PAGE CSS
===================================== */

/* HERO SECTION */
.hero-about {
  padding: 110px 0;
  text-align: center;
  background: linear-gradient(135deg, #ecfdf5, #f0fdf4);
}

.hero-about h1 {
  font-size: 3rem;
  font-weight: 800;
  color: #064e3b;
  margin-bottom: 14px;
}

.hero-about p {
  font-size: 1.2rem;
  color: #475569;
  max-width: 720px;
  margin: auto;
}

/* COMMON SECTION */
.about-us-section {
  padding: 80px 0;
}

.about-us-section.bg-light {
  background: #f8faf9;
}

.about-us-section h2 {
  font-size: 2.2rem;
  font-weight: 700;
  color: #064e3b;
  margin-bottom: 18px;
}

.about-us-section p {
  font-size: 1.05rem;
  line-height: 1.8;
  color: #374151;
  max-width: 900px;
}

/* LIST STYLE */
.about-us-section ul {
  margin-top: 22px;
  padding-left: 0;
  list-style: none;
  max-width: 750px;
}

.about-us-section ul li {
  background: #ffffff;
  margin-bottom: 12px;
  padding: 16px 20px;
  border-radius: 14px;
  font-size: 1rem;
  font-weight: 600;
  color: #065f46;
  box-shadow: 0 8px 20px rgba(0,0,0,0.05);
  transition: transform 0.3s ease;
}

.about-us-section ul li:hover {
  transform: translateX(6px);
}

/* TRUST / AUTHORITY BLOCK */
.about-us-section.bg-light p {
  font-size: 1.08rem;
}

/* CTA SECTION */
.cta-about {
  padding: 90px 0;
  text-align: center;
  background: linear-gradient(135deg, #16a34a, #064e3b);
  color: #ffffff;
}

.cta-about h2 {
  font-size: 2.6rem;
  font-weight: 800;
  margin-bottom: 12px;
}

.cta-about p {
  font-size: 1.15rem;
  margin-bottom: 30px;
  opacity: 0.95;
}

.cta-about .btn {
  font-size: 1.05rem;
  padding: 16px 36px;
  border-radius: 40px;
}

/* ==============================
   RESPONSIVE DESIGN
============================== */
@media (max-width: 992px) {
  .hero-about h1 {
    font-size: 2.5rem;
  }

  .about-us-section h2 {
    font-size: 2rem;
  }
}

@media (max-width: 768px) {
  .hero-about {
    padding: 90px 0;
  }

  .hero-about h1 {
    font-size: 2.2rem;
  }

  .hero-about p {
    font-size: 1.05rem;
  }

  .about-us-section {
    padding: 65px 0;
  }

  .cta-about h2 {
    font-size: 2.1rem;
  }
}

@media (max-width: 480px) {
  .hero-about h1 {
    font-size: 1.9rem;
  }

  .about-us-section h2 {
    font-size: 1.7rem;
  }

  .about-us-section p {
    font-size: 0.98rem;
  }
}




/* =====================================
   OUR MICROGREENS – PRODUCTS PAGE
===================================== */

/* ---------- HERO ---------- */
.hero-products {
  padding: 90px 0;
  text-align: center;
  background: linear-gradient(135deg, #ecfdf5, #f0fdf4);
}

.hero-products h1 {
  font-size: 2.8rem;
  color: #064e3b;
  margin-bottom: 10px;
}

.hero-products p {
  font-size: 1.1rem;
  color: #374151;
}

/* ---------- PRODUCTS SECTION ---------- */
.products-section {
  padding: 80px 0;
  background: #f8faf9;
}

/* GRID */
.products-grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

/* ---------- PRODUCT CARD ---------- */
.product-card {
  background: #ffffff;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 12px 30px rgba(0,0,0,0.08);
  display: flex;
  flex-direction: column;
  transition: all 0.35s ease;
}

.product-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 22px 45px rgba(0,0,0,0.12);
}

/* ---------- IMAGE ---------- */
.product-image {
  width: 100%;
  height: 260px;
  overflow: hidden;
  display: block;
  background: #f1f5f9;
}

.product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.product-card:hover .product-image img {
  transform: scale(1.08);
}

/* ---------- CONTENT ---------- */
.product-content {
  padding: 22px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  text-align: center;
}

.product-content h3 {
  font-size: 1.2rem;
  color: #064e3b;
  margin-bottom: 10px;
  min-height: 48px;
}

/* ---------- PRICE ---------- */
.product-content .price {
  font-size: 1.1rem;
  font-weight: 700;
  color: #16a34a;
  margin-bottom: 18px;
}

/* ---------- ADD TO CART ---------- */
.cart-btn {
  margin-top: auto;
}

.cart-btn .button {
  width: 100%;
  padding: 12px 0;
  background: linear-gradient(135deg, #16a34a, #22c55e);
  color: #ffffff;
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: 12px;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

.cart-btn .button:hover {
  background: linear-gradient(135deg, #064e3b, #16a34a);
  transform: translateY(-2px);
}

/* Hide quantity (clean look) */
.product-card .quantity {
  display: none;
}

/* ---------- CTA ---------- */
.cta-about {
  padding: 90px 0;
  text-align: center;
  background: linear-gradient(135deg, #16a34a, #064e3b);
  color: #ffffff;
}

.cta-about h2 {
  font-size: 2.5rem;
  margin-bottom: 10px;
}

.cta-about p {
  font-size: 1.1rem;
  margin-bottom: 26px;
}

.cta-about .btn-primary {
  padding: 14px 32px;
  background: #ffffff;
  color: #064e3b;
  font-weight: 700;
  border-radius: 30px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.cta-about .btn-primary:hover {
  background: #ecfdf5;
}

/* ---------- RESPONSIVE ---------- */

/* Laptop */
@media (max-width: 1200px) {
  .products-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Tablet */
@media (max-width: 992px) {
  .products-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .hero-products h1 {
    font-size: 2.2rem;
  }
}

/* Mobile */
@media (max-width: 600px) {
  .products-grid {
    grid-template-columns: 1fr;
  }

  .product-image {
    height: 230px;
  }

  .hero-products {
    padding: 70px 0;
  }

  .hero-products h1 {
    font-size: 1.9rem;
  }

  .cta-about h2 {
    font-size: 2rem;
  }
}


/* =========================
   HEADER
========================= */
.site-header {
  background: #fff;
  position: sticky;
  top: 0;
  z-index: 9999;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

/* FLEX */
.header-flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
}

/* LOGO */
.logo a {
  font-size: 22px;
  font-weight: 700;
  color: #15803d;
  text-decoration: none;
}

/* =========================
   HAMBURGER
========================= */
.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  flex-direction: column;
  gap: 6px;
  position: relative;
  z-index: 10000;
}

.menu-toggle span {
  width: 26px;
  height: 3px;
  background: #111;
  display: block;
  transition: 0.3s ease;
}

/* =========================
   DESKTOP MENU
========================= */
@media (min-width: 769px) {

  .main-navigation {
    display: block;
  }

  .menu {
    display: flex;
    gap: 25px;
    list-style: none;
  }

  .menu li a {
    text-decoration: none;
    font-weight: 600;
    color: #111;
  }
}

/* =========================
   MOBILE MENU
========================= */
@media (max-width: 768px) {

  .menu-toggle {
    display: flex;
  }

  .main-navigation {
    position: fixed;
    top: 0;
    left: -100%;
    width: 75%;
    max-width: 300px;
    height: 100vh;
    background: #fff;
    padding: 90px 25px;
    transition: left 0.3s ease;
    z-index: 9998;
    display: block;
    box-shadow: 3px 0 15px rgba(0,0,0,0.1);
  }

  .main-navigation.active {
    left: 0;
  }

  .menu {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding: 0;
  }

  .menu li a {
    font-size: 18px;
    font-weight: 600;
    color: #111;
    text-decoration: none;
  }
}
