/* ===========================================
   ECODOT - MAIN STYLESHEET
   Color palette inspired by ecodot logo (image_c170c4.jpg)
   Primary: #469d27 (green) | Hover: #5bb83a | Dark: #377d1e
   Light tints: #f3faf2 #f1faf0 #edf7ed #f6fcf5
   Text: #222 #444 #555
   =========================================== */

/* ---------- Reset & Base ---------- */
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Segoe UI', Arial, sans-serif;
  font-size: 15px;
  line-height: 1.78;
  color: #444444;
  background: #fff;
}
a { color: #469d27; text-decoration: none; transition: 0.25s; }
a:hover { color: #5bb83a; }
img { max-width: 100%; display: block; }
ul { list-style: none; }
h1, h2, h3, h4, h5, h6 { font-weight: 700; line-height: 1.3; }
h1 { font-size: 26px; }
h2 { font-size: 24px; }
h3 { font-size: 18px; }
h4 { font-size: 16px; }
p { margin-bottom: 12px; }

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

/* ---------- Top Bar ---------- */
.topbar {
  background: #469d27;
  color: rgba(255,255,255,0.9);
  font-size: 13px;
  padding: 8px 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 6px;
}
.topbar a {
  color: #fff;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  text-decoration: none;
  transition: opacity 0.2s;
}
.topbar a:hover { opacity: 0.85; color: #fff; }
.topbar .left {
  display: flex;
  align-items: center;
  gap: 0;
  flex-wrap: wrap;
}
.topbar .left a {
  padding: 0 14px 0 0;
  margin-right: 14px;
  border-right: 1px solid rgba(255,255,255,0.3);
}
.topbar .left a:last-child {
  border-right: none;
  margin-right: 0;
  padding-right: 0;
}
.topbar .right {
  display: flex;
  align-items: center;
  gap: 10px;
}
.topbar .right a {
  width: 30px;
  height: 30px;
  background: rgba(255,255,255,0.15);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  gap: 0;
  transition: background 0.2s;
}
.topbar .right a:hover { background: rgba(255,255,255,0.3); opacity: 1; }
.topbar i { margin: 0; }

/* ---------- Header ---------- */
.header {
  background: #fff;
  box-shadow: 0 2px 20px rgba(0,0,0,0.08);
  position: sticky;
  top: 0;
  z-index: 9999;
  border-bottom: 2px solid #f0f0f0;
}
.header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 16px;
  min-height: 65px;
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  flex-shrink: 0;
}
.logo-img {
  height: 120px;
  width: auto;
  display: block;
  margin: -20px 0;    /* Pulls it into place so the extra blank space doesn't push down the header */
}
.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}
.logo-text .ekadanta {
  font-size: 20px;
  font-weight: 800;
  color: #469d27;
  letter-spacing: 0.5px;
  font-family: 'Segoe UI', Arial, sans-serif;
}
.logo-text .enterprises {
  font-size: 11px;
  font-weight: 600;
  color: #555;
  letter-spacing: 2px;
  text-transform: uppercase;
}

/* ---------- Navigation ---------- */
.nav { display: flex; align-items: stretch; height: 65px; }
.nav > ul { display: flex; align-items: stretch; height: 100%; margin: 0; padding: 0; }
.nav > ul > li {
  position: relative;
  display: flex;
  align-items: stretch;
}
.nav > ul > li > a {
  display: flex;
  align-items: center;
  padding: 0 14px;
  font-weight: 600;
  font-size: 13.5px;
  color: #444;
  white-space: nowrap;
  border-bottom: 3px solid transparent;
  transition: color 0.2s, border-color 0.2s;
  text-decoration: none;
}
.nav > ul > li > a:hover,
.nav > ul > li:hover > a {
  color: #469d27;
  border-bottom-color: #469d27;
  background: transparent;
}
.nav > ul > li > a.active {
  color: #469d27;
  border-bottom-color: #469d27;
  background: transparent;
}

/* Dropdown */
.nav .dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: #fff;
  border-top: 3px solid #469d27;
  min-width: 220px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.12);
  z-index: 1000;
  border-radius: 0 0 4px 4px;
}
.nav > ul > li:hover > .dropdown-menu { display: block; }
.nav .dropdown-menu li a {
  display: block;
  padding: 10px 18px;
  font-size: 13px;
  color: #444;
  border-bottom: 1px solid #f0f0f0;
  font-weight: 500;
  transition: background 0.15s, color 0.15s, padding 0.15s;
  text-decoration: none;
}
.nav .dropdown-menu li:last-child a { border-bottom: none; }
.nav .dropdown-menu li a:hover {
  background: #f1faf0;
  color: #469d27;
  padding-left: 24px;
}

/* Download Brochure button */
.nav .brochure-btn {
  display: flex !important;
  align-items: center;
  gap: 6px;
  background: #469d27;
  color: #fff !important;
  padding: 10px 16px !important;
  border-radius: 4px;
  margin: auto 0 auto 8px;
  font-weight: 600;
  font-size: 13px;
  white-space: nowrap;
  border-bottom: none !important;
  height: auto;
  align-self: center;
  transition: background 0.2s !important;
}
.nav .brochure-btn:hover {
  background: #316e1a !important;
  color: #fff !important;
  border-bottom: none !important;
}

/* Hamburger */
.hamburger {
  display: none;
  background: none;
  border: 0;
  font-size: 22px;
  color: #333;
  cursor: pointer;
  padding: 6px 10px;
}

/* ---------- Slider ---------- */
.slider {
  position: relative;
  width: 100%;
  aspect-ratio: 2.5 / 1; /* maintain consistent banner ratio */
  overflow: hidden;
  background: #222222;
}
.slider-track { display: flex; height: 100%; transition: transform 0.65s cubic-bezier(0.4,0,0.2,1); }
.slider-slide {
  flex: 0 0 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
}
.slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0,0,0,0.4);
  color: #fff;
  border: 0;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 18px;
  transition: 0.25s;
  z-index: 10;
}
.slider-btn:hover { background: rgba(230,92,0,0.85); }
.slider-btn.prev { left: 16px; }
.slider-btn.next { right: 16px; }
.slider-dots {
  position: absolute;
  bottom: 18px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 10;
}
.slider-dot {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: rgba(255,255,255,0.5);
  border: 0;
  cursor: pointer;
  padding: 0;
  transition: 0.25s;
}
.slider-dot.active { background: #5bb83a; transform: scale(1.18); }

/* ---------- Sections ---------- */
section { padding: 50px 24px; }
section.alt { background: #f8f8f8; }
.section-head { text-align: center; margin-bottom: 30px; }
.section-head h2 { color: #222222; }
.section-head h3 { color: #469d27; margin-top: 6px; }
.section-head h1 { color: #222222; margin-bottom: 12px; }
.section-head p { max-width: 880px; margin: 12px auto 0; color: #666; }
.divider {
  width: 54px;
  height: 3px;
  background: #5bb83a;
  margin: 12px auto;
  border: 0;
}

/* ---------- Product Grid (Responsive) ---------- */
.product-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
}
.product-card {
  flex: 1 1 calc(25% - 22px);
  max-width: calc(25% - 22px);
}
@media (max-width: 992px) {
  .product-card {
    flex: 1 1 calc(33.333% - 22px);
    max-width: calc(33.333% - 22px);
  }
}
@media (max-width: 768px) {
  .product-card {
    flex: 1 1 calc(50% - 22px);
    max-width: calc(50% - 22px);
  }
}
@media (max-width: 576px) {
  .product-card {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

/* Slider Swiper styling */
.mySwiper {
  width: 100%;
  aspect-ratio: 2.5 / 1;
  overflow: hidden;
  background: #222222;
}
@media (max-width: 700px) {
  .mySwiper { height: 200px; }
}

.product-card {
  background: #fff;
  border: 1px solid #e6e6e6;
  border-radius: 5px;
  overflow: hidden;
  transition: 0.3s;
  display: flex;
  flex-direction: column;
}
.product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(0,0,0,0.13);
}
.product-card img {
  width: 100%;
  height: auto;
  max-height: 192px;
  object-fit: cover;
}
.product-card .card-body {
  padding: 14px 12px;
  text-align: center;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.product-card .card-body h4 { color: #222222; margin-bottom: 6px; }
.product-card .card-body p {
  color: #666;
  font-size: 13px;
  line-height: 1.6;
  margin-bottom: 12px;
  flex: 1;
}
.btn {
  display: inline-block;
  background: #469d27;
  color: #fff;
  padding: 6px 18px;
  border-radius: 3px;
  font-size: 13px;
  font-weight: 600;
  border: 0;
  cursor: pointer;
  transition: 0.25s;
  text-align: center;
}
.btn:hover { background: #377d1e; color: #fff; }
.btn-whatsapp { background: #25d366; }
.btn-whatsapp:hover { background: #1ebd5a; }
.btn-block { display: block; width: 100%; }

/* ---------- Footer ---------- */
.footer {
  background: #222222;
  color: #777;
  text-align: center;
  padding: 24px 16px;
  font-size: 13px;
}
.footer p { margin: 4px 0; }
.footer a { color: #5bb83a; }
.footer a:hover { color: #fff; }

/* ---------- Back to top ---------- */
.back-to-top {
  position: fixed;
  right: 22px;
  bottom: 22px;
  width: 44px;
  height: 44px;
  background: #5bb83a;
  color: #fff;
  border: 0;
  border-radius: 50%;
  font-size: 16px;
  cursor: pointer;
  display: none;
  z-index: 999;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
  transition: 0.25s;
}
.back-to-top:hover { background: #469d27; transform: translateY(-2px); }
.back-to-top.show { display: block; }

/* ---------- About Page ---------- */
.page-banner {
  width: 100%;
  height: 250px;
  max-height: none;
  background-size: cover;
  background-position: center;
  background-color: #f0f0f0; /* fallback */
}
.video-wrap {
  max-width: 720px;
  margin: 30px auto;
}
.video-wrap iframe {
  width: 100%;
  height: 380px;
  border: 0;
  border-radius: 5px;
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}
.about-grid .info-box {
  background: #fff;
  border: 1px solid #e6e6e6;
  border-left: 4px solid #469d27;
  padding: 24px;
  border-radius: 5px;
}
.about-grid .info-box h3 { color: #469d27; margin-bottom: 12px; }
.skills { max-width: 800px; margin: 30px auto 0; }
.skill { margin-bottom: 16px; }
.skill-label { display: flex; justify-content: space-between; margin-bottom: 6px; font-weight: 600; }
.skill-bar { width: 100%; height: 14px; background: #eee; border-radius: 7px; overflow: hidden; }
.skill-fill {
  height: 100%;
  background: linear-gradient(90deg, #469d27, #5bb83a);
  border-radius: 7px;
  transition: width 1.4s ease;
}
.stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  max-width: 1100px;
  margin: 30px auto 0;
}
.stat-box {
  background: linear-gradient(135deg, #469d27, #5bb83a);
  color: #fff;
  padding: 26px 14px;
  text-align: center;
  border-radius: 5px;
}
.stat-box .num { font-size: 32px; font-weight: 700; line-height: 1; }
.stat-box .lbl { margin-top: 6px; font-size: 14px; }
.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(170px, 1fr));
  gap: 14px;
  max-width: 1200px;
  margin: 30px auto 0;
}
.gallery img {
  width: 100%;
  height: auto;
  max-height: 150px;
  object-fit: cover;
  border-radius: 4px;
  transition: 0.3s;
  cursor: pointer;
}
.gallery img:hover { transform: scale(1.04); }

/* ---------- Contact Page ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 30px;
  max-width: 1100px;
  margin: 0 auto;
}
.contact-info { background: #fff; border: 1px solid #e6e6e6; padding: 28px; border-radius: 5px; }
.contact-info h3 { color: #469d27; margin-bottom: 18px; }
.contact-block { display: flex; align-items: flex-start; gap: 14px; margin-bottom: 18px; }
.contact-block .icon {
  background: #469d27;
  color: #fff;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-block .icon i { margin: 0; }
.contact-block p { margin: 0; color: #555; }
.contact-form { background: #fff; border: 1px solid #e6e6e6; padding: 28px; border-radius: 5px; }
.contact-form h3 { color: #469d27; margin-bottom: 18px; }
.form-group { margin-bottom: 14px; }
.form-group label { display: block; font-weight: 600; margin-bottom: 6px; font-size: 14px; }
.form-group input,
.form-group textarea {
  width: 100%;
  padding: 10px 12px;
  border: 1px solid #ddd;
  border-radius: 3px;
  font-family: inherit;
  font-size: 14px;
  transition: 0.2s;
}
.form-group input:focus,
.form-group textarea:focus {
  outline: 0;
  border-color: #469d27;
  box-shadow: 0 0 0 3px rgba(230,92,0,0.12);
}
.form-group textarea { resize: vertical; min-height: 110px; }
.form-msg {
  margin-top: 12px;
  padding: 10px;
  border-radius: 3px;
  font-size: 14px;
  display: none;
}
.form-msg.success { display: block; background: #d4edda; color: #155724; border: 1px solid #c3e6cb; }
.form-msg.error { display: block; background: #f8d7da; color: #721c24; border: 1px solid #f5c6cb; }
.map-wrap { max-width: 1100px; margin: 30px auto 0; }
.map-wrap iframe { width: 100%; height: 350px; border: 0; border-radius: 5px; }

/* ---------- Product Detail Pages ---------- */
.breadcrumb {
  max-width: 1200px;
  margin: 0 auto;
  padding: 14px 16px;
  font-size: 13px;
  color: #666;
}
.breadcrumb a { color: #469d27; }
.breadcrumb span { margin: 0 6px; color: #999; }
.detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}
.gallery-scroll {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  padding-bottom: 10px;
  margin-bottom: 14px;
  scrollbar-width: thin;
}
.gallery-scroll img {
  height: 110px;
  width: 140px;
  object-fit: cover;
  border-radius: 4px;
  border: 2px solid transparent;
  cursor: pointer;
  flex-shrink: 0;
  transition: 0.2s;
}
.gallery-scroll img:hover, .gallery-scroll img.active { border-color: #469d27; }
.main-image {
  width: 100%;
  height: 380px;
  object-fit: cover;
  border-radius: 5px;
  border: 1px solid #e6e6e6;
}
.spec-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}
.spec-table th {
  background: #5bb83a;
  color: #fff;
  text-align: left;
  padding: 10px 12px;
  font-weight: 600;
}
.spec-table td {
  padding: 10px 12px;
  border: 1px solid #e6e6e6;
}
.spec-table tr:nth-child(even) td { background: #fafafa; }
.spec-table tr:hover td { background: #f3faf2; }
.description h3 { color: #222222; margin: 18px 0 10px; }
.description h4 { color: #469d27; margin: 14px 0 8px; }
.description p { color: #555; margin-bottom: 12px; }
.description ul { padding-left: 22px; margin-bottom: 12px; }
.description ul li { list-style: disc; color: #555; margin-bottom: 6px; }

/* ============================================
   RESPONSIVE — MOBILE NAV + CONTACT + GENERAL
   ============================================ */

/* --- Nav overlay backdrop --- */
.nav-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.45);
  z-index: 9998;
  transition: opacity 0.3s;
}
.nav-overlay.show { display: block; }

/* --- Mobile close button inside nav --- */
.nav-close {
  display: none;
  position: absolute;
  top: 14px;
  right: 14px;
  background: none;
  border: none;
  font-size: 22px;
  color: #555;
  cursor: pointer;
  line-height: 1;
  padding: 4px 8px;
  border-radius: 4px;
  z-index: 1;
}
.nav-close:hover { background: #f0f0f0; color: #469d27; }

@media (max-width: 900px) {
  /* Hamburger visible */
  .hamburger {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 6px;
    border: 1px solid #e0e0e0;
    background: #fff;
    font-size: 18px;
    color: #333;
    cursor: pointer;
    transition: background 0.2s, color 0.2s;
    flex-shrink: 0;
  }
  .hamburger:hover { background: #469d27; color: #fff; border-color: #469d27; }
  .hamburger.active { background: #469d27; color: #fff; border-color: #469d27; }

  /* Slide-in nav panel */
  .nav {
    position: fixed;
    top: 0;
    right: -320px;
    width: 300px;
    height: 100vh;
    background: #fff;
    box-shadow: -6px 0 24px rgba(0,0,0,0.18);
    z-index: 9999;
    transition: right 0.3s cubic-bezier(0.4,0,0.2,1);
    overflow-y: auto;
    overflow-x: hidden;
    padding: 60px 0 30px;
  }
  .nav.open { right: 0; }

  /* Close X button visible in mobile */
  .nav-close { display: block; }

  /* Nav header label */
  .nav::before {
    content: "MENU";
    display: block;
    position: absolute;
    top: 18px;
    left: 20px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    color: #469d27;
  }

  /* Nav list */
  .nav > ul {
    flex-direction: column;
    align-items: stretch;
    width: 100%;
    height: auto;
    gap: 0;
  }
  .nav > ul > li {
    width: 100%;
    display: block;
    align-items: stretch;
  }

  /* Nav links */
  .nav > ul > li > a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 20px;
    font-size: 14px;
    font-weight: 600;
    color: #333;
    border-bottom: 1px solid #f2f2f2;
    border-left: 3px solid transparent;
    transition: background 0.15s, color 0.15s, border-color 0.15s;
  }
  .nav > ul > li > a.active {
    color: #469d27;
    background: #f1faf0;
    border-left-color: #469d27;
    border-bottom-color: #f2f2f2;
  }
  .nav > ul > li > a:hover {
    color: #469d27;
    background: #f6fcf5;
    border-left-color: #469d27;
    border-bottom-color: #f2f2f2;
  }

  /* Dropdown arrow indicator */
  .nav > ul > li.dropdown > a::after {
    content: "\f078";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    font-size: 11px;
    color: #999;
    transition: transform 0.25s;
    margin-left: auto;
    padding-left: 8px;
    flex-shrink: 0;
  }
  /* hide the inline caret icon on mobile — we use ::after */
  .nav > ul > li.dropdown > a .fa-caret-down { display: none; }
  .nav > ul > li.dropdown.open > a::after { transform: rotate(180deg); color: #469d27; }

  /* Dropdown sub-menu */
  .nav .dropdown-menu {
    position: static;
    box-shadow: none;
    border-top: none;
    border-radius: 0;
    background: #f8f9fc;
    display: none;
    min-width: 100%;
  }
  .nav .dropdown.open > .dropdown-menu { display: block; }
  .nav .dropdown-menu li a {
    padding: 11px 18px 11px 36px;
    font-size: 13px;
    color: #555;
    border-bottom: 1px solid #eef0f4;
    position: relative;
  }
  .nav .dropdown-menu li a::before {
    content: "›";
    position: absolute;
    left: 20px;
    color: #469d27;
    font-size: 16px;
    line-height: 1;
    top: 50%;
    transform: translateY(-50%);
  }
  .nav .dropdown-menu li a:hover {
    background: #edf7ed;
    color: #469d27;
    padding-left: 40px;
  }
  .nav .dropdown-menu li:last-child a { border-bottom: none; }

  /* Brochure button */
  .nav .brochure-btn {
    display: flex !important;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin: 16px 16px 8px !important;
    width: calc(100% - 32px);
    padding: 12px 16px !important;
    border-radius: 6px;
    border-bottom: none !important;
    border-left: none !important;
    font-size: 13px;
  }

  /* General layout */
  .topbar { font-size: 12px; padding: 7px 14px; }
  .topbar .left a { padding-right: 10px; margin-right: 10px; font-size: 12px; }
  .logo-text .ekadanta { font-size: 17px; }
  .logo-text .enterprises { font-size: 10px; }
  .about-grid, .contact-grid, .detail-grid { grid-template-columns: 1fr; }
  .stats-row { grid-template-columns: repeat(2, 1fr); }
  .video-wrap iframe { height: 240px; }
  .main-image { height: 280px; }
  .page-banner { height: 160px; max-height: 160px; }

  /* Contact page responsive */
  .contact-grid { gap: 20px; }
  .contact-info, .contact-form { padding: 20px 16px; }
  .map-wrap iframe { height: 260px; }
  .contact-block { gap: 12px; }
  .contact-block .icon { width: 34px; height: 34px; font-size: 14px; flex-shrink: 0; }
}

@media (max-width: 600px) {
  section { padding: 28px 14px; }
  h1 { font-size: 19px; }
  h2 { font-size: 17px; }

  /* Topbar stacked on small screens */
  .topbar {
    flex-direction: column;
    text-align: center;
    gap: 5px;
    padding: 8px 12px;
  }
  .topbar .left {
    flex-direction: column;
    gap: 3px;
    align-items: center;
  }
  .topbar .left a {
    border-right: none !important;
    padding-right: 0 !important;
    margin-right: 0 !important;
    justify-content: center;
    font-size: 11px;
  }
  .topbar .right { justify-content: center; }

  .header .container { padding: 0 12px; }
  .hamburger { width: 36px; height: 36px; font-size: 16px; }

  /* Contact form mobile */
  .contact-grid { grid-template-columns: 1fr; gap: 16px; }
  .contact-info, .contact-form { padding: 18px 14px; border-radius: 6px; }
  .contact-info h3, .contact-form h3 { font-size: 16px; margin-bottom: 14px; }
  .contact-block { margin-bottom: 14px; }
  .form-group { margin-bottom: 12px; }
  .form-group label { font-size: 13px; }
  .form-group input, .form-group textarea { font-size: 14px; padding: 9px 10px; }
  .form-group textarea { min-height: 100px; }
  .btn.btn-block { font-size: 14px; padding: 12px; }
  .map-wrap { margin-top: 16px; }
  .map-wrap iframe { height: 220px; border-radius: 6px; }
  .section-head h1 { font-size: 18px; }

  /* Product grids */
  .product-card img { height: auto; max-height: 160px; }
  .gallery img { height: auto; max-height: 120px; }
  .stats-row { grid-template-columns: 1fr 1fr; gap: 10px; }
  .stat-box { padding: 16px 10px; }
  .stat-box .num { font-size: 24px; }
  .form-msg { font-size: 13px; }

  /* Product detail */
  .product-title-bar { padding: 14px 14px; }
  .product-title-bar h1 { font-size: 17px; }
  .product-detail-wrap { padding: 20px 14px; }
  .spec-list h5 { font-size: 13px; }
  .gallery-scroll img { height: 80px; width: 110px; }
}

/* ---------- Product Detail Spec List (h5 style) ---------- */
.spec-list h5 {
  font-size: 14px;
  font-weight: 600;
  color: #444;
  margin-bottom: 8px;
  padding: 6px 0;
  border-bottom: 1px solid #f0f0f0;
}
.spec-list h5:last-child { border-bottom: none; }

/* ---------- Product Title Bar Banner ---------- */
.product-title-bar {
  background: #f8f8f8;
  border-bottom: 1px solid #e6e6e6;
  padding: 18px 24px;
  text-align: center;
}
.product-title-bar h1 {
  color: #222;
  font-size: 22px;
}

/* ---------- Product Detail Spec List (matches original h5 style) ---------- */
.spec-list h5 {
  font-size: 14px;
  font-weight: 600;
  color: #444;
  margin-bottom: 0;
  padding: 7px 0;
  border-bottom: 1px solid #f0f0f0;
  line-height: 1.5;
}
.spec-list h5:last-child { border-bottom: none; }

/* ---------- Product Title Bar ---------- */
.product-title-bar {
  background: #f8f8f8;
  border-bottom: 1px solid #e6e6e6;
  padding: 18px 24px;
  text-align: center;
}
.product-title-bar h1 {
  color: #222;
  font-size: 22px;
  margin: 0;
}
.product-detail-wrap {
  max-width: 1200px;
  margin: 0 auto;
  padding: 30px 16px;
}
.product-section-head {
  color: #469d27;
  margin-bottom: 20px;
  font-size: 20px;
}

/* ---------- Swiper Slide ---------- */
.swiper-slide {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  width: 100%;
  height: 100%;
}