/* ============================================================
   EGE GROW - Ana CSS
   ============================================================ */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --green-dark: #1d4a20;
  --green-main: #2d6a30;
  --green-mid: #3a7d3e;
  --green-light: #4e9e52;
  --green-pale: #e8f5e9;
  --white: #ffffff;
  --gray-light: #f5f5f5;
  --gray: #666666;
  --dark: #222222;
  --border: #d4edda;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  color: var(--dark);
  background: var(--white);
  line-height: 1.6;
}

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

img {
  max-width: 100%;
}

/* ============================================================
   TOP BAR
   ============================================================ */
.top-bar {
  background: var(--green-dark);
  color: var(--white);
  padding: 8px 0;
  font-size: 13px;
}

.top-bar .container {
  display: flex;
  align-items: center;
  gap: 24px;
}

.top-bar a {
  color: var(--white);
  display: flex;
  align-items: center;
  gap: 6px;
  transition: opacity 0.2s;
}

.top-bar a:hover {
  opacity: 0.8;
}

.top-bar .icon {
  width: 14px;
  height: 14px;
  fill: currentColor;
}

/* ============================================================
   HEADER
   ============================================================ */
.site-header {
  background: var(--white);
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0;
}

.logo-wrap {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo-wrap img {
  height: 80px;
  width: auto;
  max-width: 280px;
}

.logo-text {
  font-size: 22px;
  font-weight: 700;
  color: var(--green-dark);
  line-height: 1.2;
}

.logo-text span {
  display: block;
  font-size: 12px;
  font-weight: 400;
  color: var(--green-mid);
  letter-spacing: 1px;
}

.header-buttons {
  display: flex;
  gap: 12px;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
  border: none;
}

.btn-primary {
  background: var(--green-main);
  color: var(--white);
}

.btn-primary:hover {
  background: var(--green-dark);
}

.btn-outline {
  background: transparent;
  color: var(--green-main);
  border: 2px solid var(--green-main);
}

.btn-outline:hover {
  background: var(--green-main);
  color: var(--white);
}

/* ============================================================
   NAVIGATION
   ============================================================ */
.main-nav {
  background: var(--green-main);
}

.nav-list {
  display: flex;
  list-style: none;
  align-items: center;
}

.nav-list > li {
  position: relative;
}

.nav-list > li > a {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 14px 20px;
  color: var(--white);
  font-size: 14px;
  font-weight: 500;
  transition: background 0.2s;
  white-space: nowrap;
}

.nav-list > li > a:hover,
.nav-list > li.active > a {
  background: var(--green-dark);
}

.nav-list > li > a .arrow {
  font-size: 10px;
  transition: transform 0.2s;
}

.nav-list > li:hover > a .arrow {
  transform: rotate(180deg);
}

/* Dropdown */
.dropdown {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--white);
  box-shadow: 0 8px 24px rgba(0,0,0,0.15);
  min-width: 700px;
  z-index: 999;
  border-top: 3px solid var(--green-main);
  border-radius: 0 0 8px 8px;
}

.nav-list > li:hover .dropdown {
  display: block;
}

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

.dropdown-col h4 {
  color: var(--green-dark);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 12px;
  padding-bottom: 8px;
  border-bottom: 2px solid var(--green-pale);
  display: flex;
  align-items: center;
  gap: 6px;
}

.dropdown-col ul {
  list-style: none;
}

.dropdown-col ul li {
  margin-bottom: 6px;
}

.dropdown-col ul li a {
  color: var(--gray);
  font-size: 13px;
  transition: color 0.2s;
  display: block;
  padding: 2px 0;
}

.dropdown-col ul li a:hover {
  color: var(--green-main);
}

.dropdown-col .see-all {
  display: inline-block;
  margin-top: 8px;
  color: var(--green-main);
  font-size: 12px;
  font-weight: 600;
}

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

/* ============================================================
   HERO SLIDER – Yenice klonu
   ============================================================ */
.hero-slider {
  position: relative;
  width: 100%;
  height: 530px;
  overflow: hidden;
  background: #0d2410;
}

.slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.75s ease;
  pointer-events: none;
}
.slide.active {
  opacity: 1;
  pointer-events: all;
}

.slide-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
}

.slide-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    rgba(8,25,10,0.88) 0%,
    rgba(8,25,10,0.65) 45%,
    rgba(8,25,10,0.10) 100%
  );
}

/* İçerik — sol orta */
.slide-content {
  position: absolute;
  top: 0;
  bottom: 0;
  left: max(24px, calc((100vw - 1200px) / 2 + 24px));
  right: 42%;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-right: 20px;
  color: #fff;
}

/* Küçük etiket — yaprak ikonu + metin */
.slide-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--green-main);
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.4px;
  padding: 6px 16px 6px 12px;
  border-radius: 30px;
  margin-bottom: 18px;
  width: fit-content;
}

/* Başlık */
.slide-content h1 {
  font-size: 44px;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 16px;
  color: #fff;
}

.slide-title-green {
  color: #7ed068;   /* Yenice'deki açık lime yeşil */
  display: block;
}

/* Açıklama */
.slide-content p {
  font-size: 15px;
  line-height: 1.75;
  opacity: 0.88;
  margin-bottom: 22px;
  max-width: 500px;
}

/* İstatistikler — yatay çizgi ayraçlı */
.slide-stats {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 30px;
  flex-wrap: wrap;
}

.slide-stat-item {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 13px;
  font-weight: 600;
  color: #fff;
  white-space: nowrap;
}

.slide-stat-item svg {
  color: #7ed068;
  flex-shrink: 0;
}

.slide-stat-sep {
  color: rgba(255,255,255,0.35);
  font-size: 16px;
  line-height: 1;
}

/* Butonlar */
.slide-buttons {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

/* Sarı primary buton — sepet ikonlu */
.slide-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #f9a825;
  color: #1a1a1a;
  font-size: 14px;
  font-weight: 700;
  padding: 13px 26px;
  border-radius: 7px;
  text-decoration: none;
  transition: background 0.2s, transform 0.15s;
  box-shadow: 0 4px 14px rgba(249,168,37,0.35);
}
.slide-btn-primary:hover {
  background: #fbc02d;
  transform: translateY(-2px);
}

/* Beyaz outline buton */
.slide-btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255,255,255,0.6);
  font-size: 14px;
  font-weight: 600;
  padding: 11px 24px;
  border-radius: 7px;
  text-decoration: none;
  transition: all 0.2s;
}
.slide-btn-outline:hover {
  background: rgba(255,255,255,0.1);
  border-color: #fff;
}

/* Ok tuşları */
.slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 20;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  line-height: 1;
  transition: background 0.2s;
  color: #fff;
}

.slider-prev {
  left: 16px;
  background: rgba(255,255,255,0.18);
}
.slider-prev:hover { background: rgba(255,255,255,0.32); }

.slider-next {
  right: 16px;
  background: var(--green-main);
}
.slider-next:hover { background: var(--green-dark); }

/* Nokta göstergesi */
.slider-dots {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 20;
}

.dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: rgba(255,255,255,0.4);
  cursor: pointer;
  border: none;
  transition: background 0.3s, transform 0.3s;
  padding: 0;
}
.dot.active {
  background: #fff;
  transform: scale(1.35);
}

/* Responsive */
@media (max-width: 900px) {
  .hero-slider { height: 460px; }
  .slide-content h1 { font-size: 32px; }
  .slide-content { right: 20%; }
}
@media (max-width: 600px) {
  .hero-slider { height: 500px; }
  .slide-content { left: 20px; right: 20px; padding-right: 0; }
  .slide-content h1 { font-size: 26px; }
  .slide-stats { display: none; }
  .slider-arrow { width: 36px; height: 36px; font-size: 22px; }
}

/* ============================================================
   HERO SECTION (eski - artık kullanılmıyor ama diğer sayfalar için)
   ============================================================ */
.hero {
  background: linear-gradient(135deg, var(--green-dark) 0%, var(--green-mid) 100%);
  color: var(--white);
  padding: 0;
  position: relative;
  overflow: hidden;
  min-height: 520px;
  display: flex;
  align-items: stretch;
}

.hero-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  width: 100%;
  min-height: 520px;
}

.hero-left {
  padding: 64px 48px 64px 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  z-index: 1;
}

.hero-right {
  position: relative;
  overflow: hidden;
}

.hero-right img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hero-right::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, var(--green-dark) 0%, transparent 30%);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 560px;
}

.breadcrumb {
  font-size: 13px;
  opacity: 0.8;
  margin-bottom: 16px;
}

.breadcrumb a {
  color: rgba(255,255,255,0.8);
}

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

.hero h1 {
  font-size: 42px;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 16px;
}

.hero h1 span {
  color: #a5d6a7;
}

.hero p {
  font-size: 18px;
  opacity: 0.9;
  margin-bottom: 32px;
  line-height: 1.7;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.btn-white {
  background: var(--white);
  color: var(--green-dark);
  font-weight: 700;
}

.btn-white:hover {
  background: #f0f0f0;
}

.btn-ghost {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.6);
}

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

/* Quick info box */
.quick-info {
  background: rgba(255,255,255,0.12);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 12px;
  padding: 20px;
  margin-top: 40px;
}

.quick-info h4 {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 1px;
  opacity: 0.7;
  margin-bottom: 14px;
}

.quick-info-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}

.quick-info-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
}

.quick-info-item .qi-icon {
  width: 32px;
  height: 32px;
  background: rgba(255,255,255,0.15);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  flex-shrink: 0;
}

/* ============================================================
   SECTION COMMON
   ============================================================ */
section {
  padding: 64px 0;
}

.section-title {
  text-align: center;
  margin-bottom: 48px;
}

.section-title h2 {
  font-size: 32px;
  font-weight: 700;
  color: var(--green-dark);
  margin-bottom: 8px;
}

.section-title p {
  color: var(--gray);
  font-size: 16px;
}

.section-title .line {
  width: 60px;
  height: 4px;
  background: var(--green-main);
  margin: 12px auto 0;
  border-radius: 2px;
}

/* ============================================================
   FEATURED PRODUCTS (Orta vitrin – Yenice stili)
   ============================================================ */
.featured-section {
  background: var(--gray-light);
  padding: 64px 0;
}

/* Üst satır: 3 eşit kart */
.featured-row-top {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 20px;
}

/* Alt satır: 1 geniş + 1 dar kart */
.featured-row-bottom {
  display: grid;
  grid-template-columns: 1.7fr 1fr;
  gap: 20px;
}

.feat-card {
  background: var(--white);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 3px 16px rgba(0,0,0,0.09);
  transition: transform 0.25s, box-shadow 0.25s;
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
}

.feat-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 28px rgba(0,0,0,0.14);
}

.feat-card-img {
  height: 220px;
  overflow: hidden;
  flex-shrink: 0;
}

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

.feat-card:hover .feat-card-img img {
  transform: scale(1.06);
}

.feat-card-body {
  padding: 20px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.feat-badge {
  display: inline-block;
  background: var(--green-pale);
  color: var(--green-main);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 3px 10px;
  border-radius: 20px;
  margin-bottom: 10px;
  width: fit-content;
}

.feat-card-body h3 {
  font-size: 16px;
  font-weight: 700;
  color: var(--green-dark);
  margin-bottom: 8px;
  line-height: 1.3;
}

.feat-card-body p {
  font-size: 13px;
  color: var(--gray);
  line-height: 1.6;
  margin-bottom: 14px;
  flex: 1;
}

.feat-link {
  color: var(--green-main);
  font-size: 13px;
  font-weight: 700;
}

.feat-card:hover .feat-link {
  text-decoration: underline;
}

@media (max-width: 900px) {
  .featured-row-top { grid-template-columns: 1fr 1fr; }
  .featured-row-bottom { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 580px) {
  .featured-row-top,
  .featured-row-bottom { grid-template-columns: 1fr; }
}

/* ============================================================
   CATEGORY CARDS
   ============================================================ */
.categories-section {
  background: var(--gray-light);
}

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

.cat-card {
  background: var(--white);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0,0,0,0.08);
  transition: transform 0.2s, box-shadow 0.2s;
  cursor: pointer;
}

.cat-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.12);
}

.cat-card-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.cat-card-body {
  padding: 20px;
}

.cat-card-body h3 {
  font-size: 16px;
  font-weight: 700;
  color: var(--green-dark);
  margin-bottom: 8px;
}

.cat-card-body p {
  font-size: 13px;
  color: var(--gray);
  margin-bottom: 14px;
  line-height: 1.5;
}

.cat-card-body .tag {
  display: inline-block;
  background: var(--green-pale);
  color: var(--green-main);
  font-size: 11px;
  font-weight: 600;
  padding: 3px 10px;
  border-radius: 20px;
  margin-right: 4px;
  margin-bottom: 4px;
}

.cat-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--green-main);
  font-size: 13px;
  font-weight: 600;
  margin-top: 12px;
  transition: gap 0.2s;
}

.cat-link:hover {
  gap: 10px;
}

/* ============================================================
   FEATURE BANNER (full-width image with overlay)
   ============================================================ */
.feature-banner {
  position: relative;
  min-height: 420px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.feature-banner-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.feature-banner-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(29,74,32,0.88) 0%, rgba(45,106,48,0.70) 100%);
  z-index: 1;
}

.feature-banner .container {
  position: relative;
  z-index: 2;
  color: var(--white);
}

.feature-banner-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  padding: 64px 0;
}

.feature-banner-text h2 {
  font-size: 32px;
  font-weight: 800;
  margin-bottom: 16px;
  line-height: 1.25;
}

.feature-banner-text p {
  font-size: 16px;
  opacity: 0.9;
  line-height: 1.8;
  margin-bottom: 24px;
}

.feature-list {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.feature-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 500;
}

.feature-list li::before {
  content: '✓';
  width: 22px;
  height: 22px;
  background: rgba(255,255,255,0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  flex-shrink: 0;
}

.feature-banner-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.fb-card {
  background: rgba(255,255,255,0.12);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 12px;
  padding: 20px 16px;
  text-align: center;
}

.fb-card .fb-icon {
  font-size: 32px;
  margin-bottom: 8px;
}

.fb-card h4 {
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 4px;
}

.fb-card p {
  font-size: 12px;
  opacity: 0.8;
  margin: 0;
  line-height: 1.4;
}

/* ============================================================
   PROCESS SECTION
   ============================================================ */
.process-section {
  background: var(--white);
  padding: 64px 0;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 40px;
  position: relative;
}

.process-grid::before {
  content: '';
  position: absolute;
  top: 36px;
  left: 12.5%;
  right: 12.5%;
  height: 2px;
  background: var(--border);
  z-index: 0;
}

.process-step {
  text-align: center;
  position: relative;
  z-index: 1;
}

.process-step .step-num {
  width: 72px;
  height: 72px;
  background: var(--green-main);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  margin: 0 auto 16px;
  box-shadow: 0 4px 16px rgba(45,106,48,0.3);
}

.process-step h4 {
  font-size: 15px;
  font-weight: 700;
  color: var(--green-dark);
  margin-bottom: 8px;
}

.process-step p {
  font-size: 13px;
  color: var(--gray);
  line-height: 1.5;
}

/* ============================================================
   ABOUT SECTION
   ============================================================ */
.about-section {
  background: var(--white);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-img-wrap {
  position: relative;
}

.about-img-wrap img {
  width: 100%;
  border-radius: 12px;
  object-fit: cover;
  height: 400px;
}

.about-badge {
  position: absolute;
  bottom: -16px;
  right: -16px;
  background: var(--green-main);
  color: var(--white);
  padding: 16px 24px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 4px 16px rgba(45,106,48,0.4);
}

.about-badge strong {
  display: block;
  font-size: 28px;
  font-weight: 800;
  line-height: 1;
}

.about-badge span {
  font-size: 12px;
  opacity: 0.9;
}

.about-content h2 {
  font-size: 30px;
  font-weight: 700;
  color: var(--green-dark);
  margin-bottom: 16px;
}

.about-content p {
  color: var(--gray);
  margin-bottom: 16px;
  line-height: 1.8;
}

.about-features {
  margin-top: 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.about-feature {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--dark);
}

.about-feature .feat-icon {
  width: 36px;
  height: 36px;
  background: var(--green-pale);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}

/* ============================================================
   PRODUCTS PAGE
   ============================================================ */
.products-section {
  background: var(--gray-light);
  min-height: 60vh;
}

.products-layout {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 32px;
}

.sidebar {
  background: var(--white);
  border-radius: 12px;
  padding: 24px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
  height: fit-content;
  position: sticky;
  top: 80px;
}

.sidebar h3 {
  font-size: 16px;
  font-weight: 700;
  color: var(--green-dark);
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--green-pale);
}

.sidebar-cat-list {
  list-style: none;
}

.sidebar-cat-list > li {
  margin-bottom: 4px;
}

.sidebar-cat-list > li > a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 12px;
  border-radius: 8px;
  color: var(--dark);
  font-size: 14px;
  font-weight: 500;
  transition: all 0.2s;
}

.sidebar-cat-list > li > a:hover,
.sidebar-cat-list > li.active > a {
  background: var(--green-pale);
  color: var(--green-dark);
}

.sidebar-cat-list > li.active > a {
  font-weight: 700;
}

.sidebar-cat-list .sub-list {
  list-style: none;
  padding-left: 12px;
  margin-top: 4px;
}

.sidebar-cat-list .sub-list li a {
  display: block;
  padding: 6px 12px;
  color: var(--gray);
  font-size: 13px;
  border-radius: 6px;
  transition: all 0.2s;
}

.sidebar-cat-list .sub-list li a:hover {
  background: var(--green-pale);
  color: var(--green-main);
}

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

.product-card {
  background: var(--white);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
  transition: transform 0.2s, box-shadow 0.2s;
  cursor: pointer;
}

.product-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.12);
}

.product-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.product-card-body {
  padding: 16px;
}

.product-card-body h3 {
  font-size: 15px;
  font-weight: 700;
  color: var(--green-dark);
  margin-bottom: 6px;
}

.product-card-body p {
  font-size: 13px;
  color: var(--gray);
  margin-bottom: 12px;
  line-height: 1.5;
}

.product-card-body .tags {
  margin-bottom: 12px;
}

.product-card-body .tag {
  display: inline-block;
  background: var(--green-pale);
  color: var(--green-main);
  font-size: 11px;
  font-weight: 600;
  padding: 2px 8px;
  border-radius: 20px;
  margin-right: 4px;
  margin-bottom: 4px;
}

.product-card-body .btn-detail {
  display: block;
  text-align: center;
  background: var(--green-main);
  color: var(--white);
  padding: 9px;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 600;
  transition: background 0.2s;
}

.product-card-body .btn-detail:hover {
  background: var(--green-dark);
}

/* ============================================================
   PRODUCT DETAIL PAGE
   ============================================================ */
.product-detail {
  padding: 60px 0;
}

.product-detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}

.product-detail-imgs {
  position: sticky;
  top: 80px;
}

.product-main-img {
  width: 100%;
  border-radius: 12px;
  object-fit: cover;
  height: 400px;
}

.product-thumbs {
  display: flex;
  gap: 10px;
  margin-top: 12px;
  flex-wrap: wrap;
}

.product-thumb {
  width: 80px;
  height: 80px;
  object-fit: cover;
  border-radius: 8px;
  cursor: pointer;
  border: 2px solid transparent;
  transition: border-color 0.2s;
}

.product-thumb:hover,
.product-thumb.active {
  border-color: var(--green-main);
}

.product-detail-info {
  padding: 8px 0;
}

.product-detail-info .breadcrumb {
  color: var(--gray);
  margin-bottom: 12px;
}

.product-detail-info .breadcrumb a {
  color: var(--green-main);
}

.product-detail-info h1 {
  font-size: 28px;
  font-weight: 800;
  color: var(--green-dark);
  margin-bottom: 8px;
}

.product-detail-info .subtitle {
  font-size: 16px;
  color: var(--green-mid);
  font-weight: 500;
  margin-bottom: 20px;
}

.product-detail-info .desc {
  color: var(--gray);
  line-height: 1.8;
  margin-bottom: 24px;
}

.product-specs {
  background: var(--gray-light);
  border-radius: 10px;
  padding: 20px;
  margin-bottom: 24px;
}

.product-specs h4 {
  font-size: 14px;
  font-weight: 700;
  color: var(--green-dark);
  margin-bottom: 14px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.spec-row {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 8px 0;
  border-bottom: 1px solid var(--border);
  font-size: 14px;
}

.spec-row:last-child {
  border-bottom: none;
}

.spec-row .spec-icon {
  font-size: 18px;
  width: 28px;
  text-align: center;
}

.spec-row .spec-label {
  font-weight: 600;
  color: var(--dark);
  min-width: 140px;
}

.spec-row .spec-val {
  color: var(--gray);
}

.product-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.product-actions .btn {
  flex: 1;
  justify-content: center;
  min-width: 160px;
}

/* ============================================================
   GALLERY PAGE
   ============================================================ */
.gallery-section {
  background: var(--gray-light);
  min-height: 60vh;
}

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

.gallery-item {
  border-radius: 10px;
  overflow: hidden;
  aspect-ratio: 1;
  cursor: pointer;
  position: relative;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s;
}

.gallery-item:hover img {
  transform: scale(1.05);
}

.gallery-item .overlay {
  position: absolute;
  inset: 0;
  background: rgba(29,74,32,0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s;
}

.gallery-item:hover .overlay {
  opacity: 1;
}

.gallery-item .overlay span {
  color: white;
  font-size: 36px;
}

/* Lightbox */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.9);
  z-index: 9999;
  align-items: center;
  justify-content: center;
}

.lightbox.active {
  display: flex;
}

.lightbox img {
  max-width: 90vw;
  max-height: 90vh;
  border-radius: 8px;
}

.lightbox-close {
  position: absolute;
  top: 20px;
  right: 24px;
  color: white;
  font-size: 36px;
  cursor: pointer;
  background: none;
  border: none;
  line-height: 1;
}

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.contact-section {
  background: var(--gray-light);
}

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

.contact-info {
  background: var(--white);
  border-radius: 12px;
  padding: 32px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.contact-info h3 {
  font-size: 22px;
  font-weight: 700;
  color: var(--green-dark);
  margin-bottom: 24px;
}

.contact-item {
  display: flex;
  gap: 16px;
  margin-bottom: 24px;
  align-items: flex-start;
}

.contact-item .ci-icon {
  width: 44px;
  height: 44px;
  background: var(--green-pale);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}

.contact-item .ci-body h4 {
  font-size: 14px;
  font-weight: 700;
  color: var(--green-dark);
  margin-bottom: 4px;
}

.contact-item .ci-body p,
.contact-item .ci-body a {
  font-size: 14px;
  color: var(--gray);
  line-height: 1.6;
}

.contact-item .ci-body a:hover {
  color: var(--green-main);
}

.contact-form {
  background: var(--white);
  border-radius: 12px;
  padding: 32px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.contact-form h3 {
  font-size: 22px;
  font-weight: 700;
  color: var(--green-dark);
  margin-bottom: 24px;
}

.form-group {
  margin-bottom: 16px;
}

.form-group label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 6px;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 11px 14px;
  border: 1.5px solid #ddd;
  border-radius: 8px;
  font-size: 14px;
  font-family: inherit;
  transition: border-color 0.2s;
  background: var(--white);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--green-main);
}

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

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.map-wrap {
  margin-top: 40px;
  border-radius: 12px;
  overflow: hidden;
  height: 320px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.map-wrap iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* ============================================================
   CALL TO ACTION BANNER
   ============================================================ */
.cta-banner {
  background: linear-gradient(135deg, var(--green-dark) 0%, var(--green-mid) 100%);
  color: var(--white);
  padding: 56px 0;
  text-align: center;
}

.cta-banner h2 {
  font-size: 30px;
  font-weight: 700;
  margin-bottom: 12px;
}

.cta-banner p {
  font-size: 17px;
  opacity: 0.88;
  margin-bottom: 28px;
}

.cta-banner .cta-btns {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

/* ============================================================
   STATS ROW
   ============================================================ */
.stats-section {
  background: var(--green-dark);
  color: var(--white);
  padding: 48px 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
}

.stat-item strong {
  display: block;
  font-size: 36px;
  font-weight: 800;
  color: #a5d6a7;
}

.stat-item span {
  font-size: 14px;
  opacity: 0.8;
  margin-top: 4px;
  display: block;
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: #111c12;
  background-image:
    linear-gradient(rgba(10,20,10,0.88), rgba(10,20,10,0.92)),
    url('https://images.unsplash.com/photo-1500382017468-9049fed747ef?w=1600&q=70');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  color: rgba(255,255,255,0.7);
  padding: 60px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 40px;
  margin-bottom: 40px;
}

.footer-brand img {
  height: 60px;
  max-width: 220px;
  margin-bottom: 16px;
  filter: brightness(0) invert(1);
}

.footer-brand p {
  font-size: 14px;
  line-height: 1.8;
  margin-bottom: 20px;
}

.footer-socials {
  display: flex;
  gap: 10px;
}

.footer-socials a {
  width: 36px;
  height: 36px;
  background: rgba(255,255,255,0.1);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 16px;
  transition: background 0.2s;
}

.footer-socials a:hover {
  background: var(--green-main);
}

.footer-col h4 {
  color: var(--white);
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 18px;
}

.footer-col ul {
  list-style: none;
}

.footer-col ul li {
  margin-bottom: 8px;
}

.footer-col ul li a {
  color: rgba(255,255,255,0.6);
  font-size: 14px;
  transition: color 0.2s;
}

.footer-col ul li a:hover {
  color: var(--white);
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 12px;
  font-size: 14px;
}

.footer-contact-item span:first-child {
  font-size: 16px;
  margin-top: 2px;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 20px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 13px;
}

/* ============================================================
   PAGE HERO (inner pages)
   ============================================================ */
.page-hero {
  background: linear-gradient(135deg, var(--green-dark) 0%, var(--green-mid) 100%);
  color: var(--white);
  padding: 48px 0;
}

.page-hero h1 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 8px;
}

.page-hero .breadcrumb {
  font-size: 14px;
  opacity: 0.8;
}

.page-hero .breadcrumb a {
  color: rgba(255,255,255,0.8);
}

/* ============================================================
   MOBILE NAV TOGGLE
   ============================================================ */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--green-dark);
  margin: 5px 0;
  transition: all 0.3s;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .cat-grid { grid-template-columns: repeat(2, 1fr); }
  .products-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .dropdown { min-width: 500px; }
  .dropdown-grid { grid-template-columns: repeat(2, 1fr); }
  .feature-banner-grid { grid-template-columns: 1fr; }
  .feature-banner-cards { grid-template-columns: repeat(4, 1fr); }
  .process-grid { grid-template-columns: repeat(2, 1fr); }
  .process-grid::before { display: none; }
  .hero-layout { grid-template-columns: 1.2fr 0.8fr; }
}

@media (max-width: 768px) {
  .hero-layout { grid-template-columns: 1fr; }
  .hero-right { display: none; }
  .hero-left { padding: 48px 20px; }
  .feature-banner-cards { grid-template-columns: repeat(2, 1fr); }
  .process-grid { grid-template-columns: 1fr 1fr; }
  .hero h1 { font-size: 28px; }
  .cat-grid { grid-template-columns: 1fr; }
  .about-grid { grid-template-columns: 1fr; }
  .products-layout { grid-template-columns: 1fr; }
  .sidebar { position: static; }
  .products-grid { grid-template-columns: repeat(2, 1fr); }
  .product-detail-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
  .nav-list { display: none; flex-direction: column; }
  .nav-list.open { display: flex; }
  .nav-toggle { display: block; }
  .dropdown { position: static; min-width: 100%; }
  .header-buttons { display: none; }
  .form-row { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .products-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ============================================================
   ANIMATIONS
   ============================================================ */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

.animate-up {
  animation: fadeInUp 0.5s ease forwards;
}

/* Floating CTA (WhatsApp/Phone) */
.floating-cta {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 500;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.floating-btn {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: white;
  box-shadow: 0 4px 16px rgba(0,0,0,0.2);
  transition: transform 0.2s, box-shadow 0.2s;
  cursor: pointer;
}

.floating-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 20px rgba(0,0,0,0.3);
}

.floating-btn.whatsapp { background: #25d366; }
.floating-btn.phone { background: var(--green-main); }
