/* =====================================
   GLOBAL RESET
===================================== */
*{
  margin:0;
  padding:0;
  box-sizing:border-box;
}

html,body{
  width:100%;
  overflow-x:hidden;
  background:#f4f6f8;
  font-family:'Poppins', Arial, sans-serif;
}

/* =====================================
   CONTAINER
===================================== */
.page-container{
  width:92%;
  max-width:1200px;
  margin:0 auto;
}

/* =====================================
   HEADER
===================================== */
.site-header{
  background:linear-gradient(180deg,#0d4d2b,#0f6b3d);
  border-bottom:4px solid #22c55e;
  position:sticky;
  top:0;
  z-index:9999;
}

.header-flex{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:14px 20px;
}

.brand h1{
  color:#fff;
  font-size:20px;
  font-weight:800;
}

.brand p{
  color:#bbf7d0;
  font-size:12px;
}

.desktop-nav{
  display:flex;
  gap:18px;
}

.desktop-nav a{
  color:#e0fce9;
  text-decoration:none;
  padding:8px 16px;
  border-radius:30px;
  font-weight:600;
  font-size:14px;
  transition:.3s;
}

.desktop-nav a:hover,
.desktop-nav a.active{
  background:#22c55e;
  color:#fff;
}

@media(max-width:768px){
  .desktop-nav{display:none;}
}

/* =====================================
   MOBILE MENU BUTTON
===================================== */
.menu-btn{
  background:#22c55e;
  border:none;
  color:#fff;
  font-size:22px;
  padding:8px 14px;
  border-radius:8px;
  cursor:pointer;
  display:none;
}

@media(max-width:768px){
  .menu-btn{display:block;}
}

/* =====================================
   SIDEBAR
===================================== */
.sidebar{
  position:fixed;
  top:0;
  left:-280px;
  width:260px;
  height:100%;
  background:linear-gradient(180deg,#0f6b3d,#063d24);
  padding:25px 20px;
  transition:.4s ease;
  z-index:10000;
  box-shadow:4px 0 20px rgba(0,0,0,.3);
  overflow-y:auto;
}

.sidebar.active{ left:0; }

.sidebar h2{
  color:#fff;
  margin-bottom:25px;
  text-align:center;
  border-bottom:1px solid rgba(255,255,255,.2);
  padding-bottom:10px;
}

.sidebar nav{
  display:flex;
  flex-direction:column;
  gap:10px;
}

.sidebar nav a{
  text-decoration:none;
  color:#d1fae5;
  padding:10px 14px;
  border-radius:8px;
  font-size:14px;
  transition:.3s;
  background:rgba(255,255,255,.05);
  border:1px solid rgba(255,255,255,.1);
}

.sidebar nav a:hover{
  background:#22c55e;
  color:#fff;
  transform:translateX(5px);
}

/* =====================================
   OVERLAY
===================================== */
.overlay{
  position:fixed;
  inset:0;
  background:rgba(0,0,0,.5);
  backdrop-filter:blur(2px);
  opacity:0;
  visibility:hidden;
  transition:.3s;
  z-index:9999;
}

.overlay.active{
  opacity:1;
  visibility:visible;
}

/* =====================================
   HERO
===================================== */
.hero{
  background:linear-gradient(120deg,#0f6b3d,#0b4f2e);
  color:#fff;
  padding:50px 20px;
  text-align:center;
  border-radius:14px;
  margin:30px 0;
}

.hero h1{
  font-size:32px;
  margin-bottom:12px;
}

.hero span{ color:#22c55e; }

/* =====================================
   CATEGORY GRID
===================================== */
.category-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
  gap:30px;
  margin:50px 0;
}

.category-card{
  background:#fff;
  border-radius:18px;
  padding:28px 22px;
  border:1px solid #e5e7eb;
  box-shadow:0 8px 25px rgba(0,0,0,.07);
  transition:.3s;
}

.category-card:hover{
  transform:translateY(-8px);
  box-shadow:0 18px 40px rgba(0,0,0,.12);
  border-color:#22c55e;
}

.category-card h2{
  color:#0f6b3d;
  margin-bottom:18px;
}

/* SUB CATEGORY */
.sub-grid{
  display:flex;
  flex-direction:column;
  gap:10px;
  margin-bottom:15px;
}

.sub-card{
  display:flex;
  justify-content:space-between;
  padding:10px 14px;
  background:#f9fafb;
  border-radius:8px;
  text-decoration:none;
  font-size:14px;
  font-weight:600;
  color:#333;
  border:1px solid #e5e7eb;
  transition:.3s;
}

.sub-card:hover{
  background:#e6f7ee;
  border-color:#22c55e;
  color:#0f6b3d;
}

/* =====================================
   PRODUCT GRID
===================================== */
.product-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
  gap:28px;
  margin-bottom:50px;
}

.product-card{
  background:#fff;
  border-radius:16px;
  overflow:hidden;
  border:1px solid #e5e7eb;
  box-shadow:0 6px 20px rgba(0,0,0,.07);
  transition:.3s;
  display:flex;
  flex-direction:column;
}

.product-card:hover{
  transform:translateY(-8px);
  box-shadow:0 18px 35px rgba(0,0,0,.15);
  border-color:#22c55e;
}

.product-card img{
  width:100%;
  height:220px;
  object-fit:contain;
  background:#fafafa;
  padding:15px;
}

.product-content{
  padding:18px;
  flex-grow:1;
}

.product-price{
  color:#e60000;
  font-size:22px;
  font-weight:700;
  margin:12px 0;
}

.view-btn{
  display:block;
  text-align:center;
  background:#0a7f3f;
  color:#fff;
  padding:10px;
  border-radius:8px;
  text-decoration:none;
  font-weight:600;
  transition:.3s;
}

.view-btn:hover{
  background:#065c2d;
}

/* =====================================
   FOOTER
===================================== */
.footer{
  background:#000;
  color:#bbb;
  padding:45px 0 20px;
  margin-top:60px;
}

.footer-container{
  width:92%;
  max-width:1200px;
  margin:auto;
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
  gap:30px;
}

.footer h3{
  color:#fff;
  margin-bottom:15px;
}

.footer a{
  color:#bbb;
  text-decoration:none;
}

.footer a:hover{
  color:#25D366;
}

.footer-bottom{
  border-top:1px solid #222;
  margin-top:25px;
  padding-top:15px;
  text-align:center;
  font-size:14px;
}

/* ===============================
   BREADCRUMB
================================ */
.breadcrumb{
  margin:20px 0;
  padding:10px 15px;
  background:#eefaf3;
  border-radius:8px;
  font-size:14px;
  border:1px solid #d1fae5;
}

.breadcrumb a{
  text-decoration:none;
  color:#0a7f3f;
  font-weight:600;
}

.breadcrumb span{
  color:#555;
}

/* ===============================
   PRODUCT WRAPPER
================================ */
.product-wrapper{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:40px;
  background:#fff;
  padding:30px;
  border-radius:16px;
  box-shadow:0 10px 30px rgba(0,0,0,.08);
  margin-bottom:40px;
}


.product-image img {
  width: 100%;
  max-width: 100%;
  height: auto;
  object-fit: contain; /* optional if you want full container fit */
  display: block;
  margin: 0 auto;
}



.seo-tags{
margin-top:30px;
background:#f0fdf4;
padding:20px;
border-radius:12px;
border:1px solid #bbf7d0;
}

.seo-tags h3{
margin-bottom:15px;
color:#0a7f3f;
font-size:18px;
}

.seo-tags a{
display:inline-block;
margin:5px;
padding:6px 12px;
background:#22c55e;
color:#fff;
border-radius:20px;
text-decoration:none;
font-size:13px;
transition:0.3s;
}

.seo-tags a:hover{
background:#15803d;
}



.hero{
  background: linear-gradient(120deg,#0f6b3d,#0b4f2e);
  color: #fff;
  padding: 30px 20px;       /* Reduced padding */
  text-align: center;
  border-radius: 14px;
  margin: 20px 0;           /* Less margin */
  max-width: 1000px;        /* Optional: limit width */
  margin-left: auto;
  margin-right: auto;
}

.hero h1{
  font-size: 28px;          /* Slightly smaller */
  margin-bottom: 10px;
  line-height: 1.3;         /* Tighter spacing */
}

.hero p{
  font-size: 16px;           /* Fit better */
  margin: 0;
}

/* Responsive tweak */
@media(max-width:768px){
  .hero{
    padding: 20px 15px;
  }
  .hero h1{
    font-size: 22px;
  }
  .hero p{
    font-size: 14px;
  }
}



/* ===== CONTACT HERO ===== */
.contact-hero{
  background: linear-gradient(120deg,#0f6b3d,#0b4f2e);
  color:#fff;
  padding: 30px 20px;
  text-align:center;
  border-radius:14px;
  margin:20px 0;
  max-width:1000px;
  margin-left:auto;
  margin-right:auto;
}

.contact-hero h1{
  font-size:28px;
  margin-bottom:10px;
  line-height:1.3;
}

.contact-hero p{
  font-size:16px;
  margin:0;
}

@media(max-width:768px){
  .contact-hero{
    padding:20px 15px;
  }
  .contact-hero h1{
    font-size:22px;
  }
  .contact-hero p{
    font-size:14px;
  }
}

/* ===== CONTACT WRAPPER ===== */
.contact-wrapper{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:30px;
  margin:40px 0;
}

@media(max-width:768px){
  .contact-wrapper{
    grid-template-columns:1fr;
    gap:20px;
  }
}

/* ===== CONTACT BOX ===== */
.contact-box{
  background:#fff;
  padding:25px;
  border-radius:14px;
  box-shadow:0 8px 25px rgba(0,0,0,.06);
}

.contact-box h2{
  margin-bottom:15px;
  color:#0a7f3f;
  font-size:20px;
}

.contact-box p{
  font-size:14px;
  margin-bottom:10px;
}

.contact-box a{
  color:#0a7f3f;
  text-decoration:none;
}

.contact-box a:hover{
  text-decoration:underline;
}

/* ===== FORM ===== */
.contact-box form input,
.contact-box form textarea{
  width:100%;
  padding:10px 14px;
  margin-bottom:12px;
  border:1px solid #e5e7eb;
  border-radius:8px;
  font-size:14px;
  font-family:'Poppins', sans-serif;
}

.contact-box form button{
  background:#0a7f3f;
  color:#fff;
  border:none;
  padding:10px 18px;
  border-radius:8px;
  cursor:pointer;
  font-weight:600;
  transition:.3s;
}

.contact-box form button:hover{
  background:#065c2d;
}



/* ===== CATEGORY HERO REFINED ===== */
.category-hero {
  background: linear-gradient(135deg, #0f6b3d, #0b4f2e);
  color: #fff;
  padding: 25px 20px;          /* reduced padding */
  text-align: center;
  border-radius: 16px;
  margin: 20px auto;           /* reduced top/bottom margin */
  max-width: 900px;            /* slightly narrower for better proportion */
  box-shadow: 0 8px 20px rgba(0,0,0,0.12);
  position: relative;
  overflow: hidden;
}

/* Optional floating shapes */
.category-hero::before,
.category-hero::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  opacity: 0.15;
  background: #22c55e;
}

.category-hero::before {
  width: 120px;
  height: 120px;
  top: -40px;
  left: -40px;
}

.category-hero::after {
  width: 150px;
  height: 150px;
  bottom: -60px;
  right: -60px;
}

.category-hero h1 {
  font-size: 28px;
  font-weight: 800;
  margin-bottom: 8px;          /* smaller gap */
  line-height: 1.2;
  text-shadow: 1px 1px 4px rgba(0,0,0,0.25);
}

.category-hero p {
  font-size: 16px;
  margin: 0;
  font-weight: 500;
  color: #d1f7d3;
  text-shadow: 1px 1px 2px rgba(0,0,0,0.2);
}

/* RESPONSIVE */
@media(max-width:768px){
  .category-hero {
    padding: 18px 15px;         /* reduced padding for mobile */
  }
  .category-hero h1 {
    font-size: 22px;
  }
  .category-hero p {
    font-size: 14px;
  }
}




.product-title{
  font-size:28px;
  font-weight:700;
  color:#0f172a;
  margin-bottom:15px;
}

/* ===============================
   BUTTONS
================================ */
.btn{
  display:inline-block;
  padding:10px 18px;
  border-radius:8px;
  text-decoration:none;
  font-weight:600;
  margin:8px 8px 8px 0;
  transition:.3s;
  color:#fff;
  border:none;
  cursor:pointer;
}

.btn.call{ background:#0a7f3f; }
.btn.call:hover{ background:#065c2d; }

.btn.whatsapp{ background:#25D366; }
.btn.whatsapp:hover{ background:#1da851; }

/* ===============================
   SPECIFICATION SECTION
================================ */
.section{
  margin-top:50px;
  background:#fff;
  padding:25px;
  border-radius:14px;
  box-shadow:0 8px 25px rgba(0,0,0,.06);
}

.section h2{
  margin-bottom:15px;
  color:#0a7f3f;
}

/* TABLE */
.section table{
  width:100%;
  border-collapse:collapse;
}

.section table td{
  border:1px solid #e5e7eb;
  padding:10px;
  font-size:14px;
}

.section table tr:nth-child(even){
  background:#f9fafb;
}

/* ===============================
   SEO BOX
================================ */
.seo-box{
  margin-top:40px;
  background:#eefaf3;
  padding:25px;
  border-radius:14px;
  border:1px solid #d1fae5;
}

.seo-box h2{
  color:#0a7f3f;
  margin-bottom:10px;
}

/* ===============================
   RELATED PRODUCTS
================================ */
.related-section{
  margin-top:60px;
}

.related-section h2{
  margin-bottom:20px;
  color:#0a7f3f;
}

.related-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
  gap:20px;
}

.related-card{
  background:#fff;
  border-radius:14px;
  overflow:hidden;
  border:1px solid #e5e7eb;
  transition:.3s;
  text-align:center;
  box-shadow:0 5px 15px rgba(0,0,0,.05);
}

.related-card:hover{
  transform:translateY(-6px);
  box-shadow:0 15px 30px rgba(0,0,0,.12);
  border-color:#0a7f3f;
}

.related-card img{
  width:100%;
  height:180px;
  object-fit:contain;
  padding:15px;
  background:#f9fafb;
}

.related-card h3{
  font-size:15px;
  padding:10px;
  color:#1f2937;
}

.rel-price{
  color:#e60000;
  font-weight:700;
  padding-bottom:15px;
  font-size:18px;
}

/* ===============================
   RESPONSIVE
================================ */
@media(max-width:800px){
  .product-wrapper{
    grid-template-columns:1fr;
  }
}


@media(max-width:768px){

  .header-flex{
    justify-content:center;
    position:relative;
  }

  .menu-btn{
    position:absolute;
    left:15px;
  }

  .brand{
    text-align:center;
  }

}