/* =========================================================
   VESPA ELECTRICALS — Main Stylesheet
   Plain CSS3, no frameworks. Mobile-first, then scaled up.
   ========================================================= */

/* ---------- Design Tokens ---------- */
:root{
  --navy: #0B2A4A;
  --navy-2: #123A63;
  --navy-soft: #E8EEF4;
  --red: #E2231A;
  --red-dark: #B81810;
  --ice: #14A6D9;
  --ice-light: #EAF7FC;
  --gold: #F5A623;
  --text: #445062;
  --text-light: #728094;
  --white: #ffffff;
  --bg: #F7FAFC;
  --border: #E3E9F0;

  --font-display: 'Manrope', 'Inter', sans-serif;
  --font-body: 'Inter', sans-serif;
  --font-script: 'Montez', cursive;

  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 24px;
  --shadow-sm: 0 2px 10px rgba(11,42,74,0.07);
  --shadow-md: 0 10px 30px rgba(11,42,74,0.12);
  --shadow-lg: 0 20px 50px rgba(11,42,74,0.18);
  --container: 1240px;
}

/* ---------- Reset ---------- */
*, *::before, *::after{ box-sizing: border-box; }
html{ scroll-behavior: smooth; }
body{
  margin: 0;
  font-family: var(--font-body);
  color: var(--text);
  background: var(--white);
  line-height: 1.65;
  font-size: 16px;
  overflow-x: hidden;
}
img{ max-width: 100%; display: block; }
a{ text-decoration: none; color: inherit; }
ul{ list-style: none; margin: 0; padding: 0; }
button{ font-family: inherit; cursor: pointer; }
input, textarea, select{ font-family: inherit; }
h1,h2,h3,h4,h5,h6{
  font-family: var(--font-display);
  color: var(--navy);
  margin: 0 0 .5em;
  line-height: 1.25;
  font-weight: 800;
}
p{ margin: 0 0 1em; }

/* Focus visibility for accessibility */
a:focus-visible, button:focus-visible, input:focus-visible, textarea:focus-visible{
  outline: 3px solid var(--ice);
  outline-offset: 2px;
}

@media (prefers-reduced-motion: reduce){
  *{ animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; transition-duration: 0.001ms !important; scroll-behavior: auto !important; }
}

/* ---------- Layout Helpers ---------- */
.container{
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 20px;
}
.section{ padding: 70px 0; }
.section-tight{ padding: 40px 0; }
.bg-soft{ background: var(--bg); }
.bg-ice{ background: var(--ice-light); }
.bg-navy{ background: var(--navy); color: #cfe0ee; }
.bg-navy h2, .bg-navy h3{ color: var(--white); }

.eyebrow{
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--red);
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  font-size: .78rem;
  margin-bottom: 10px;
}
.eyebrow::before{
  content: "";
  width: 22px; height: 2px;
  background: var(--red);
  display: inline-block;
}
.section-head{ max-width: 640px; margin: 0 0 40px; }
.section-head.center{ margin-left: auto; margin-right: auto; text-align: center; }
.section-title{ font-size: clamp(1.6rem, 3vw, 2.3rem); }
.section-sub{ color: var(--text-light); font-size: 1.02rem; }

/* Signature script accent used sparingly on hero/section labels */
.script-accent{
  font-family: var(--font-script);
  color: var(--ice);
  font-size: 1.7rem;
  display: block;
  line-height: 1;
  margin-bottom: 4px;
}

/* ---------- Buttons ---------- */
.btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 100px;
  font-weight: 700;
  font-size: .95rem;
  border: 2px solid transparent;
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease, color .25s ease;
  white-space: nowrap;
}
.btn-primary{
  background: var(--red);
  color: var(--white);
  box-shadow: 0 8px 20px rgba(226,35,26,.28);
}
.btn-primary:hover{ background: var(--red-dark); transform: translateY(-2px); }
.btn-outline{
  background: transparent;
  border-color: rgba(255,255,255,.5);
  color: var(--white);
}
.btn-outline:hover{ background: rgba(255,255,255,.12); border-color: var(--white); }
.btn-navy{
  background: var(--navy);
  color: var(--white);
}
.btn-navy:hover{ background: var(--navy-2); transform: translateY(-2px); }
.btn-ice{
  background: var(--ice);
  color: var(--white);
}
.btn-ice:hover{ background: #0f8bb8; transform: translateY(-2px); }
.btn-sm{ padding: 10px 20px; font-size: .85rem; }
.btn-block{ width: 100%; }
.btn-icon{ width: 18px; height: 18px; }

/* ---------- Top Info Bar ---------- */
.topbar{
  background: var(--navy);
  color: #c9d8e6;
  font-size: .85rem;
}
.topbar .container{
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 8px;
  padding-bottom: 8px;
  gap: 16px;
  flex-wrap: wrap;
}
.topbar-left, .topbar-right{
  display: flex;
  align-items: center;
  gap: 22px;
  flex-wrap: wrap;
}
.topbar a{ color: #c9d8e6; transition: color .2s; }
.topbar a:hover{ color: var(--white); }
.topbar-item{ display: inline-flex; align-items: center; gap: 7px; }
.topbar-item img{ width: 14px; height: 14px; filter: brightness(0) invert(1); opacity: .85; }
.topbar-social{ display: flex; gap: 12px; }
.topbar-social img{ width: 15px; height: 15px; filter: brightness(0) invert(1); opacity: .85; }
.topbar-social a:hover img{ opacity: 1; }
@media(max-width:767px){
  .topbar{ display: none; }
}

/* ---------- Header / Nav ---------- */
.site-header{
  background: var(--white);
  position: sticky;
  top: 0;
  z-index: 500;
  box-shadow: var(--shadow-sm);
}
.nav-wrap{
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
  gap: 16px;
}
.logo img{ height: 54px; width: auto; }
.main-nav{ display: none; }
.main-nav ul{ display: flex; align-items: center; gap: 4px; }
.main-nav a{
  display: inline-block;
  padding: 10px 16px;
  font-weight: 600;
  color: var(--navy);
  border-radius: 100px;
  transition: background .2s, color .2s;
  font-size: .95rem;
}
.main-nav > ul > li > a{ position: relative; }
.main-nav a:hover, .main-nav a.active{ background: var(--ice-light); color: var(--ice); }

.has-dropdown{ position: relative; }
.dropdown{
  position: absolute;
  top: 110%;
  left: 0;
  background: var(--white);
  min-width: 230px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  padding: 10px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: all .2s ease;
  border: 1px solid var(--border);
}
.has-dropdown:hover .dropdown{ opacity: 1; visibility: visible; transform: translateY(0); }
.dropdown a{ display: block; padding: 10px 14px; border-radius: var(--radius-sm); font-size: .9rem; }
.dropdown a:hover{ background: var(--ice-light); }
.dropdown .dropdown-heading{
  font-size: .72rem;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--text-light);
  padding: 6px 14px 2px;
  font-weight: 700;
}

.nav-actions{ display: flex; align-items: center; gap: 14px; }
.nav-cta{ display: none; }
.menu-toggle{
  background: var(--navy);
  border: none;
  width: 44px; height: 44px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
}
.menu-toggle img{ width: 20px; height: 20px; filter: brightness(0) invert(1); }

/* Mobile nav drawer */
.mobile-nav{
  position: fixed;
  inset: 0;
  background: rgba(11,42,74,.55);
  z-index: 900;
  opacity: 0;
  visibility: hidden;
  transition: opacity .3s ease;
}
.mobile-nav.open{ opacity: 1; visibility: visible; }
.mobile-nav-panel{
  position: absolute;
  top: 0; right: 0;
  width: min(320px, 86vw);
  height: 100%;
  background: var(--white);
  padding: 24px;
  overflow-y: auto;
  transform: translateX(100%);
  transition: transform .35s ease;
}
.mobile-nav.open .mobile-nav-panel{ transform: translateX(0); }
.mobile-nav-head{ display: flex; align-items: center; justify-content: space-between; margin-bottom: 20px; }
.mobile-nav-head img{ height: 42px; }
.mobile-close{ background: var(--bg); border: none; width: 38px; height: 38px; border-radius: 50%; font-size: 1.2rem; color: var(--navy); }
.mobile-nav ul li a{
  display: block;
  padding: 14px 6px;
  border-bottom: 1px solid var(--border);
  font-weight: 700;
  color: var(--navy);
}
.mobile-nav .sub-list{ padding-left: 14px; }
.mobile-nav .sub-list a{ font-weight: 500; font-size: .92rem; padding: 10px 6px; }
.mobile-cta{ margin-top: 20px; }

/* ---------- Hero Slider ---------- */
.hero{
  position: relative;
  overflow: hidden;
  background: var(--navy);
}
.hero-slides{ position: relative; height: clamp(320px, 62vw, 640px); }
@media(max-width:767px){
  .hero-slides{ height: auto; aspect-ratio: 1920 / 800; min-height: 0; }
}
.hero-slide{
  position: absolute; inset: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity .8s ease;
}
.hero-slide.active{ opacity: 1; visibility: visible; }
.hero-slide img{ width: 100%; height: 100%; object-fit: cover; }
.hero-nav{
  position: absolute;
  top: 50%; transform: translateY(-50%);
  width: 42px; height: 42px;
  border-radius: 50%;
  background: rgba(255,255,255,.18);
  border: 1px solid rgba(255,255,255,.5);
  color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
  z-index: 20;
  backdrop-filter: blur(4px);
  transition: background .2s;
}
.hero-nav:hover{ background: rgba(255,255,255,.35); }
.hero-prev{ left: 16px; }
.hero-next{ right: 16px; }
.hero-dots{
  position: absolute;
  bottom: 18px; left: 50%; transform: translateX(-50%);
  display: flex; gap: 8px; z-index: 20;
}
.hero-dots button{
  width: 9px; height: 9px; border-radius: 50%;
  background: rgba(255,255,255,.5);
  border: none;
}
.hero-dots button.active{ background: var(--white); width: 26px; border-radius: 6px; }

/* Frost wave signature divider */
.frost-wave{ display: block; width: 100%; line-height: 0; }
.frost-wave svg{ width: 100%; height: 60px; display:block; }

/* ---------- Trust Strip ---------- */
.trust-strip{
  background: var(--white);
  border-bottom: 1px solid var(--border);
}
.trust-strip .container{
  display: flex;
  flex-wrap: wrap;
  gap: 14px 34px;
  justify-content: center;
  padding-top: 22px;
  padding-bottom: 22px;
}
.trust-item{
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  color: var(--navy);
  font-size: .92rem;
}
.trust-item .num{ font-family: var(--font-display); font-size: 1.4rem; color: var(--red); }

/* ---------- Cards: Products ---------- */
.grid{ display: grid; gap: 26px; }
.grid-4{ grid-template-columns: repeat(1, 1fr); }
.grid-3{ grid-template-columns: repeat(1, 1fr); }
.grid-2{ grid-template-columns: repeat(1, 1fr); }
@media(min-width: 560px){
  .grid-4{ grid-template-columns: repeat(2, 1fr); }
  .grid-3{ grid-template-columns: repeat(2, 1fr); }
}
@media(min-width: 860px){
  .grid-3{ grid-template-columns: repeat(3, 1fr); }
  .grid-2{ grid-template-columns: repeat(2, 1fr); }
}
@media(min-width: 1080px){
  .grid-4{ grid-template-columns: repeat(4, 1fr); }
}

.product-card{
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform .25s ease, box-shadow .25s ease;
  position: relative;
}
.product-card:hover{ transform: translateY(-6px); box-shadow: var(--shadow-md); }
.product-card_img{
  position: relative;
  aspect-ratio: 1/1;
  background: var(--ice-light);
  overflow: hidden;
}
.product-card_img img{ width: 100%; height: 100%; object-fit: contain; padding: 14px; transition: transform .4s ease; }
.product-card:hover .product-card_img img{ transform: scale(1.06); }
.product-card_tag{
  position: absolute;
  top: 12px; left: 12px;
  background: var(--red);
  color: var(--white);
  font-size: .72rem;
  font-weight: 700;
  padding: 5px 11px;
  border-radius: 100px;
  letter-spacing: .02em;
}
.product-card_cap{
  position: absolute;
  top: 12px; right: 12px;
  background: rgba(11,42,74,.85);
  color: var(--white);
  font-size: .72rem;
  font-weight: 700;
  padding: 5px 11px;
  border-radius: 100px;
}
.product-card_body{ padding: 18px 18px 20px; display: flex; flex-direction: column; gap: 8px; flex: 1; }
.product-card_cat{ color: var(--ice); font-size: .75rem; font-weight: 700; text-transform: uppercase; letter-spacing: .05em; }
.product-card_title{ font-size: 1.05rem; margin: 0; }
.product-card_desc{ color: var(--text-light); font-size: .88rem; margin: 0; flex: 1; }
.product-card_foot{ display: flex; align-items: center; justify-content: space-between; margin-top: 10px; gap: 10px; }
.product-card_link{
  display: inline-flex; align-items: center; gap: 6px;
  font-weight: 700; color: var(--navy); font-size: .88rem;
  padding: 9px 16px; border-radius: 100px; background: var(--bg);
  transition: background .2s, color .2s;
}
.product-card_link:hover{ background: var(--navy); color: var(--white); }

/* ---------- Products Swiper (Featured Products slider) ---------- */
.products-swiper-wrap{ position: relative; padding: 0 6px; }
.products-swiper{ overflow: hidden; padding: 6px 2px 14px; }
.products-swiper .swiper-slide{ height: auto; display: flex; }
.products-swiper .product-card{ width: 100%; }
.products-swiper-btn{
  position: absolute;
  top: 40%;
  transform: translateY(-50%);
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--white);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  color: var(--navy);
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem;
  z-index: 20;
  transition: background .2s, color .2s;
}
.products-swiper-btn:hover{ background: var(--navy); color: var(--white); }
.products-swiper-prev{ left: -8px; }
.products-swiper-next{ right: -8px; }
@media(max-width:575px){
  .products-swiper-btn{ width: 36px; height: 36px; font-size: .85rem; top: 34%; }
  .products-swiper-prev{ left: 2px; }
  .products-swiper-next{ right: 2px; }
}
@media(min-width:992px){
  .products-swiper-prev{ left: -22px; }
  .products-swiper-next{ right: -22px; }
}

/* ---------- Category Cards ---------- */
.category-card{
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/5;
  display: flex;
  align-items: flex-end;
  box-shadow: var(--shadow-sm);
}
.category-card img{ position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.category-card:hover img{ transform: scale(1.08); }
.category-card::after{
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(11,42,74,0) 35%, rgba(11,42,74,.92) 100%);
}
.category-card_body{ position: relative; z-index: 2; padding: 22px; color: var(--white); width: 100%; }
.category-card_body h3{ color: var(--white); font-size: 1.15rem; margin-bottom: 6px; }
.category-card_body a{ font-size: .85rem; font-weight: 700; color: var(--ice); display: inline-flex; align-items: center; gap: 6px; }

/* ---------- Feature / Why Choose ---------- */
.feature-item{
  display: flex; gap: 16px; padding: 22px;
  background: var(--white);
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  transition: box-shadow .25s, transform .25s;
}
.feature-item:hover{ box-shadow: var(--shadow-md); transform: translateY(-4px); }
.feature-item_icon{
  width: 52px; height: 52px; min-width: 52px;
  border-radius: 14px;
  background: var(--ice-light);
  display: flex; align-items: center; justify-content: center;
}
.feature-item_icon img{ width: 26px; height: 26px; }
.feature-item h3{ font-size: 1.02rem; margin-bottom: 6px; }
.feature-item p{ font-size: .89rem; color: var(--text-light); margin: 0; }

.choose-row{ display: flex; gap: 16px; align-items: flex-start; padding: 18px 0; border-bottom: 1px solid rgba(255,255,255,.12); }
.choose-row:last-child{ border-bottom: none; }
.choose-row .num{
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.4rem;
  color: var(--ice);
  min-width: 46px;
}
.choose-row h4{ color: var(--white); margin-bottom: 4px; font-size: 1.02rem; }
.choose-row p{ margin: 0; color: #b9cadd; font-size: .9rem; }

/* ---------- About / Intro split ---------- */
.split{ display: grid; grid-template-columns: 1fr; gap: 40px; align-items: center; }
@media(min-width: 900px){ .split{ grid-template-columns: 1fr 1fr; } }
.split.reverse .split-media{ order: -1; }
@media(min-width: 900px){ .split.reverse .split-media{ order: 2; } }
.split-media{ position: relative; }
.split-media img{ border-radius: var(--radius-lg); width: 100%; box-shadow: var(--shadow-md); }
.split-media .float-badge{
  position: absolute;
  bottom: -18px; left: -18px;
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  padding: 16px 20px;
  display: flex; align-items: center; gap: 12px;
}
.split-media .float-badge .num{ font-family: var(--font-display); font-weight: 800; color: var(--red); font-size: 1.5rem; }
.split-media .float-badge span.label{ font-size: .78rem; color: var(--text-light); }

.checklist li{ display: flex; align-items: flex-start; gap: 10px; margin-bottom: 12px; font-size: .95rem; }
.checklist li::before{
  content: "";
  width: 20px; height: 20px; min-width: 20px;
  border-radius: 50%;
  background: var(--ice);
  margin-top: 3px;
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='white' d='M9 16.2l-3.5-3.5-1.4 1.4L9 19 20 8l-1.4-1.4z'/%3E%3C/svg%3E") center/70% no-repeat;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='white' d='M9 16.2l-3.5-3.5-1.4 1.4L9 19 20 8l-1.4-1.4z'/%3E%3C/svg%3E") center/70% no-repeat;
}

/* ---------- Stats ---------- */
.stats-row{ display: grid; grid-template-columns: repeat(2,1fr); gap: 20px; }
@media(min-width: 700px){ .stats-row{ grid-template-columns: repeat(4,1fr); } }
.stat-box{ text-align: center; padding: 24px 12px; background: var(--white); border-radius: var(--radius-md); border: 1px solid var(--border); }
.stat-box .num{ font-family: var(--font-display); font-size: 2rem; font-weight: 800; color: var(--red); }
.stat-box .label{ font-size: .85rem; color: var(--text-light); font-weight: 600; }

/* ---------- Testimonials ---------- */
.testi-track-wrap{ position: relative; }
.testi-track{
  display: flex;
  gap: 22px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding-bottom: 10px;
  scrollbar-width: none;
}
.testi-track::-webkit-scrollbar{ display: none; }
.testi-card{
  scroll-snap-align: start;
  min-width: 300px;
  max-width: 340px;
  flex: 1 0 auto;
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 24px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
}
.testi-card_stars{ color: var(--gold); letter-spacing: 2px; margin-bottom: 10px; font-size: .95rem; }
.testi-card_text{ font-size: .93rem; color: var(--text); margin-bottom: 16px; }
.testi-card_profile{ display: flex; align-items: center; gap: 12px; }
.testi-card_avatar img{ width: 44px; height: 44px; border-radius: 50%; object-fit: cover; }
.testi-card_name{ font-weight: 700; color: var(--navy); font-size: .92rem; }
.testi-card_role{ font-size: .78rem; color: var(--text-light); }
.testi-controls{ display: flex; gap: 10px; justify-content: center; margin-top: 20px; }
.testi-controls button{
  width: 40px; height: 40px; border-radius: 50%;
  border: 1px solid var(--border);
  background: var(--white);
  color: var(--navy);
  font-size: 1rem;
}
.testi-controls button:hover{ background: var(--navy); color: var(--white); }

/* ---------- CTA Band ---------- */
.cta-band{
  background: linear-gradient(120deg, var(--navy) 0%, var(--navy-2) 60%, var(--ice) 150%);
  border-radius: var(--radius-lg);
  padding: 46px 34px;
  color: var(--white);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  position: relative;
  overflow: hidden;
}
.cta-band h2{ color: var(--white); margin-bottom: 6px; font-size: clamp(1.4rem,2.6vw,1.9rem); }
.cta-band p{ color: #cfe0ee; margin: 0; }
.cta-actions{ display: flex; gap: 12px; flex-wrap: wrap; }

/* ---------- Footer ---------- */
.site-footer{ background: var(--navy); color: #b9cadd; padding-top: 60px; }
.footer-grid{
  display: grid;
  gap: 40px;
  grid-template-columns: 1fr;
}
@media(min-width: 760px){
  .footer-grid{ grid-template-columns: 1.4fr 1fr 1fr 1.3fr; }
}
.footer-about .logo img{ height: 50px; margin-bottom: 16px; }
.footer-about p{ font-size: .9rem; line-height: 1.7; }
.footer-social{ display: flex; gap: 10px; margin-top: 16px; }
.footer-social a{
  width: 38px; height: 38px; border-radius: 50%;
  background: rgba(255,255,255,.08);
  display: flex; align-items: center; justify-content: center;
  transition: background .2s;
}
.footer-social a:hover{ background: var(--red); }
.footer-social img{ width: 16px; height: 16px; filter: brightness(0) invert(1); }
.footer-heading{ color: var(--white); font-size: 1rem; margin-bottom: 18px; }
.footer-links li{ margin-bottom: 12px; }
.footer-links a{ font-size: .9rem; transition: color .2s; }
.footer-links a:hover{ color: var(--white); }
.footer-contact li{ display: flex; gap: 10px; margin-bottom: 16px; font-size: .88rem; align-items: flex-start; }
.footer-contact img{ width: 17px; height: 17px; filter: brightness(0) invert(1); opacity: .8; margin-top: 2px; }
.footer-bottom{
  margin-top: 50px;
  border-top: 1px solid rgba(255,255,255,.1);
  padding: 20px 0;
  text-align: center;
  font-size: .82rem;
}
.footer-bottom a{ color: var(--ice); }

/* Floating WhatsApp button */
.float-whatsapp{
  position: fixed;
  bottom: 22px; right: 22px;
  width: 58px; height: 58px;
  background: #25D366;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow-lg);
  z-index: 400;
  transition: transform .2s;
}
.float-whatsapp:hover{ transform: scale(1.08); }
.float-whatsapp img{ width: 30px; height: 30px; filter: brightness(0) invert(1); }

/* Scroll to top */
.scroll-top{
  position: fixed;
  bottom: 22px; left: 22px;
  width: 46px; height: 46px;
  background: var(--navy);
  color: var(--white);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  z-index: 400;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all .25s ease;
  border: none;
  font-size: 1.1rem;
}
.scroll-top.show{ opacity: 1; visibility: visible; transform: translateY(0); }

/* ---------- Breadcrumb ---------- */
.breadcrumb-hero{
  background: linear-gradient(120deg, var(--navy), var(--navy-2));
  padding: 54px 0 44px;
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.breadcrumb-hero h1{ color: var(--white); margin-bottom: 10px; font-size: clamp(1.6rem,3.4vw,2.4rem); }
.breadcrumb-list{ display: flex; gap: 8px; flex-wrap: wrap; font-size: .88rem; color: #b9cadd; }
.breadcrumb-list a{ color: #cfe0ee; }
.breadcrumb-list .sep{ opacity: .5; }

/* ---------- Filters (Products page) ---------- */
.filter-bar{
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 34px;
}
.filter-chip{
  padding: 10px 18px;
  border-radius: 100px;
  background: var(--bg);
  border: 1px solid var(--border);
  font-size: .87rem;
  font-weight: 700;
  color: var(--navy);
  transition: all .2s;
}
.filter-chip:hover{ border-color: var(--ice); }
.filter-chip.active{ background: var(--navy); color: var(--white); border-color: var(--navy); }
.filter-count{ color: var(--text-light); font-size: .85rem; margin-bottom: 20px; }
.no-results{ text-align: center; padding: 60px 20px; color: var(--text-light); }

/* ---------- Product Details ---------- */
.pd-gallery{ display: grid; grid-template-columns: 1fr; gap: 14px; }
.pd-main-img{
  background: var(--ice-light);
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 1/1;
  display: flex; align-items: center; justify-content: center;
}
.pd-main-img img{ width: 100%; height: 100%; object-fit: contain; padding: 30px; }
.pd-thumbs{ display: flex; gap: 10px; overflow-x: auto; }
.pd-thumbs img{
  width: 76px; height: 76px; object-fit: contain;
  background: var(--white); border: 2px solid var(--border);
  border-radius: var(--radius-sm); padding: 8px; cursor: pointer;
  transition: border-color .2s;
}
.pd-thumbs img.active, .pd-thumbs img:hover{ border-color: var(--ice); }

.pd-info .cat-pill{
  display: inline-block;
  background: var(--ice-light); color: var(--ice);
  font-size: .78rem; font-weight: 700;
  padding: 6px 14px; border-radius: 100px;
  margin-bottom: 14px;
}
.pd-info h1{ font-size: clamp(1.5rem, 3vw, 2rem); margin-bottom: 10px; }
.pd-meta{ display: flex; gap: 18px; flex-wrap: wrap; margin-bottom: 20px; font-size: .88rem; color: var(--text-light); }
.pd-meta strong{ color: var(--navy); }
.pd-desc{ margin-bottom: 22px; }
.pd-actions{ display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 30px; }
.pd-actions .btn{ flex: 1 1 auto; }

.spec-table{ width: 100%; border-collapse: collapse; }
.spec-table tr{ border-bottom: 1px solid var(--border); }
.spec-table td{ padding: 12px 14px; font-size: .9rem; }
.spec-table td:first-child{ color: var(--text-light); width: 40%; }
.spec-table td:last-child{ font-weight: 700; color: var(--navy); }
.spec-table tr:nth-child(odd){ background: var(--bg); }

.tabs-nav{ display: flex; gap: 6px; border-bottom: 2px solid var(--border); margin-bottom: 24px; flex-wrap: wrap; }
.tab-btn{
  padding: 12px 18px;
  font-weight: 700;
  color: var(--text-light);
  border-bottom: 3px solid transparent;
  margin-bottom: -2px;
  background: none; border-top:none; border-left:none; border-right:none;
  font-size: .92rem;
}
.tab-btn.active{ color: var(--navy); border-color: var(--red); }
.tab-panel{ display: none; }
.tab-panel.active{ display: block; }
.tab-panel ul li{
  padding: 10px 0 10px 26px;
  position: relative;
  border-bottom: 1px dashed var(--border);
  font-size: .92rem;
}
.tab-panel ul li::before{
  content: "";
  position: absolute; left: 0; top: 14px;
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--ice);
}

/* ---------- Blog ---------- */
.blog-card{
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  display: flex; flex-direction: column;
  transition: transform .25s, box-shadow .25s;
}
.blog-card:hover{ transform: translateY(-6px); box-shadow: var(--shadow-md); }
.blog-card_img{ aspect-ratio: 16/10; overflow: hidden; }
.blog-card_img img{ width: 100%; height: 100%; object-fit: cover; transition: transform .4s; }
.blog-card:hover .blog-card_img img{ transform: scale(1.08); }
.blog-card_body{ padding: 20px; display: flex; flex-direction: column; gap: 10px; flex: 1; }
.blog-card_meta{ display: flex; gap: 14px; font-size: .78rem; color: var(--text-light); font-weight: 600; }
.blog-card_title{ font-size: 1.08rem; margin: 0; }
.blog-card_excerpt{ font-size: .88rem; color: var(--text-light); flex: 1; margin: 0; }
.blog-card_link{ font-weight: 700; color: var(--red); font-size: .88rem; display: inline-flex; align-items: center; gap: 6px; }

.blog-detail-hero-img{ border-radius: var(--radius-lg); overflow: hidden; margin-bottom: 30px; box-shadow: var(--shadow-md); }
.blog-detail-meta{ display: flex; gap: 20px; flex-wrap: wrap; color: var(--text-light); font-size: .88rem; margin-bottom: 20px; }
.blog-content h2{ font-size: 1.3rem; margin-top: 34px; }
.blog-content p{ font-size: .98rem; }
.blog-content ul{ margin: 0 0 18px; padding-left: 4px; }
.blog-content ul li{
  padding-left: 26px; position: relative; margin-bottom: 10px; font-size: .96rem;
}
.blog-content ul li::before{
  content: ""; position: absolute; left: 0; top: 9px;
  width: 8px; height: 8px; border-radius: 50%; background: var(--ice);
}
.blog-nav{
  display: grid; grid-template-columns: 1fr 1fr; gap: 16px;
  margin-top: 40px;
}
.blog-nav-link{
  border: 1px solid var(--border); border-radius: var(--radius-md);
  padding: 18px; transition: border-color .2s, box-shadow .2s;
}
.blog-nav-link:hover{ border-color: var(--ice); box-shadow: var(--shadow-sm); }
.blog-nav-link .dir{ font-size: .74rem; text-transform: uppercase; color: var(--text-light); font-weight: 700; letter-spacing: .06em; }
.blog-nav-link.next{ text-align: right; }
.blog-nav-link h4{ font-size: .95rem; margin: 6px 0 0; }
.blog-tags{ display: flex; flex-wrap: wrap; gap: 8px; margin: 20px 0; }
.blog-tags span{ background: var(--bg); border-radius: 100px; padding: 6px 14px; font-size: .78rem; color: var(--text-light); }

/* ---------- Contact ---------- */
.contact-card{
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 24px;
  display: flex; gap: 16px; align-items: flex-start;
  margin-bottom: 16px;
}
.contact-card_icon{
  width: 46px; height: 46px; min-width: 46px;
  border-radius: 12px; background: var(--ice-light);
  display: flex; align-items: center; justify-content: center;
}
.contact-card_icon img{ width: 22px; height: 22px; }
.contact-card h4{ font-size: .95rem; margin-bottom: 4px; }
.contact-card p, .contact-card a{ font-size: .9rem; color: var(--text-light); margin: 0; }

.form-grid{ display: grid; grid-template-columns: 1fr; gap: 16px; }
@media(min-width: 640px){ .form-grid{ grid-template-columns: 1fr 1fr; } }
.form-field{ display: flex; flex-direction: column; gap: 6px; }
.form-field.full{ grid-column: 1/-1; }
.form-field label{ font-size: .85rem; font-weight: 700; color: var(--navy); }
.form-field input, .form-field textarea, .form-field select{
  padding: 13px 16px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: .93rem;
  background: var(--bg);
  transition: border-color .2s, background .2s;
}
.form-field input:focus, .form-field textarea:focus, .form-field select:focus{
  border-color: var(--ice); background: var(--white); outline: none;
}
.form-note{ font-size: .8rem; color: var(--text-light); margin-top: 10px; }
.form-success{
  display: none;
  background: #E7F8EE; color: #157347;
  border: 1px solid #b6e3c8;
  padding: 14px 18px; border-radius: var(--radius-sm);
  font-size: .9rem; font-weight: 600; margin-bottom: 18px;
}
.form-success.show{ display: block; }

.map-wrap{ border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-md); }
.map-wrap iframe{ width: 100%; height: 380px; border: 0; display: block; }

/* ---------- About page specific ---------- */
.mv-card{
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 34px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  height: 100%;
}
.mv-card .icon-badge{
  width: 54px; height: 54px; border-radius: 16px;
  background: var(--ice-light);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 18px;
}
.mv-card .icon-badge img{ width: 26px; height: 26px; }
.timeline{ position: relative; padding-left: 26px; border-left: 2px dashed var(--border); }
.timeline-item{ position: relative; padding-bottom: 30px; }
.timeline-item::before{
  content: ""; position: absolute; left: -32px; top: 2px;
  width: 12px; height: 12px; border-radius: 50%; background: var(--red);
  box-shadow: 0 0 0 4px var(--ice-light);
}
.timeline-item h4{ font-size: 1rem; margin-bottom: 4px; }
.timeline-item p{ font-size: .88rem; color: var(--text-light); margin: 0; }

/* ---------- Gallery strip (home) ---------- */
.gallery-strip{
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}
@media(min-width: 700px){ .gallery-strip{ grid-template-columns: repeat(4, 1fr); } }
.gallery-strip a{
  display: block; aspect-ratio: 1/1; border-radius: var(--radius-md);
  overflow: hidden; position: relative;
}
.gallery-strip img{ width: 100%; height: 100%; object-fit: cover; transition: transform .4s; }
.gallery-strip a:hover img{ transform: scale(1.1); }

/* ---------- Utility ---------- */
.text-center{ text-align: center; }
.mt-0{ margin-top: 0; }
.mb-0{ margin-bottom: 0; }
.flex-between{ display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap; }
.tag-pill{
  display: inline-block;
  background: var(--ice-light); color: var(--ice);
  padding: 5px 13px; border-radius: 100px; font-size: .76rem; font-weight: 700;
}

/* ---------- Desktop breakpoints for header ---------- */
@media(min-width: 992px){
  .main-nav{ display: block; }
  .nav-cta{ display: inline-flex; }
  .menu-toggle{ display: none; }
}

/* Print niceties */
@media print{
  .site-header, .site-footer, .float-whatsapp, .scroll-top{ display: none; }
}
