/* =========================================
   Ecozmart - Full Responsive CSS
   Put this in: css/style.css
   ========================================= */

:root{
  --bg:#f6faf4;
  --border:#b9d6b3;
  --ink:#121212;
  --muted:#5b6b5c;

  --card:#ffffff;
  --hero:#f5f8c9;

  --btn:#274e10;
  --btnText:#ffffff;
  --btn2:#ffffff;

  --radius:18px;
  --shadow:0 8px 30px rgba(0,0,0,.06);
}

*{ box-sizing:border-box; }

html, body{ height:100%; }

body{
  margin:0;
  font-family:Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color:var(--ink);
  background:var(--bg);
  min-height:100vh;
}

/* Cement texture background */
body::after{
  content:"";
  position:fixed;
  inset:0;
  pointer-events:none;
  z-index:0;
  background:
    linear-gradient(0deg, rgba(0,0,0,0.015), rgba(0,0,0,0.015)),
    linear-gradient(90deg, rgba(0,0,0,0.02) 1px, transparent 1px),
    linear-gradient(rgba(0,0,0,0.02) 1px, transparent 1px);
  background-size: cover, 60px 60px, 60px 60px;
}

/* Layout */
.wrap{
  width:min(1400px, calc(100% - 48px));
  margin:48px auto;
  position:relative;
  z-index:1;
}

.panel{
  background:var(--card);
  border:2px solid var(--border);
  border-radius:22px;
  box-shadow:var(--shadow);
  padding:18px;
  position:relative;
}

/* Topbar */
.topbar{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
  padding:12px 14px;
  border:2px solid var(--border);
  border-radius:16px;
  background:#fff;
}

.brand{ display:flex; align-items:center; gap:12px; }

.logo{ display:flex; align-items:center; text-decoration:none; }

.brand img{
  height:60px;
  width:auto;
  max-width:100%;
  object-fit:contain;
  display:block;
}

/* Nav */
.main-nav{
  display:flex;
  align-items:center;
  gap:18px;
  flex-wrap:wrap;
  justify-content:flex-end;
  font-size:14px;
  color:#3e4d3f;
}

.main-nav a{
  text-decoration:none;
  color:inherit;
  padding:8px 12px;
  border-radius:999px;
  transition:.2s ease;
}

.main-nav a:hover{ background:rgba(185,214,179,.35); }

.main-nav a.active{
  border:2px solid var(--border);
  background:#f7fbf6;
}

/* ✅ Grid: 2 columns on desktop (this is what you were missing) */
.grid{
  margin-top:14px;
  display:grid;
  gap:14px;
}

.hero-grid{
  grid-template-columns: 1.05fr 0.95fr;
  align-items:stretch;
}

/* Hero */
.hero{
  background:var(--hero);
  border:2px solid #cfe2a8;
  border-radius:var(--radius);
  padding:34px 34px 28px;
  min-height:330px;
  display:flex;
  flex-direction:column;
  justify-content:center;
}

.kicker{
  font-size:13px;
  letter-spacing:1.3px;
  font-weight:700;
  color:#334233;
  text-transform:uppercase;
  margin-bottom:14px;
}

h1{
  margin:0 0 14px;
  font-size:48px;
  line-height:1.05;
  letter-spacing:-1.2px;
}

.desc{
  margin:0 0 22px;
  max-width:46ch;
  color:var(--muted);
  font-size:14px;
  line-height:1.7;
}

.actions{
  display:flex;
  gap:14px;
  flex-wrap:wrap;
}

/* Buttons */
.btn{
  border:none;
  padding:12px 18px;
  border-radius:999px;
  font-weight:700;
  font-size:13px;
  cursor:pointer;
  transition:.2s ease;
  letter-spacing:.2px;
  text-decoration:none;
  display:inline-flex;
  align-items:center;
  justify-content:center;
}

.btn.primary{
  background:var(--btn);
  color:var(--btnText);
  box-shadow:0 10px 20px rgba(39,78,16,.18);
}

.btn.primary:hover{ transform:translateY(-1px); }

/* Slider */
.heroImage{
  border-radius:var(--radius);
  border:2px solid #d6e8d0;
  overflow:hidden;
  min-height:330px;
  width:100%;
  position:relative;
  background:
    radial-gradient(circle at 30% 25%, rgba(255,255,255,.7), transparent 55%),
    linear-gradient(135deg, #d3f0d0, #f7e6c5);
}

.heroImage.slider img{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
  opacity:0;
  transition:opacity 0.8s ease-in-out;
}

.heroImage img{ 
    width:100%; 
    height:100%; 
    object-fit:cover; 
    display:block; 
    filter:saturate(1.05); 
}
.heroImage.slider{ 
    position:relative; 
} 
.heroImage.slider img{ 
    position:absolute; 
    inset:0; 
    opacity:0; 
    transition: opacity 0.8s ease-in-out; 
}
.heroImage.slider img.active{ 
    opacity:1;
    position:relative; 
}

/* Brand slider */
.brands-section{ 
    margin-top:28px; 
}

.brands-section h2{
  text-align:center;
  margin:28px 0 18px;
  font-size:40px;
  line-height:1.05;
  letter-spacing:-1.2px;
}

.brand-slider{
  overflow:hidden;
  position:relative;
  width:100%;
  padding:26px 0;
  background:#f6faf4;
  border:2px solid var(--border);
  border-radius:var(--radius);
}

.brand-track{
  display:flex;
  gap:50px;
  animation:scroll 30s linear infinite;
  width:max-content;
  padding:0 20px;
}

.brand-item{ 
    flex:0 0 auto; 
    display:flex; 
    align-items:center; 
    justify-content:center; }

.brand-item img{
  max-width:220px;
  max-height:120px;
  object-fit:contain;
  opacity:0.85;
  transition:all 0.25s ease;
}

.brand-item img:hover{ 
    transform:scale(1.10); 
    opacity:1; 
}

@keyframes scroll{
  0%{ transform:translateX(0); }
  100%{ transform:translateX(-50%); }
}

/* Facebook section */
.facebook-section{
  margin-top:28px;
  padding:40px 30px;
  background:#f7fbf6;
  border:2px solid var(--border);
  border-radius:var(--radius);
}

.facebook-section h2{
  text-align:center;
  font-size:36px;
  margin:0 0 24px;
}

.facebook-embed{
  display:flex;
  justify-content:center;
}

.facebook-embed iframe{
  max-width:100%;
  border-radius:12px;
  box-shadow:var(--shadow);
}

/* Footer */
.site-footer{
  margin-top:40px;
  padding:50px 40px 20px;
  border-top:2px solid var(--border);
  background:#f7fbf6;
  border-radius:var(--radius);
}

.footer-grid{
  display:grid;
  grid-template-columns:2fr 1.2fr 1fr 1.5fr;
  gap:34px;
}

.footer-brand img{ 
    height:42px; 
    margin-bottom:12px; 
}

.footer-brand p{
  font-size:14px;
  color:var(--muted);
  max-width:320px;
  margin:0;
}

.footer-brand2 p{
  font-size:16px;
  color:var(--muted);
  max-width:320px;
  margin:5px;
}

.footer-links h4{
  font-size:15px;
  font-weight:700;
  margin:0 0 12px;
  color:#274e10;
}

.footer-links a{
  display:block;
  font-size:14px;
  color:var(--muted);
  text-decoration:none;
  margin-bottom:8px;
  transition:color .2s ease;
}

.footer-links a:hover{ 
    color:#274e10; 
}

.brand-links{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:20px;
}


.brand-links ul{ 
    list-style:none; 
    padding:0; 
    margin:0; 
}
.brand-links li{ 
    margin-bottom:8px; 
}

.footer-social .social-icons{
  display:flex;
  gap:12px;
  margin-top:10px;
}

.footer-social .social-icons a{
  width:38px;
  height:38px;
  border-radius:50%;
  border:1.5px solid var(--border);
  display:flex;
  align-items:center;
  justify-content:center;
  color:#274e10;
  text-decoration:none;
  background:#fff;
  transition:all 0.25s ease;
}

.footer-social .social-icons a:hover{
  background:#274e10;
  color:#fff;
  transform:translateY(-2px);
}

.footer-social .social-icons i{ font-size:16px; line-height:1; }

.footer-bottom{
  margin-top:26px;
  padding-top:14px;
  border-top:1px solid #cfe2a8;
  text-align:center;
  font-size:13px;
  color:#6b7a6d;
}

/* Back to top */
.back-to-top{
  position:fixed;
  right:18px;
  bottom:18px;
  width:44px;
  height:44px;
  border-radius:999px;
  border:1.5px solid var(--border);
  background:rgba(255,255,255,0.95);
  color:#274e10;
  display:grid;
  place-items:center;
  cursor:pointer;
  box-shadow:var(--shadow);
  opacity:0;
  visibility:hidden;
  transform:translateY(10px);
  transition:all .25s ease;
  z-index:999;
}

.back-to-top.show{
  opacity:1;
  visibility:visible;
  transform:translateY(0);
}

.back-to-top:hover{
  background:#274e10;
  color:#fff;
}

/* Make topbar act nicely as a bootstrap navbar */
.topbar.navbar{
  padding:12px 14px; /* keep your spacing */
}

/* Bootstrap toggler styling to match your theme */
.topbar .navbar-toggler{
  border:2px solid var(--border);
  border-radius:999px;
  padding:6px 10px;
}

.topbar .navbar-toggler:focus{
  box-shadow:none;
}

/* Make burger icon visible */
.topbar .navbar-toggler-icon{
  background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3E%3Cpath stroke='rgba(39,78,16,0.9)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
}

/* Keep your pill style, but apply to Bootstrap nav-link */
.main-nav .nav-link{
  color:inherit;
  padding:8px 12px;
  border-radius:999px;
  text-decoration:none;
  transition:.2s ease;
  display:inline-block;
}

.main-nav .nav-link:hover{
  background:rgba(185,214,179,.35);
}

.main-nav .nav-link.active{
  border:2px solid var(--border);
  background:#f7fbf6;
}

/* Mobile collapsed menu spacing */
@media (max-width: 991.98px){
  .topbar .navbar-collapse{
    margin-top:10px;
  }

  .main-nav{
    width:100%;
    gap:0;
  }

  .main-nav .nav-link{
    width:100%;
    margin:6px 0 0;
    text-align:left;
  }
}

/* =========================
   ABOUT US SECTION STYLES
   Add to css/style.css
   ========================= */

.about-section{
  margin-top:28px;
  padding:40px 30px;
  background:#ffffff;
  border:2px solid var(--border);
  border-radius:var(--radius);
}

.about-grid{
  display:grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap:18px;
  align-items:stretch;
}

.about-card{
  border:2px solid #d6e8d0;
  border-radius:var(--radius);
  background:#f7fbf6;
  box-shadow:var(--shadow);
  padding:28px;
}

.about-hero{
  background:var(--hero);
  border-color:#cfe2a8;
}

.about-kicker{
  font-size:18px;
  letter-spacing:1.3px;
  font-weight:800;
  color:#334233;
  text-transform:uppercase;
  margin-top:20px;
  margin-bottom:20px;
}

.about-title{
  margin:0 0 14px;
  font-size:36px;
  line-height:1.12;
  letter-spacing:-0.8px;
}

.about-text{
  margin:0 0 18px;
  color:var(--muted);
  font-size:14px;
  line-height:1.75;
  max-width:60ch;
}

.about-actions{
  display:flex;
  gap:12px;
  flex-wrap:wrap;
}

/* Outline button that matches your theme */
.btn.outline{
  background:var(--btn2);
  color:var(--btn);
  border:2px solid var(--btn);
  box-shadow:none;
}

.btn.outline:hover{
  transform:translateY(-1px);
}

/* Highlights list */
.about-highlights{
  display:flex;
  flex-direction:column;
  gap:14px;
}

.highlight{
  display:flex;
  gap:14px;
  align-items:flex-start;
  padding:14px;
  background:#ffffff;
  border:1.5px solid var(--border);
  border-radius:14px;
}

.highlight .icon{
  width:42px;
  height:42px;
  border-radius:12px;
  border:1.5px solid var(--border);
  background:#f6faf4;
  display:grid;
  place-items:center;
  color:#274e10;
  flex:0 0 auto;
}

.highlight .icon i{ font-size:18px; }

.highlight h3{
  margin:0 0 6px;
  font-size:15px;
  font-weight:800;
  color:#1e2a1f;
}

.highlight p{
  margin:0;
  font-size:13px;
  color:var(--muted);
  line-height:1.6;
}

/* MVV */
.mvv-grid{
  margin-top:18px;
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:14px;
}

.mvv-card{
  border:2px solid #d6e8d0;
  border-radius:var(--radius);
  background:#f7fbf6;
  box-shadow:var(--shadow);
  padding:22px;
}

.mvv-card h3{
  margin:0 0 10px;
  font-size:16px;
  font-weight:900;
  color:#274e10;
  display:flex;
  align-items:center;
  gap:10px;
}

.mvv-card p{
  margin:0;
  font-size:13.5px;
  color:var(--muted);
  line-height:1.7;
}

.mvv-card ul{
  margin:0;
  padding-left:18px;
  color:var(--muted);
  font-size:13.5px;
  line-height:1.8;
}

/* =========================
   CONTACT US (BETTER CSS)
   ========================= */

.contact-section{
  margin-top:28px;
  padding:42px 34px;
  background:linear-gradient(180deg, #f7fbf6, #ffffff);
  border-radius:var(--radius);
}

/* soft background accent */
.contact-section::before{
  content:"";
  position:absolute;
  inset:-120px -120px auto auto;
  width:320px;
  height:320px;
  background:radial-gradient(circle, rgba(39,78,16,.10), transparent 60%);
  filter:blur(2px);
  pointer-events:none;
}

.contact-grid{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap:22px;
  align-items:stretch;
  position:relative;
  z-index:1;
}

/* shared card style */
.contact-info,
.contact-form{
  background:#fff;
  border:2px solid #d6e8d0;
  border-radius:22px;
  padding:34px;
  box-shadow: 0 10px 26px rgba(0,0,0,.06);
}

/* LEFT SIDE */
.contact-kicker{
  font-size:12px;
  letter-spacing:1.6px;
  font-weight:900;
  color:#2e3d2f;
  text-transform:uppercase;
  margin-bottom:10px;
}

.contact-info h2{
  font-size:44px;           /* closer to your screenshot */
  line-height:1.05;
  margin:0 0 14px;
  letter-spacing:-1.1px;
}

.contact-info p{
  font-size:14.5px;
  color:var(--muted);
  line-height:1.75;
  margin:0 0 22px;
  max-width:60ch;
}

.contact-details{
  list-style:none;
  padding:0;
  margin:0;
  display:flex;
  flex-direction:column;
  gap:12px;
}

.contact-details li{
  display:flex;
  align-items:flex-start;
  gap:12px;
  font-size:14px;
  color:#2f3c30;
}

.contact-details i{
  width:34px;
  height:34px;
  border-radius:12px;
  border:1.5px solid var(--border);
  background:#f6faf4;
  display:grid;
  place-items:center;
  color:#274e10;
  flex:0 0 auto;
  margin-top:1px;
}

/* RIGHT SIDE FORM */
.contact-form{
  display:flex;
  flex-direction:column;
  gap:16px;
}

.form-group{
  display:flex;
  flex-direction:column;
  gap:8px;
}

.form-group label{
  font-size:13px;
  font-weight:800;
  color:#274e10;
}

.form-group input,
.form-group textarea{
  width:100%;
  border:1.6px solid #cfe2a8;
  border-radius:14px;
  padding:12px 14px;
  font-family:inherit;
  font-size:14px;
  color:var(--ink);
  background: #ffffff;
  transition: border-color .2s ease, box-shadow .2s ease, transform .05s ease;
}

.form-group textarea{
  min-height:160px;
  resize:vertical;
}

/* nicer placeholder */
.form-group input::placeholder,
.form-group textarea::placeholder{
  color:rgba(91,107,92,.75);
}

/* focus style */
.form-group input:focus,
.form-group textarea:focus{
  outline:none;
  border-color:#274e10;
  box-shadow:0 0 0 4px rgba(39,78,16,.12);
}

/* subtle press */
.form-group input:active,
.form-group textarea:active{
  transform:translateY(0.5px);
}

/* button: full width pill */
.contact-form .btn.primary{
  margin-top:8px;
  width:100%;
  padding:14px 18px;
  border-radius:999px;
  font-size:13px;
  letter-spacing:.6px;
  text-transform:uppercase;
  box-shadow: 0 12px 26px rgba(39,78,16,.22);
}

.contact-form .btn.primary:hover{
  transform:translateY(-1px);
}

.contact-form .btn.primary:active{
  transform:translateY(0);
}

/* ✅ make the two cards feel aligned like your screenshot */
.contact-info,
.contact-form{
  min-height:520px;
}

/* RESPONSIVE */
@media (max-width: 980px){
  .contact-grid{ grid-template-columns:1fr; }
  .contact-info h2{ font-size:36px; }
  .contact-info,
  .contact-form{ min-height:auto; }
}

@media (max-width: 520px){
  .contact-section{ padding:28px 20px; }
  .contact-info,
  .contact-form{ padding:22px; border-radius:18px; }
  .contact-info h2{ font-size:30px; }
}

/* =========================
   PRODUCT CATALOG STYLES
   ========================= */

.catalog-section{
  margin-top:28px;
  padding:44px 34px;
  background:#fff;
  border:2px solid var(--border);
  border-radius:var(--radius);
}

.catalog-head{
  text-align:center;
  max-width:980px;
  margin:0 auto 22px;
}

.catalog-kicker{
  font-size:12px;
  letter-spacing:1.6px;
  font-weight:900;
  color:#2e3d2f;
  text-transform:uppercase;
  margin-bottom:10px;
}

.catalog-head h2{
  font-size:40px;
  margin:0 0 10px;
  letter-spacing:-1px;
}

.catalog-sub{
  margin:0 auto 18px;
  color:var(--muted);
  font-size:14.5px;
  line-height:1.7;
}

/* Controls */
.catalog-controls{
  display:flex;
  gap:12px;
  justify-content:center;
  flex-wrap:wrap;
  margin-top:14px;
}

.catalog-search,
.catalog-select{
  border:1.6px solid #cfe2a8;
  border-radius:999px;
  padding:11px 14px;
  font-size:14px;
  font-family:inherit;
  outline:none;
  background:#fff;
  min-width:260px;
}

.catalog-select{ min-width:220px; }

.catalog-search:focus,
.catalog-select:focus{
  border-color:#274e10;
  box-shadow:0 0 0 4px rgba(39,78,16,.12);
}

/* Tabs */
.catalog-tabs{
  margin-top:18px;
  display:flex;
  gap:10px;
  flex-wrap:wrap;
  justify-content:center;
}

.catalog-tabs .nav-link{
  border:2px solid var(--border);
  background:#f7fbf6;
  color:#274e10;
  font-weight:800;
  border-radius:999px;
  padding:10px 14px;
  transition:.2s ease;
}

.catalog-tabs .nav-link:hover{
  transform:translateY(-1px);
}

.catalog-tabs .nav-link.active{
  background:#274e10;
  color:#fff;
  border-color:#274e10;
}

/* Brand header inside each tab */
.brand-head{
  display:flex;
  align-items:center;
  gap:14px;
  margin:22px 0 14px;
  padding:14px 16px;
  border:2px solid #d6e8d0;
  border-radius:18px;
  background:#f7fbf6;
}

.brand-badge{
  width:72px;
  height:48px;
  object-fit:contain;
}

.brand-title{
  margin:0;
  font-size:20px;
  font-weight:900;
}

.brand-desc{
  margin:2px 0 0;
  color:var(--muted);
  font-size:14px;
}

/* Grid */
.catalog-grid{
  display:grid;
  grid-template-columns:repeat(4, 1fr);
  gap:14px;
}

.product-card{
  border:2px solid #d6e8d0;
  border-radius:18px;
  background:#fff;
  overflow:hidden;
  box-shadow:0 10px 22px rgba(0,0,0,.05);
  transition:transform .2s ease, box-shadow .2s ease;
}

.product-card:hover{
  transform:translateY(-2px);
  box-shadow:0 14px 30px rgba(0,0,0,.08);
}

.product-media{
  height:300px;              /* fixed image area */
  background:linear-gradient(135deg, #d3f0d0, #f7e6c5);
  display:flex;
  align-items:center;
  justify-content:center;
  overflow:hidden;
  padding:12px;
}

.product-media img{
  width:100%;
  height:100%;
  object-fit:contain;        /* keeps full image visible */
  max-width:100%;
  max-height:100%;
  display:block;
}

/* optional hover effect */
.product-card:hover .product-media img{
  transform:scale(1.03);
}

.product-body{
  padding:14px 14px 16px;
}

.product-body h4{
  margin:0 0 6px;
  font-size:15px;
  font-weight:900;
  color:#1e2a1f;
}

.product-body p{
  margin:0 0 10px;
  font-size:13px;
  color:var(--muted);
  line-height:1.6;
  min-height:40px;
}

.product-meta{
  display:flex;
  gap:8px;
  flex-wrap:wrap;
  margin-bottom:12px;
}

.pill{
  font-size:12px;
  padding:6px 10px;
  border-radius:999px;
  border:1.5px solid var(--border);
  background:#f7fbf6;
  color:#274e10;
  font-weight:800;
}

.product-actions{
  display:flex;
  gap:10px;
}

.btn.outline{
  background:#fff;
  color:var(--btn);
  border:2px solid var(--btn);
  box-shadow:none;
}
.btn.outline:hover{ transform:translateY(-1px); }

/* Responsive */
@media (max-width: 1200px){
  .catalog-grid{ grid-template-columns:repeat(3, 1fr); }
}
@media (max-width: 980px){
  .catalog-grid{ grid-template-columns:repeat(2, 1fr); }
}
@media (max-width: 520px){
  .catalog-section{ padding:30px 20px; }
  .catalog-head h2{ font-size:30px; }
  .catalog-grid{ grid-template-columns:1fr; }
}







/* Responsive */
@media (max-width: 980px){
  .about-grid{ grid-template-columns:1fr; }
  .about-title{ font-size:32px; }
  .mvv-grid{ grid-template-columns:1fr; }
}

@media (max-width: 520px){
  .about-section{ padding:28px 20px; }
  .about-card{ padding:22px; }
  .about-title{ font-size:28px; }
}



/* Responsive */
@media (max-width: 980px){
  .wrap{ width:calc(100% - 32px); margin:28px auto; }

  h1{ font-size:40px; }

  .hero-grid{ grid-template-columns:1fr; }

  .heroImage{ min-height:260px; }
  .hero{ min-height:260px; }

  .brand img{ height:34px; }

  .footer-grid{ grid-template-columns:1fr 1fr; }
}

@media (max-width: 768px){
  .brand-item img{ max-width:160px; max-height:90px; }
}

@media (max-width: 520px){
  .wrap{ width:calc(100% - 24px); margin:24px auto; }

  .panel{ padding:14px; }

  .hero{ padding:26px 22px; }

  h1{ font-size:34px; }

  .main-nav{ gap:8px; }
  .main-nav a{ padding:7px 10px; }

  .brand img{ height:28px; }

  .site-footer{ padding:40px 24px 16px; }

  .footer-grid{ grid-template-columns:1fr; gap:28px; }

  .footer-bottom{ text-align:left; }

  .brand-links{ grid-template-columns:1fr; }
}


 /* Extra only for product page layout */
    .product-detail-section{
      margin-top:28px;
      padding:40px 34px;
      background:#fff;
      border:2px solid var(--border);
      border-radius:var(--radius);
    }

    .product-detail-grid{
      display:grid;
      grid-template-columns: 1fr 1.2fr;
      gap:26px;
      align-items:start;
    }

    .product-image-box{
      border:2px solid #d6e8d0;
      border-radius:18px;
      overflow:hidden;
      background:linear-gradient(135deg, #d3f0d0, #f7e6c5);
      padding:18px;
      display:flex;
      align-items:center;
      justify-content:center;
      height:420px;
    }

    .product-image-box img{
      width:100%;
      height:100%;
      object-fit:contain;
    }

    .product-title{
      font-size:34px;
      font-weight:900;
      margin:0 0 10px;
      letter-spacing:-1px;
    }

    .product-brand{
      font-size:20px;
      font-weight:800;
      color:#274e10;
      text-transform:uppercase;
      letter-spacing:1.4px;
      margin-bottom:10px;
    }

    .product-desc{
      color:var(--muted);
      font-size:14.5px;
      line-height:1.8;
      margin-bottom:18px;
    }

    .product-info-box{
      display:flex;
      flex-direction:column;
      gap:12px;
    }

    .info-row{
      display:flex;
      gap:10px;
      font-size:14px;
      color:#2f3c30;
    }

    .info-label{
      font-weight:800;
      min-width:120px;
    }

    .product-actions{
      margin-top:18px;
      display:flex;
      gap:12px;
      flex-wrap:wrap;
    }

    .section-title{
      margin-top:30px;
      font-size:18px;
      font-weight:900;
      color:#274e10;
    }

    @media(max-width: 980px){
      .product-detail-grid{
        grid-template-columns:1fr;
      }

      .product-image-box{
        height:320px;
      }
    }






/* =========================
   PRODUCT GALLERY
========================= */

.product-gallery{
  display:grid;
  grid-template-columns:repeat(4, 1fr);
  gap:14px;
  margin-top:20px;
}

.gallery-thumb{
  width:100%;
  height:280px;
  object-fit:cover;
  border-radius:12px;
  cursor:pointer;
  transition:transform .25s ease;
  display:block;
}

.gallery-thumb:hover{
  transform:scale(1.03);
}

/* =========================
   TABLET
========================= */
@media (max-width: 992px){

  .product-gallery{
    grid-template-columns:repeat(3, 1fr);
    gap:12px;
  }

  .gallery-thumb{
    height:220px;
  }

  .lightbox img{
    width:90%;
    height:70vh;
  }
}

/* =========================
   MOBILE
========================= */
@media (max-width: 768px){

  .product-gallery{
    grid-template-columns:repeat(2, 1fr);
    gap:10px;
  }

  .gallery-thumb{
    height:180px;
    border-radius:10px;
  }

  .lightbox img{
    width:95%;
    height:60vh;
  }

  .lightbox .nav{
    font-size:30px;
    padding:6px;
  }

  .lightbox .prev{
    left:8px;
  }

  .lightbox .next{
    right:8px;
  }

  .lightbox .close{
    top:12px;
    right:18px;
    font-size:34px;
  }
}

/* =========================
   SMALL PHONES
========================= */
@media (max-width: 480px){

  .product-gallery{
    grid-template-columns:1fr 1fr;
    gap:8px;
  }

  .gallery-thumb{
    height:140px;
  }

  .lightbox img{
    width:96%;
    height:50vh;
    border-radius:8px;
  }

  .lightbox .nav{
    font-size:24px;
  }

  .lightbox .close{
    font-size:28px;
  }
}

/* =========================
   VERY SMALL DEVICES
========================= */
@media (max-width: 360px){

  .product-gallery{
    grid-template-columns:1fr;
  }

  .gallery-thumb{
    height:200px;
  }
}

/* =========================
   LIGHTBOX
========================= */

.lightbox{
  position:fixed;
  inset:0;
  background:rgba(0,0,0,.9);
  display:none;
  align-items:center;
  justify-content:center;
  z-index:9999;
  padding:20px;
}

.lightbox img{
  max-width:100%;
  max-height:85vh;
  object-fit:contain;
  border-radius:12px;
  background:#111;
}

/* close button */
.lightbox .close{
  position:absolute;
  top:20px;
  right:30px;
  font-size:42px;
  color:#fff;
  cursor:pointer;
  z-index:10001;
}

/* nav buttons */
.lightbox .nav{
  position:absolute;
  top:50%;
  transform:translateY(-50%);
  background:rgba(255,255,255,.12);
  border:none;
  color:#fff;
  width:50px;
  height:50px;
  border-radius:50%;
  font-size:32px;
  cursor:pointer;
  backdrop-filter:blur(4px);
  transition:.2s ease;
}

.lightbox .nav:hover{
  background:rgba(255,255,255,.22);
}

.lightbox .prev{
  left:20px;
}

.lightbox .next{
  right:20px;
}


/* =========================
   PRODUCT DETAIL IMPROVED
========================= */

.product-detail-grid{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap:40px;
  align-items:center;
}

.product-image-box{
  background:linear-gradient(135deg,#eef8ea,#f7e6c5);
  border:2px solid #d6e8d0;
  border-radius:24px;
  padding:30px;
  min-height:520px;

  display:flex;
  align-items:center;
  justify-content:center;
}

.product-image-box img{
  width:100%;
  max-width:420px;
  height:auto;
  object-fit:contain;
  transition:.25s ease;
}

.product-info-box{
  display:flex;
  flex-direction:column;
  gap:18px;
}

.product-title{
  font-size:42px;
  line-height:1.05;
}

.color-section{
  margin-top:10px;
}

.color-options{
  display:flex;
  gap:12px;
  margin-top:10px;
}

.color-btn{
  width:42px;
  height:42px;
  border-radius:50%;
  border:2px solid #d6e8d0;
  cursor:pointer;
  transition:.2s ease;
}

.color-btn:hover{
  transform:scale(1.08);
}

.color-btn.active{
  border:3px solid #274e10;
  transform:scale(1.1);
}

.product-meta-box{
  display:flex;
  flex-wrap:wrap;
  gap:12px;
  margin-top:8px;
}

.meta-item{
  display:flex;
  align-items:center;
  gap:8px;

  padding:10px 14px;

  border-radius:999px;

  background:#f7fbf6;
  border:1.5px solid #d6e8d0;

  font-size:13px;
  font-weight:700;
  color:#274e10;
}

/* =========================
   MOBILE
========================= */

@media(max-width:980px){

  .product-detail-grid{
    grid-template-columns:1fr;
  }

  .product-image-box{
    min-height:340px;
  }

  .product-title{
    font-size:34px;
  }

}




/* =========================
   PRODUCT EXTRA GRID
========================= */

.product-extra-grid{
  margin-top:40px;

  display:grid;
  grid-template-columns:repeat(2, minmax(0,1fr));
  gap:24px;
}

.extra-card{
  background:#f7fbf6;
  border:2px solid #d6e8d0;
  border-radius:22px;
  padding:28px;

  height:100%;
}

.section-title{
  margin:18px 0 18px;

  font-size:22px;
  font-weight:900;
  line-height:1.2;

  color:#274e10;
}

.feature-list,
.direction-list{
  margin:0;
  padding-left:20px;

  display:grid;
  gap:14px;
}

.feature-list li,
.direction-list li{
  color:var(--muted);
  line-height:1.8;
  font-size:15px;
}

/* =========================
   TABLET
========================= */

@media (max-width: 992px){

  .product-extra-grid{
    grid-template-columns:1fr;
    gap:20px;
  }

  .extra-card{
    padding:24px;
  }

  .section-title{
    font-size:20px;
  }

}

/* =========================
   MOBILE
========================= */

@media (max-width: 768px){

  .product-extra-grid{
    margin-top:28px;
    gap:16px;
  }

  .extra-card{
    padding:20px;
    border-radius:18px;
  }

  .section-title{
    font-size:18px;
    margin-bottom:14px;
  }

  .feature-list,
  .direction-list{
    gap:10px;
    padding-left:18px;
  }

  .feature-list li,
  .direction-list li{
    font-size:14px;
    line-height:1.7;
  }

}

/* =========================
   SMALL PHONES
========================= */

@media (max-width: 480px){

  .extra-card{
    padding:18px;
  }

  .section-title{
    font-size:17px;
  }

  .feature-list li,
  .direction-list li{
    font-size:13.5px;
  }

}



/* =========================
   YOUTUBE VIDEO EMBED
========================= */
.youtube-video{
  margin: 20px auto 0;   /* centers it */
  width: 100%;
  max-width: 800px;      /* adjust size */
  border-radius: 22px;
  overflow: hidden;
  border: 2px solid #d6e8d0;
  box-shadow: var(--shadow);
}

.youtube-video iframe{
  width: 100%;
  height: 450px;
  display: block;
  border: none;
}

/* Tablet */
@media (max-width: 992px){
  .youtube-video iframe{
    height:400px;
  }
}

/* Mobile */
@media (max-width: 768px){
  .youtube-video iframe{
    height:250px;
  }
}


.product-desc.checklist {
  list-style: none;
  padding-left: 0;
}

.product-desc.checklist li {
  position: relative;
  padding-left: 25px;
  margin-bottom: 8px;
}

.product-desc.checklist li::before {
  content: "✔";
  position: absolute;
  left: 0;
  color: green;
  font-weight: bold;
}


.color-btn{
  position:relative;
}

/* tooltip label */
.color-btn::after{
  content: attr(data-name);
  position:absolute;
  bottom:-32px;
  left:50%;
  transform:translateX(-50%) translateY(5px);

  background:#274e10;
  color:#fff;
  font-size:12px;
  font-weight:600;

  padding:6px 10px;
  border-radius:999px;

  opacity:0;
  visibility:hidden;
  transition:all .2s ease;
  white-space:nowrap;
  pointer-events:none;
}

/* show on hover */
.color-btn:hover::after{
  opacity:1;
  visibility:visible;
  transform:translateX(-50%) translateY(0);
}

/* optional: show active color name always */
.color-btn.active::after{
  opacity:0.9;
}