@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Barlow:wght@400;500;600;700&family=Barlow+Condensed:wght@600;700&display=swap');

:root {
  --green-dark: #1a3a1a;
  --green-mid: #2d6a2d;
  --green-main: #3a8a3a;
  --green-light: #4caf50;
  --green-bright: #66bb6a;
  --green-pale: #e8f5e9;
  --yellow-accent: #f9a825;
  --orange-accent: #e65100;
  --white: #ffffff;
  --gray-light: #f5f5f5;
  --gray-mid: #9e9e9e;
  --gray-dark: #333333;
  --text-main: #1c2b1c;
  --shadow: 0 4px 24px rgba(0,0,0,0.12);
  --shadow-hover: 0 8px 32px rgba(0,0,0,0.22);
}

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

body {
  font-family: 'Barlow', sans-serif;
  color: var(--text-main);
  background: var(--white);
  overflow-x: hidden;
}

/* ===== NAVBAR ===== */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(26,58,26,0.97);
  backdrop-filter: blur(8px);
  border-bottom: 3px solid var(--green-light);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 40px;
  height: 68px;
  box-shadow: 0 2px 20px rgba(0,0,0,0.3);
}

.navbar-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.navbar-brand .logo-icon {
  width: 44px;
  height: 44px;
  background: var(--green-light);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
}

.navbar-brand .brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.navbar-brand .brand-main {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 22px;
  color: var(--green-bright);
  letter-spacing: 1px;
}

.navbar-brand .brand-sub {
  font-size: 10px;
  color: var(--gray-mid);
  letter-spacing: 2px;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 4px;
}

.nav-links a {
  text-decoration: none;
  color: #ccc;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  padding: 8px 16px;
  border-radius: 6px;
  transition: all 0.2s;
}

.nav-links a:hover, .nav-links a.active {
  color: var(--white);
  background: var(--green-mid);
}

.nav-cta {
  background: var(--yellow-accent) !important;
  color: var(--green-dark) !important;
  border-radius: 6px;
}

.nav-cta:hover {
  background: #f57f17 !important;
}

/* ===== BREADCRUMB ===== */
.breadcrumb-bar {
  background: var(--green-pale);
  border-bottom: 1px solid #c8e6c9;
  padding: 10px 40px;
  margin-top: 68px;
}

.breadcrumb-bar nav {
  font-size: 13px;
  color: var(--gray-mid);
}

.breadcrumb-bar a {
  color: var(--green-main);
  text-decoration: none;
}

.breadcrumb-bar a:hover { text-decoration: underline; }
.breadcrumb-bar span { margin: 0 8px; }

/* ===== HERO / SLIDER ===== */
.hero-slider {
  position: relative;
  height: 600px;
  margin-top: 68px;
  overflow: hidden;
}

.slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1s ease;
}

.slide.active { opacity: 1; }

.slide-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(26,58,26,0.85) 0%, rgba(26,58,26,0.4) 60%, transparent 100%);
}

.slide-content {
  position: absolute;
  left: 80px;
  top: 50%;
  transform: translateY(-50%);
  color: white;
  max-width: 520px;
}

.slide-tag {
  display: inline-block;
  background: var(--yellow-accent);
  color: var(--green-dark);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 3px;
  margin-bottom: 16px;
}

.slide-content h1 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 58px;
  line-height: 1.05;
  margin-bottom: 16px;
  text-shadow: 0 2px 12px rgba(0,0,0,0.4);
}

.slide-content p {
  font-size: 16px;
  line-height: 1.7;
  color: rgba(255,255,255,0.85);
  margin-bottom: 28px;
}

.btn-hero {
  display: inline-block;
  background: var(--green-light);
  color: white;
  padding: 14px 32px;
  border-radius: 6px;
  font-weight: 700;
  font-size: 14px;
  text-decoration: none;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  transition: all 0.2s;
  box-shadow: 0 4px 16px rgba(76,175,80,0.4);
}

.btn-hero:hover {
  background: var(--green-mid);
  transform: translateY(-2px);
}

.slide-indicators {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
}

.dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,0.4);
  cursor: pointer;
  transition: all 0.3s;
  border: none;
}

.dot.active {
  background: var(--green-bright);
  width: 28px;
  border-radius: 5px;
}

/* ===== SECTIONS ===== */
.section {
  padding: 72px 40px;
}

.section-alt { background: var(--gray-light); }
.section-dark { background: var(--green-dark); }

.section-header {
  text-align: center;
  margin-bottom: 52px;
}

.section-eyebrow {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--green-main);
  margin-bottom: 10px;
}

.section-dark .section-eyebrow { color: var(--green-bright); }

.section-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 42px;
  color: var(--green-dark);
  letter-spacing: 1px;
}

.section-dark .section-title { color: var(--white); }

.section-subtitle {
  font-size: 15px;
  color: var(--gray-mid);
  margin-top: 10px;
}

/* ===== PRODUCT GRID ===== */
.product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  max-width: 1200px;
  margin: 0 auto;
}

.product-card {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: all 0.3s;
  border: 1px solid #e8e8e8;
}

.product-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
  border-color: var(--green-light);
}

.product-card-img {
  width: 100%;
  height: 190px;
  object-fit: cover;
  background: linear-gradient(135deg, var(--green-pale), #c8e6c9);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 48px;
}

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

.product-badge {
  display: inline-block;
  background: var(--green-pale);
  color: var(--green-mid);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 20px;
  margin-bottom: 10px;
}

.product-card h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: 6px;
  line-height: 1.3;
}

.product-card .product-part {
  font-size: 12px;
  color: var(--gray-mid);
  margin-bottom: 8px;
}

.product-card .product-price {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--green-main);
}

.product-card .product-price span {
  font-size: 12px;
  font-weight: 400;
  color: var(--gray-mid);
}

.product-card-footer {
  padding: 14px 20px;
  border-top: 1px solid #f0f0f0;
  display: flex;
  gap: 8px;
}

.btn-detail {
  flex: 1;
  text-align: center;
  padding: 9px;
  border-radius: 6px;
  font-size: 12px;
  font-weight: 700;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: all 0.2s;
}

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

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

.btn-wa {
  background: #25D366;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  padding: 9px 14px;
  border-radius: 6px;
  font-size: 12px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.2s;
}

.btn-wa:hover { background: #128C7E; }

/* ===== SALES / CONTACT ===== */
.sales-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  max-width: 900px;
  margin: 0 auto;
}

.sales-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 16px;
  padding: 32px 24px;
  text-align: center;
  transition: all 0.3s;
}

.sales-card:hover {
  background: rgba(255,255,255,0.1);
  border-color: var(--green-bright);
  transform: translateY(-4px);
}

.sales-avatar {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--green-mid), var(--green-light));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  margin: 0 auto 16px;
  border: 3px solid var(--green-bright);
}

.sales-card h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: white;
  margin-bottom: 4px;
}

.sales-role {
  font-size: 12px;
  color: var(--green-bright);
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.sales-phone {
  font-size: 15px;
  color: rgba(255,255,255,0.7);
  margin-bottom: 18px;
}

.btn-wa-large {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #25D366;
  color: white;
  padding: 11px 24px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.2s;
}

.btn-wa-large:hover {
  background: #128C7E;
  transform: scale(1.04);
}

/* ===== CATEGORY BANDS ===== */
.category-strips {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  max-width: 100%;
}

.cat-strip {
  position: relative;
  overflow: hidden;
  height: 200px;
  display: flex;
  align-items: flex-end;
  text-decoration: none;
}

.cat-strip-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 0.4s;
}

.cat-strip:hover .cat-strip-bg {
  transform: scale(1.08);
}

.cat-strip-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(26,58,26,0.9) 0%, transparent 60%);
}

.cat-strip-label {
  position: relative;
  z-index: 1;
  padding: 20px;
  color: white;
}

.cat-strip-label span {
  display: block;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 20px;
  font-weight: 700;
  text-transform: uppercase;
}

.cat-strip-label small {
  font-size: 11px;
  color: var(--green-bright);
  letter-spacing: 1px;
}

/* ===== MAP FOOTER ===== */
.footer {
  background: var(--green-dark);
  color: white;
}

.footer-top {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1.5fr;
  gap: 40px;
  padding: 60px 40px 40px;
}

.footer-col h4 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--green-bright);
  margin-bottom: 18px;
}

.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 10px; }

.footer-col ul a {
  text-decoration: none;
  color: rgba(255,255,255,0.6);
  font-size: 13px;
  transition: color 0.2s;
}

.footer-col ul a:hover { color: var(--green-bright); }

.footer-col p {
  font-size: 13px;
  color: rgba(255,255,255,0.6);
  line-height: 1.7;
}

.footer-map {
  border-radius: 10px;
  overflow: hidden;
  border: 2px solid rgba(255,255,255,0.1);
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 20px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 12px;
  color: rgba(255,255,255,0.4);
}

/* ===== PRODUCT PAGE ===== */
.product-detail {
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 40px;
}

.product-gallery {
  display: grid;
  grid-template-rows: auto auto;
  gap: 16px;
}

.main-img {
  width: 100%;
  height: 380px;
  object-fit: cover;
  border-radius: 12px;
  background: var(--green-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 80px;
  cursor: pointer;
  border: 2px solid #e0e0e0;
  transition: border-color 0.2s;
}

.thumb-row {
  display: flex;
  gap: 10px;
}

.thumb {
  width: 80px;
  height: 70px;
  border-radius: 8px;
  border: 2px solid #e0e0e0;
  object-fit: cover;
  cursor: pointer;
  transition: all 0.2s;
  background: var(--green-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
}

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

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

.product-spec-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 24px;
}

.product-spec-table tr { border-bottom: 1px solid #f0f0f0; }

.product-spec-table td {
  padding: 10px 0;
  font-size: 14px;
}

.product-spec-table td:first-child {
  color: var(--gray-mid);
  width: 40%;
}

.product-spec-table td a {
  color: var(--green-main);
  text-decoration: none;
  font-weight: 600;
}

.product-spec-table td a:hover { text-decoration: underline; }

.product-price-big {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 44px;
  color: var(--green-main);
  margin: 12px 0 20px;
}

/* ===== INFO PAGES ===== */
.info-page {
  max-width: 1100px;
  margin: 0 auto;
  padding: 60px 40px;
}

.info-page h1 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 52px;
  color: var(--green-dark);
  margin-bottom: 8px;
}

.info-page .lead {
  font-size: 17px;
  color: var(--gray-mid);
  margin-bottom: 36px;
  line-height: 1.7;
}

.info-section {
  margin-bottom: 52px;
}

.info-section h2 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 28px;
  font-weight: 700;
  color: var(--green-dark);
  margin-bottom: 14px;
  padding-bottom: 8px;
  border-bottom: 3px solid var(--green-light);
}

.info-section p {
  font-size: 15px;
  line-height: 1.8;
  color: #444;
  margin-bottom: 12px;
}

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

.photo-placeholder {
  height: 180px;
  background: linear-gradient(135deg, var(--green-pale), #c8e6c9);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 42px;
  border: 1px solid #c8e6c9;
}

.product-list-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
  border: 1px solid #e0e0e0;
  border-radius: 10px;
  overflow: hidden;
}

.product-list-table th {
  background: var(--green-dark);
  color: white;
  padding: 12px 16px;
  text-align: left;
  font-family: 'Barlow Condensed', sans-serif;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  font-size: 13px;
}

.product-list-table td {
  padding: 11px 16px;
  border-bottom: 1px solid #f0f0f0;
}

.product-list-table tr:last-child td { border-bottom: none; }

.product-list-table tr:hover td { background: var(--green-pale); }

.product-list-table a {
  color: var(--green-main);
  text-decoration: none;
  font-weight: 600;
}

.product-list-table a:hover { text-decoration: underline; }

/* ===== UTILS ===== */
.text-green { color: var(--green-main); }
.badge-green {
  display: inline-block;
  background: var(--green-pale);
  color: var(--green-mid);
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
}

.stats-bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: var(--green-main);
}

.stat-item {
  padding: 28px;
  text-align: center;
  border-right: 1px solid rgba(255,255,255,0.2);
}

.stat-item:last-child { border-right: none; }

.stat-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 44px;
  color: white;
  line-height: 1;
}

.stat-label {
  font-size: 12px;
  color: rgba(255,255,255,0.7);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 4px;
}

@media (max-width: 768px) {
  .navbar { padding: 0 20px; }
  .nav-links { display: none; }
  .hero-slider { height: 400px; }
  .slide-content { left: 24px; }
  .slide-content h1 { font-size: 36px; }
  .product-grid { grid-template-columns: 1fr 1fr; }
  .sales-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .product-info-grid { grid-template-columns: 1fr; }
}
