/* ===== Reset & Base ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Roboto', Arial, sans-serif;
  font-weight: 400;
  color: #333;
  line-height: 1.6;
  background: #fff;
}
a { color: #154734; text-decoration: none; transition: color .2s; }
a:hover { color: #1b3528; }
img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }

/* ===== Header ===== */
.site-header {
  background: #154734;
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 1px solid #fff;
}
.header-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 30px;
  display: flex;
  align-items: stretch;
}
.header-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-width: 0;
}
.header-top-row {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  overflow: hidden;
  max-height: 50px;
  padding: 14px 0 8px;
  transition: max-height .5s ease, padding .5s ease, opacity .5s ease;
}
.logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  padding: 6px 20px 6px 0;
}
.logo img { width: auto; height: 60px; transition: height .5s ease; }
.header-right {
  display: flex;
  align-items: center;
  gap: 14px;
}
.header-social { display: flex; gap: 14px; }
.header-social a {
  color: #fff;
  display: inline-flex;
  align-items: center;
  transition: opacity .5s;
}
.header-social a:hover { opacity: .75; color: #fff; }
.header-divider {
  width: 1px;
  height: 22px;
  background: rgba(255,255,255,.5);
}
.header-search-btn {
  background: none;
  border: none;
  color: #fff;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  padding: 0;
  transition: opacity .5s;
}
.header-search-btn:hover { opacity: .75; }

/* ===== Header Scroll Shrink ===== */
.main-nav { transition: padding .5s ease; }

.site-header.scrolled .header-top-row {
  max-height: 0;
  padding: 0;
  opacity: 0;
}
.site-header.scrolled .logo img {
  height: 36px;
}
.site-header.scrolled .main-nav {
  padding-bottom: 0;
}

/* ===== Navigation ===== */
.main-nav {
  display: flex;
  justify-content: flex-end;
  padding-bottom: 10px;
}
.nav-list {
  display: flex;
  align-items: center;
  gap: 0;
}
.nav-list > li { position: relative; }
.nav-list > li > a {
  display: block;
  padding: 8px 20px;
  color: #fff;
  font-weight: 500;
  font-size: .95rem;
  transition: opacity .5s;
  white-space: nowrap;
}
.nav-list > li > a:hover { opacity: .8; color: #fff; }
.dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  background: #fff;
  min-width: 260px;
  box-shadow: 0 4px 20px rgba(0,0,0,.15);
  border-top: 3px solid #154734;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity .2s, visibility .2s, transform .2s;
  z-index: 100;
  pointer-events: none;
}
.nav-list > li.dropdown-open .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}
.dropdown a {
  display: block;
  padding: 10px 20px;
  color: #333;
  font-size: .9rem;
  border-bottom: 1px solid #eee;
}
.dropdown a:hover { background: #e8f0ed; color: #154734; }
.dropdown li:last-child a { border-bottom: none; }
.mobile-view-all { display: none; }

/* Mobile nav toggle */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  font-size: 1.6rem;
  color: #fff;
  padding: 8px;
}

/* ===== Hero Carousel ===== */
.hero-carousel {
  position: relative;
  overflow: hidden;
  background: #fff;
  max-width: 2525px;
  margin: 0 auto;
}
.carousel-track {
  display: flex;
  transition: transform .5s ease;
  width: 100%;
}
.carousel-slide {
  min-width: 100%;
  max-width: 100%;
  flex-shrink: 0;
  position: relative;
}
.carousel-slide img {
  width: 100%;
  height: auto;
  aspect-ratio: 2525 / 789;
  display: block;
  object-fit: cover;
  background: #fff;
}
.carousel-dots {
  display: block;
  text-align: center;
  padding: 14px 0;
  background: #fff;
}
.carousel-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: none;
  background: #999;
  margin: 0 4px;
  cursor: pointer;
  transition: background .5s;
  padding: 0;
}
.carousel-dot.active { background: #333; }

/* ===== Welcome Section ===== */
.welcome-section {
  text-align: center;
  padding: 70px 20px 80px;
  background: #fff;
}
.welcome-section h1 {
  font-size: 2.4rem;
  font-weight: 700;
  color: #222;
  margin-bottom: 20px;
  line-height: 1.3;
}
.welcome-section p {
  font-size: 1.05rem;
  color: #777;
  line-height: 1.7;
  margin-bottom: 32px;
}

/* ===== Buttons ===== */
.btn {
  display: inline-block;
  padding: 14px 32px;
  border-radius: 6px;
  font-weight: 500;
  font-size: .95rem;
  transition: all .5s;
  cursor: pointer;
  border: none;
  text-align: center;
}
.btn-teal {
  background: #3d8b8b;
  color: #fff;
}
.btn-teal:hover {
  background: #347878;
  color: #fff;
}
.btn-sm {
  padding: 8px 20px;
  font-size: .85rem;
}
.btn-primary { background: #154734; color: #fff; border: 2px solid #154734; }
.btn-primary:hover { background: #1b3528; border-color: #1b3528; color: #fff; }
.btn-outline { background: transparent; color: #fff; border: 2px solid #fff; }
.btn-outline:hover { background: #fff; color: #154734; }
.btn-secondary { background: #fff; color: #154734; border: 2px solid transparent; }
.btn-secondary:hover { background: #e8f0ed; color: #154734; }

/* ===== Brand Logos Section ===== */
.brand-logos {
  background: #154734;
  padding: 50px 0 60px;
}
.brand-logos-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 30px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  align-items: center;
}
.brand-logo-item {
  display: block;
  transition: opacity .5s;
}
.brand-logo-item:hover { opacity: .85; }
.brand-logo-item img {
  width: 100%;
  height: auto;
}

/* ===== Sections ===== */
.section { padding: 70px 0; }
.section-alt { background: #f8faf6; }
.section-title {
  font-size: 2rem;
  font-weight: 700;
  color: #333;
  margin-bottom: 12px;
  text-align: center;
}
.section-subtitle {
  font-size: 1.05rem;
  color: #666;
  text-align: center;
  margin-bottom: 40px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* ===== Buy Local ===== */
.buy-local {
  background: #fff;
  color: #333;
  text-align: center;
  padding: 60px 20px;
}
.buy-local h2 {
  font-size: 2rem;
  margin-bottom: 12px;
  color: #222;
}
.buy-local p {
  font-size: 1.05rem;
  margin-bottom: 24px;
  color: #777;
}

/* ===== Growing Tips / News ===== */
.tips-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
.tip-card {
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0,0,0,.08);
  transition: transform .25s, box-shadow .25s;
}
.tip-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0,0,0,.12);
}
.tip-card-img {
  height: 200px;
  background: #e8f0e2;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.tip-card-img img { width: 100%; height: 100%; object-fit: cover; }
.tip-card-body { padding: 20px; }
.tip-card-date { font-size: .8rem; color: #999; margin-bottom: 8px; }
.tip-card h3 { font-size: 1.1rem; color: #333; margin-bottom: 14px; line-height: 1.4; }

/* ===== Product Categories (used on other pages with old cards) ===== */
.categories-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
.category-card {
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0,0,0,.08);
  transition: transform .25s, box-shadow .25s;
  text-align: center;
}
.category-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0,0,0,.12);
}
.category-card-img {
  height: 220px;
  background: #e8f0e2;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
  color: #154734;
}
.category-card-body { padding: 24px; }
.category-card h3 { font-size: 1.3rem; margin-bottom: 10px; color: #333; }
.category-card p { font-size: .9rem; color: #666; margin-bottom: 16px; }

/* ===== Product Listing Pages ===== */
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 24px;
}
.product-card {
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0,0,0,.07);
  transition: transform .25s, box-shadow .25s;
  text-align: center;
}
.product-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0,0,0,.1);
}
.product-card-img {
  height: 200px;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.product-card-img img { max-height: 160px; width: auto; }
.product-card-body { padding: 16px; }
.product-card h3 { font-size: 1rem; color: #333; margin-bottom: 6px; }
.product-card .product-brand { font-size: .8rem; color: #154734; font-weight: 500; margin-bottom: 8px; }
.product-card .product-size { font-size: .85rem; color: #888; }
a.product-card { text-decoration: none; color: inherit; display: block; }

/* ===== Product Detail Page ===== */
.product-detail {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: start;
  margin-bottom: 40px;
}
.product-detail-image {
  background: #f8faf6;
  border-radius: 8px;
  padding: 30px;
  text-align: center;
}
.product-detail-image img {
  max-width: 100%;
  max-height: 500px;
  width: auto;
  margin: 0 auto;
}
.product-detail-info { padding-top: 10px; }
.product-detail-brand {
  font-size: .9rem;
  color: #154734;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .5px;
  margin-bottom: 8px;
}
.product-detail-info h2 {
  font-size: 1.8rem;
  font-weight: 700;
  color: #222;
  margin-bottom: 12px;
  line-height: 1.3;
}
.product-detail-sku {
  font-size: .85rem;
  color: #888;
  margin-bottom: 20px;
}
.product-detail-description {
  max-width: 800px;
  margin-top: 20px;
}
.product-detail-description h3 {
  font-size: 1.3rem;
  color: #154734;
  margin-bottom: 16px;
  padding-bottom: 8px;
  border-bottom: 2px solid #e8f0ed;
}
.product-detail-description p {
  font-size: 1rem;
  line-height: 1.8;
  color: #555;
  margin-bottom: 14px;
}
.product-detail-description ul,
.product-detail-description ol {
  padding-left: 24px;
  margin-bottom: 16px;
}
.product-detail-description li {
  font-size: .95rem;
  line-height: 1.7;
  color: #555;
  margin-bottom: 6px;
  list-style: disc;
}
.product-detail-description ol li { list-style: decimal; }
.product-detail-description h3:not(:first-child) { margin-top: 30px; }
@media (max-width: 768px) {
  .product-detail { grid-template-columns: 1fr; gap: 30px; }
}

/* Filter tabs */
.filter-tabs {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 30px;
}
.filter-tab {
  padding: 8px 20px;
  border: 2px solid #154734;
  border-radius: 25px;
  font-size: .9rem;
  color: #154734;
  cursor: pointer;
  background: #fff;
  transition: all .2s;
}
.filter-tab:hover, .filter-tab.active { background: #154734; color: #fff; }

/* ===== About Page ===== */
.about-content { max-width: 800px; margin: 0 auto; }
.about-content h2 { font-size: 1.6rem; color: #154734; margin: 30px 0 12px; }
.about-content p { margin-bottom: 16px; font-size: 1rem; line-height: 1.8; color: #555; }

/* ===== Contact Page ===== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}
.contact-info h3 { font-size: 1.2rem; color: #154734; margin-bottom: 16px; }
.contact-info p { margin-bottom: 12px; color: #555; }
.contact-info a { color: #154734; font-weight: 500; }
.contact-form label {
  display: block;
  font-size: .9rem;
  font-weight: 500;
  color: #333;
  margin-bottom: 6px;
}
.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-size: .95rem;
  font-family: inherit;
  margin-bottom: 18px;
  transition: border-color .2s;
}
.contact-form input:focus,
.contact-form textarea:focus { outline: none; border-color: #154734; }
.contact-form textarea { height: 150px; resize: vertical; }

/* ===== Store Locator ===== */
.locator-search {
  max-width: 500px;
  margin: 0 auto 40px;
  display: flex;
  gap: 10px;
}
.locator-search input {
  flex: 1;
  padding: 12px 16px;
  border: 2px solid #ddd;
  border-radius: 4px;
  font-size: 1rem;
}
.locator-search input:focus { border-color: #154734; outline: none; }

/* ===== News Page ===== */
.news-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 30px;
}
.news-card {
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0,0,0,.08);
  transition: transform .25s, box-shadow .25s;
}
.news-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0,0,0,.12);
}
.news-card-img {
  height: 200px;
  background: #e8f0e2;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.news-card-img img { width: 100%; height: 100%; object-fit: cover; }
.news-card-body { padding: 20px; }
.news-card-date { font-size: .8rem; color: #999; margin-bottom: 8px; }
.news-card h3 { font-size: 1.1rem; margin-bottom: 12px; line-height: 1.4; }
.news-card h3 a { color: #333; }
.news-card h3 a:hover { color: #154734; }

/* ===== Privacy Policy ===== */
.policy-content { max-width: 800px; margin: 0 auto; }
.policy-content h2 { font-size: 1.4rem; color: #154734; margin: 28px 0 12px; }
.policy-content p, .policy-content li { font-size: .95rem; color: #555; line-height: 1.8; margin-bottom: 10px; }
.policy-content ul { padding-left: 24px; list-style: disc; margin-bottom: 16px; }

/* ===== Breadcrumb Bar ===== */
.breadcrumb-bar {
  background: #f5f5f5;
  padding: 14px 0;
  border-bottom: 1px solid #e8e8e8;
}
.breadcrumb-bar .container {
  display: flex;
  align-items: center;
  gap: 0;
  font-size: .85rem;
  color: #888;
}
.breadcrumb-bar a {
  color: #154734;
  font-weight: 500;
}
.breadcrumb-bar a:hover { color: #1b3528; }
.breadcrumb-sep {
  margin: 0 8px;
  color: #bbb;
}

/* ===== Product Hero ===== */
.product-hero {
  padding: 50px 0 40px;
  background: #fff;
}
.product-hero-grid {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 50px;
  align-items: center;
}
.product-hero-text h1 {
  font-size: 2.2rem;
  font-weight: 700;
  color: #154734;
  margin-bottom: 20px;
}
.product-hero-text p {
  font-size: 1rem;
  color: #555;
  line-height: 1.8;
  margin-bottom: 14px;
}
.product-hero-img {
  display: flex;
  align-items: center;
  justify-content: center;
}
.product-hero-img img {
  width: 100%;
  height: auto;
  border-radius: 8px;
}

/* ===== Brand Logo Cards ===== */
.brand-logo-card {
  text-align: center;
}
.brand-logo-card .brand-logo-item {
  display: block;
  margin-bottom: 20px;
}
.btn-brand {
  display: inline-block;
  padding: 10px 28px;
  background: #c8b830;
  color: #154734;
  font-weight: 600;
  font-size: .9rem;
  border-radius: 4px;
  border: none;
  transition: all .2s;
}
.btn-brand:hover {
  background: #b8a828;
  color: #1b3528;
}

/* ===== Product Toolbar ===== */
.product-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 10px;
}
.product-count {
  font-size: .95rem;
  color: #666;
  font-weight: 500;
}

/* ===== Page Banner (legacy) ===== */
.page-banner {
  background: #154734;
  color: #fff;
  text-align: center;
  padding: 50px 20px;
}
.page-banner h1 { font-size: 2.2rem; font-weight: 700; }
.breadcrumb {
  margin-top: 12px;
  font-size: .9rem;
  color: rgba(255,255,255,.7);
}
.breadcrumb a { color: rgba(255,255,255,.85); }
.breadcrumb a:hover { color: #fff; }

/* ===== Footer ===== */
.site-footer {
  background: #154734;
  color: #ccc;
  padding: 50px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  margin-bottom: 40px;
}
.footer-col h4 { color: #fff; font-size: 1rem; margin-bottom: 16px; }
.footer-col p { font-size: .9rem; line-height: 1.7; margin-bottom: 8px; }
.footer-col a { color: #8fb8a3; font-size: .9rem; display: block; margin-bottom: 8px; }
.footer-col a:hover { color: #fff; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.15);
  padding: 20px 0;
  text-align: center;
  font-size: .85rem;
  color: rgba(255,255,255,.5);
}

/* ===== Back to Top ===== */
.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 44px;
  height: 44px;
  background: #154734;
  color: #fff;
  border: none;
  border-radius: 50%;
  font-size: 1.2rem;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: all .3s;
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: center;
}
.back-to-top.visible { opacity: 1; visibility: visible; }
.back-to-top:hover { background: #1b3528; }

/* ===== Responsive ===== */
@media (max-width: 1024px) {
  .brand-logos-inner { grid-template-columns: repeat(3, 1fr); gap: 20px; }
  .tips-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
  .nav-list > li > a { padding: 8px 14px; font-size: .88rem; }
  .product-hero-grid { grid-template-columns: 1fr 280px; gap: 30px; }
}
@media (max-width: 768px) {
  .header-inner {
    flex-wrap: wrap;
    justify-content: center;
    position: relative;
    min-height: 60px;
    align-items: center;
  }
  .header-content { order: 3; width: 100%; flex: none; }
  .header-top-row {
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    padding: 0;
    max-height: none;
    overflow: visible;
  }
  .site-header.scrolled .header-top-row {
    max-height: none;
    opacity: 1;
    padding: 0;
  }
  .nav-toggle {
    display: flex;
    align-items: center;
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
  }
  .logo {
    order: 1;
    padding: 6px 0;
  }
  .main-nav { justify-content: flex-end; padding-bottom: 0; }
  .nav-list {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #154734;
    z-index: 100;
    box-shadow: 0 8px 20px rgba(0,0,0,.2);
    max-height: 0;
    overflow: hidden;
    -webkit-overflow-scrolling: touch;
    transition: max-height .35s ease;
    align-items: stretch;
  }
  .nav-list.active { max-height: 80vh; overflow-y: auto; }
  .nav-list > li { border-bottom: 1px solid rgba(255,255,255,.08); width: 100%; text-align: left; }
  .nav-list > li:last-child { border-bottom: none; }
  .nav-list > li > a {
    padding: 16px 20px;
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 10px;
  }
  .nav-list > li.has-dropdown > a::after {
    content: '\25BC';
    font-size: .6rem;
    margin-left: 8px;
    transition: transform .2s;
  }
  .nav-list > li.has-dropdown.dropdown-open > a::after {
    transform: rotate(180deg);
  }
  .dropdown {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    border-top: none;
    background: #1b3528;
    max-height: 0;
    overflow: hidden;
    pointer-events: auto;
    transition: max-height .3s ease;
  }
  .nav-list > li.dropdown-open .dropdown { max-height: 500px; }
  .dropdown a {
    color: rgba(255,255,255,.85);
    border-bottom-color: rgba(255,255,255,.06);
    padding: 14px 20px 14px 36px;
    font-size: .95rem;
  }
  .dropdown a:hover { background: #152a20; color: #fff; }
  .mobile-view-all { display: list-item; }
  .mobile-view-all a { font-weight: 600; }
  .nav-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,.5);
    z-index: 99;
    opacity: 0;
    transition: opacity .3s ease;
  }
  .nav-overlay.active { display: block; opacity: 1; }
  .hero-carousel { padding: 0; background: #fff; overflow: hidden; max-width: 100%; }
  .carousel-slide { min-width: 100%; max-width: 100%; margin-right: 0; border-radius: 0; overflow: hidden; }
  .carousel-slide img { height: auto; border-radius: 0; object-fit: contain; }
  .carousel-dots { display: block; }
  .welcome-section h1 { font-size: 1.8rem; }
  .welcome-section { padding: 50px 20px 60px; }
  .brand-logos-inner { grid-template-columns: 1fr; gap: 30px; padding: 0 40px; }
  .brand-logos { padding: 40px 0; }
  .tips-grid { grid-template-columns: 1fr; }
  .categories-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .header-inner { padding: 0 16px; }
  .logo img { max-height: 50px; }
  .logo { padding-right: 12px; }
  .site-header.scrolled .logo img { max-height: 30px; }
  .product-hero-grid { grid-template-columns: 1fr; }
  .product-hero-img { max-width: 300px; margin: 0 auto; }
  .product-hero-text h1 { font-size: 1.8rem; }
  .product-toolbar { flex-direction: column; align-items: flex-start; }
  .filter-tabs { justify-content: flex-start; }
  .soils-intro-grid { grid-template-columns: 1fr !important; }
  .soils-intro-logo { text-align: center; }
  .soils-brand-grid { grid-template-columns: 1fr !important; gap: 40px !important; }
}

/* ===== Soils Page ===== */
.soils-intro-grid {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 40px;
  align-items: start;
}
.soils-intro-heading {
  font-size: 2rem;
  color: #2d5016;
  margin-bottom: 20px;
}
.soils-intro-grid p {
  color: #555;
  line-height: 1.8;
  margin-bottom: 16px;
}
.soils-intro-logo img {
  width: 100%;
  border-radius: 8px;
}
.soils-brand-showcase {
  background: #154734;
  padding: 60px 0;
  margin-bottom: 50px;
}
.soils-brand-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  text-align: center;
}
.soils-brand-item img {
  max-height: 140px;
  margin: 0 auto 24px;
}
.btn-lime {
  background: #b5c934;
  color: #2d5016;
  font-weight: 600;
  border: 2px solid #b5c934;
}
.btn-lime:hover {
  background: #a3b52e;
  border-color: #a3b52e;
  color: #2d5016;
}

/* ===== Article Detail Page ===== */
.article-content {
  max-width: 800px;
  margin: 0 auto;
}
.article-meta {
  margin-bottom: 12px;
}
.article-date {
  font-size: .85rem;
  color: #999;
  font-weight: 500;
}
.article-content h1 {
  font-size: 2rem;
  font-weight: 700;
  color: #154734;
  margin-bottom: 24px;
  line-height: 1.3;
}
.article-hero {
  margin-bottom: 30px;
  border-radius: 8px;
  overflow: hidden;
}
.article-hero img {
  width: 100%;
  height: auto;
  display: block;
}
.article-body p {
  font-size: 1rem;
  line-height: 1.8;
  color: #555;
  margin-bottom: 16px;
}
.article-body h2 {
  font-size: 1.4rem;
  color: #154734;
  margin: 30px 0 14px;
  line-height: 1.3;
}
.article-body h3 {
  font-size: 1.2rem;
  color: #154734;
  margin: 24px 0 10px;
}
.article-body ul,
.article-body ol {
  padding-left: 24px;
  margin-bottom: 16px;
}
.article-body li {
  font-size: .95rem;
  line-height: 1.8;
  color: #555;
  margin-bottom: 8px;
  list-style: disc;
}
.article-body ol li {
  list-style: decimal;
}
.article-body img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin: 20px 0;
}
.article-body strong {
  color: #333;
}
@media (max-width: 768px) {
  .article-content h1 { font-size: 1.6rem; }
  .article-body h2 { font-size: 1.2rem; }
}

/* ===== News Index Page ===== */
.news-page-header {
  text-align: center;
  margin-bottom: 40px;
}
.news-page-header h1 {
  font-size: 2rem;
  font-weight: 700;
  color: #154734;
}
a.news-card {
  text-decoration: none;
  color: inherit;
  display: block;
}
