/* ================= Base ================= */
* { box-sizing: border-box; }
html, body { height: 100%; }

body{
  margin: 0;
  font-family: 'Montserrat', system-ui, -apple-system, Segoe UI, Roboto, Ubuntu, 'Helvetica Neue', Arial, sans-serif;
  color: #1a1a1a;
  background: #fff;
}

img { display: block; max-width: 100%; height: auto; }
.container { width: min(1200px, 92%); margin-inline: auto; }
.main-pad { padding: 28px 0 8px; }

/* ================= Header ================= */
.site-header{
  position: sticky; top: 0; z-index: 1000;
  background: #000;
  border-bottom: 1px solid rgba(255,255,255,.08);
}

.header-row{
  display: flex; align-items: center; justify-content: space-between;
  min-height: 84px; gap: 16px;
}

.brand { display: inline-flex; align-items: center; text-decoration: none; }
.brand-logo { height: 52px; width: auto; display: block; margin-right: 40px; }

/* Desktop nav */
.nav { display: flex; align-items: center; gap: 32px; }
.nav a{
  color: #fff; text-decoration: none; font-weight: 600;
  font-size: 16px; white-space: nowrap;
}
.nav a:hover, .nav a[aria-current="page"]{ color: #DAA520; }

/* Mobile toggle button */
.menu-toggle{
  display: none;
  background: transparent; border: 1px solid rgba(255,255,255,.45);
  color: #fff; font-size: 20px; padding: 8px 12px; border-radius: 10px; cursor: pointer;
}

/* Mobile drawer */
.mobile-nav{ display: none; }

@media (max-width: 900px){
  .nav { display: none; }
  .menu-toggle { display: inline-block; }
  .header-row { min-height: 72px; }
  .brand-logo { height: 44px; }

  .mobile-nav{
    display: none;                 /* shown when .open is added */
    grid-template-columns: 1fr;
    gap: 12px;
    background: #111;
    border-top: 1px solid rgba(255,255,255,.08);
    padding: 14px 16px;
  }
  .mobile-nav.open{ display: grid; }
  .mobile-nav a{
    color:#fff; text-decoration:none; font-weight:700; font-size:18px;
    padding: 8px 6px; border-radius: 8px;
  }
  .mobile-nav a:hover{ background: rgba(255,255,255,.06); color:#DAA520; }
}

/* ===== Home hero (same look as brochures hero) ===== */
.home-hero{
  position: relative;
  width: 100%;
  height: clamp(280px, 38vw, 420px);
  overflow: hidden;
}

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

.home-hero .hero-overlay{
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.45);
}

.home-hero .hero-inner{
  position: absolute;
  inset: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 0 16px;
}

.home-hero .hero-title{
  margin: 0;
  color: #fff;
  font-weight: 800;
  font-size: clamp(28px, 4.2vw, 44px);
}

/* ================= Page Title ================= */
.page-title {
  margin: 24px 0 24px;         /* more breathing room */
  font-weight: 600;
  font-size: clamp(38px, 3.6vw, 44px); /* responsive larger size */
  text-align: left;          /* optional: center align */
  padding-bottom: 20px;
}

/* ================= 4-card grid (no sidebar) ================= */
.grid-4{
  display: grid; gap: 36px;
  grid-template-columns: repeat(2, minmax(0, 1fr));   /* 2 across */
}
@media (max-width: 700px){
  .grid-4{gap: 18px; }   /* 1 across on phones */
}

/* Product cards */
.p-card{
  background: #fff;
  border: 1px solid #ececec; border-radius: 10px; padding: 6px;
  box-shadow: 0 6px 14px rgba(0,0,0,.05);
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
  overflow: hidden;
}
.p-card:hover{
  background:#fffdf7; border-color:#DAA520;
  box-shadow:0 12px 24px rgba(0,0,0,.12); transform:translateY(-4px);
}
.p-card a{ text-decoration: none; color: inherit; display: block; }

/* Image area (fits all product shots cleanly) */
.p-thumb{
  width: 100%; height: 280px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 12px;
}
.p-thumb img{ width: 100%; height: 100%; object-fit: contain; }
@media (max-width: 700px){ .p-thumb{ height: 220px; } }

/* Product text */
.p-name{
  text-align: center; font-size: 18px; font-weight: 800; color:#222;
  margin: 8px 0 6px;
}
.p-meta{
  margin: 0 0 10px;
  text-align: center; font-size: 13px; color:#000000; line-height: 1.6;
}

/* Small total-results badge */
.results {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 40px 0 60px;
}

/* the pill itself */
.results-pill {
  display: inline-block;
  background: #fff;
  border: 1px solid #e5e5e5;
  padding: 10px 20px;
  border-radius: 12px;
  font-size: 14px;
  font-weight: 200;
  color: #ababab;
  text-align: center;
}

/* ================= Footer (v3) ================= */
.gsw-footer.v3{
  background:#fff;
  box-shadow: 0 -40px 120px rgba(0,0,0,.05) inset;
}

.gsw-footer.v3 .footer-wrap{
  width: min(1180px, 92vw);
  margin: 0 auto;
  padding: 48px 0 40px;
}

/* Row: logo left, tagline right */
.gsw-footer.v3 .footer-brandline{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.gsw-footer.v3 .footer-badge{
  height: auto;
  width: clamp(220px, 36vw, 440px);
}

.gsw-footer.v3 .footer-tagline{
  margin: 0;
  color: #222;
  line-height: 1.3;
  font-size: clamp(16px, 1.8vw, 22px);
  text-align: right;
}
.gsw-footer.v3 .footer-tagline strong{
  font-weight: 800;
}

/* Divider */
.gsw-footer.v3 .footer-divider{
  margin: 24px auto 0;
  border: 0;
  border-top: 1px solid rgba(0,0,0,.25);
}

/* Copyright */
.gsw-footer.v3 .footer-copy{
  margin: 16px 0 0;
  text-align: center;
  color: #4b4b4b;
  font-size: 14px;
}

/* Mobile: stack logo above tagline */
@media (max-width: 640px){
  .gsw-footer.v3 .footer-brandline{
    flex-direction: column;
    justify-content: center;
    text-align: center;
  }
  .gsw-footer.v3 .footer-tagline{
    text-align: center;
  }
}

/* ========= Product page additions (unchanged) ========= */

/* =======================================================
   PRODUCT PAGE HERO (HW220-9)
   ======================================================= */

.prod-hero{
  margin-block: 28px;
  display: grid;
  grid-template-columns: minmax(0, 1.6fr) 136px minmax(0, 0.9fr);
  gap: 28px;
  align-items: start;
  background: transparent;
  border: 0;
  box-shadow: none;
}

.hero-main img{
  width: 100%;
  display: block;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  border-radius: 8px;
}

.thumbs{
  display: grid;
  gap: 14px;
  align-content: start;
}
.thumb{
  appearance: none;
  background: #fff;
  border: 2px solid #e9e9e9;
  border-radius: 12px;
  padding: 6px;
  width: 100%;
  aspect-ratio: 4 / 3;
  cursor: pointer;
  display: grid;
  place-items: center;
  transition: border-color .15s ease, box-shadow .15s ease;
}
.thumb:hover{ border-color: #22c55e; }
.thumb.is-selected{
  border-color: #22c55e;
  box-shadow: 0 0 0 3px rgba(34, 197, 94, .15);
}
.thumb img{
  max-width: 100%;
  max-height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 8px;
}

.prod-summary{
  display: flex;
  flex-direction: column;
  min-height: 100%;
}
.prod-title{
  margin: 0 0 8px;
  font-weight: 800;
  font-size: clamp(22px, 2.2vw, 32px);
}

.benefits{
  list-style: none;
  margin: 0 0 10px;
  padding: 0;
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}
.benefits li{
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
}
.benefits li::before{
  content: "✓";
  color: #22c55e;
  font-weight: 800;
}

.spec-inline{
  list-style: none;
  margin: 0 0 14px;
  padding: 0;
  display: grid;
  gap: 6px;
}
.spec-inline li{ font-size: 14px; color: #222; line-height: 1.5; }
.spec-inline strong{ font-weight: 800; }

.cta-block{ margin-top: auto; }
.divider{
  height: 1px;
  background: #e8e8e8;
  margin: 12px 0 16px;
}
.hero-cta {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.hero-cta .btn {
  width: 100%;
  justify-content: center;
  text-decoration: none;
  font-weight: 600;
}

.btn{
  appearance: none;
  border: 1px solid #d9d9d9;
  background: #fff;
  color: #222;
  height: 52px;
  padding: 0 18px;
  border-radius: 12px;
  font-weight: 800;
  font-size: 16px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.btn .icon{ width: 18px; height: 18px; }

.btn-primary{
  background: #22c55e;
  border-color: #22c55e;
  color: #fff;
}
.btn-primary:hover{ filter: brightness(.96); }

.btn-ghost{
  background: #fff;
  border-color: #dcdcdc;
  color: #222;
}
.btn-ghost:hover{ border-color: #bfbfbf; }

@media (max-width: 1100px){
  .prod-hero{ grid-template-columns: 1fr; }
  .thumbs{
    grid-auto-flow: column;
    grid-auto-columns: minmax(92px, 1fr);
    overflow-x: auto;
  }
  .cta-block{ margin-top: 14px; }
}
@media (max-width: 640px){
  .hero-main img{ aspect-ratio: 4 / 3; }
  .btn{ height: 50px; font-size: 15px; border-radius: 12px; }
  .benefits{ gap: 12px; }
}

/* =======================================================
   PRODUCT DETAIL SECTION
   ======================================================= */

.prod-detail{
  margin-top: 26px;
  padding-block: 6px;
}

.block-title{
  position: relative;
  margin: 0 0 14px;
  font-weight: 800;
  font-size: clamp(18px, 1.8vw, 22px);
  line-height: 1.2;
  padding-left: 18px;
}
.block-title::before{
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 4px;
  background: #111;
  border-radius: 2px;
}

.lead, .body{
  margin: 0 0 14px;
  color: #333;
  font-size: 14px;
  line-height: 1.65;
}

.subhead{
  margin: 14px 0 8px;
  font-size: 15px;
  font-weight: 800;
  color: #111;
}

.spec-table{
  width: 100%;
  border-collapse: collapse;
  border: 1px solid #e9e9e9;
  margin: 0 0 16px;
  font-size: 14px;
}
.spec-table th,
.spec-table td{
  text-align: left;
  padding: 12px 14px;
  border-top: 1px solid #eee;
  vertical-align: top;
}
.spec-table th{
  width: 44%;
  background: #fafafa;
  color: #444;
  font-weight: 700;
}

.bullets{
  margin: 0 0 16px;
  padding-left: 18px;
  color: #333;
  font-size: 14px;
  line-height: 1.65;
}
.bullets li + li{ margin-top: 6px; }

@media (max-width: 640px){
  .spec-table th, .spec-table td{
    padding: 10px 12px;
    font-size: 13.5px;
  }
  .lead, .body{ font-size: 13.5px; }
}

/* Floating WhatsApp Button */
.whatsapp-float {
  position: fixed;
  bottom: 102px;
  right: 150px;
  width: 90px;
  height: 90px;
  background-color: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 12px rgba(0,0,0,0.25);
  cursor: pointer;
  z-index: 1000;
  animation: bounce 2s infinite;
  transition: background .2s ease, transform .2s ease-in-out;
}
.whatsapp-float img { width: 55px; height: 55px; }

@media (max-width: 768px) {
  .whatsapp-float {
    right: 48px;
    bottom: 102px;
    width: 80px;
    height: 80px;
  }
  .whatsapp-float img { width: 48px; height: 48px; }
}
.whatsapp-float:hover { transform: scale(1.08); }
@keyframes bounce {
  0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
  40% { transform: translateY(-10px); }
  60% { transform: translateY(-5px); }
}

/* Ensure button links look like buttons, not underlined text */
.btn {
  text-decoration: none;
  font-weight: 600;
}
.btn-primary,
.btn-ghost {
  text-decoration: none;
  font-weight: 600;
}



/* ===== Recommended Products Section ===== */
.rec-title{
  margin: 48px 0 18px;
  font-weight: 800;
  font-size: clamp(28px, 3.6vw, 44px);
  letter-spacing: .2px;
}

.rec-grid{
  display: grid;
  gap: 32px;
  grid-template-columns: repeat(3, minmax(0,1fr));
}

@media (max-width: 1100px){
  .rec-grid{ grid-template-columns: repeat(2, minmax(0,1fr)); }
}
@media (max-width: 700px){
  .rec-grid{ grid-template-columns: 1fr; gap: 18px; }
}


 