@import url('https://fonts.googleapis.com/css2?family=Rajdhani:wght@500;600;700&family=Barlow:wght@300;400;500;600&display=swap');
:root {
  --green: #2ecc71;
  --green-light: #a8f0c6;
  --green-mid: #57d68d;
  --green-dark: #1a9e54;
  --green-glow: rgba(46,204,113,.18);
  --white: #ffffff;
  --off-white: #f4fbf7;
  --gray: #6b7c73;
  --gray-light: #e8f5ee;
  --text: #0d1f16;
  --shadow: 0 8px 32px rgba(46,204,113,.13);
  --shadow-hover: 0 16px 48px rgba(46,204,113,.22);
  --radius: 16px;
  --radius-sm: 10px;
}
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; overflow-x: hidden; }
body { font-family: 'Barlow', sans-serif; background: var(--off-white); color: var(--text); }
body.menu-open { overflow: hidden; }
.burger { display: none; }
.page-hero {
  min-height: 46vh;
  background: linear-gradient(135deg, #e8f8f0 0%, #fff 60%, #d4f5e4 100%);
  display: flex; align-items: center;
  padding: 110px 5% 60px;
  position: relative; overflow: hidden;
}
.page-hero::before {
  content: ''; position: absolute; top: -80px; right: -80px;
  width: 380px; height: 380px;
  background: radial-gradient(circle, #a8f0c640, transparent 70%);
  border-radius: 50%; pointer-events: none;
}
.page-hero-content { z-index: 1; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: #d4f5e4; color: var(--green-dark);
  padding: 5px 16px; border-radius: 50px;
  font-size: .8rem; font-weight: 600; margin-bottom: 16px;
}
.hero-badge::before { content: '●'; font-size: .55rem; animation: pulse 1.6s infinite; }
@keyframes pulse { 0%,100%{opacity:1} 50%{opacity:.3} }
.page-hero h1 { font-family: 'Rajdhani', sans-serif; font-size: clamp(2rem, 5vw, 3.4rem); font-weight: 700; line-height: 1.1; margin-bottom: 14px; }
.page-hero h1 em { font-style: normal; color: var(--green); }
.page-hero p { color: var(--gray); font-size: 1rem; line-height: 1.7; max-width: 500px; }
.section { padding: 70px 5%; }
.section-alt { background: #fff; }
.section-tag { display: inline-block; background: var(--green-light); color: var(--green-dark); padding: 4px 14px; border-radius: 50px; font-size: .75rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; margin-bottom: 10px; }
.section-title { font-family: 'Rajdhani', sans-serif; font-size: clamp(1.6rem, 3vw, 2.4rem); font-weight: 700; line-height: 1.15; margin-bottom: 8px; }
.section-sub { color: var(--gray); font-size: .97rem; max-width: 500px; line-height: 1.65; margin-bottom: 40px; }
.product-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(210px, 1fr)); gap: 22px; }
.product-card { background: var(--off-white); border: 1.5px solid var(--gray-light); border-radius: var(--radius); padding: 22px 16px 18px; text-align: center; cursor: pointer; transition: transform .25s, box-shadow .25s, border-color .25s; position: relative; overflow: hidden; }
.product-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-hover); border-color: var(--green-mid); }
.product-card img { width: 120px; height: 150px; object-fit: contain; margin-bottom: 12px; transition: transform .3s; position: relative; z-index: 1; }
.product-card:hover img { transform: scale(1.06); }
.product-card h3 { font-family: 'Rajdhani', sans-serif; font-weight: 700; font-size: 1.05rem; margin-bottom: 4px; }
.product-card .sub { font-size: .78rem; color: var(--gray); margin-bottom: 14px; }
.product-card .price { display: inline-block; background: var(--green); color: #fff; padding: 5px 18px; border-radius: 50px; font-weight: 700; font-size: .88rem; }
.product-card .price.consult { background: var(--gray-light); color: var(--gray); }
.badge { position: absolute; top: 12px; right: 12px; background: var(--green); color: #fff; font-size: .65rem; font-weight: 700; padding: 3px 9px; border-radius: 50px; z-index: 2; }
.badge.new2025 { background: #7c3aed; }
.stock-out { opacity: .55; }
.stock-badge { display: inline-block; font-size: .72rem; font-weight: 600; padding: 2px 10px; border-radius: 50px; margin-bottom: 6px; }
.stock-badge.in { background: #d4f5e4; color: var(--green-dark); }
.stock-badge.out { background: #fee2e2; color: #b91c1c; }
.stock-badge.low { background: #fef3c7; color: #92400e; }
.btn { display: inline-flex; align-items: center; gap: 8px; text-decoration: none; font-weight: 600; border-radius: 50px; transition: all .2s; cursor: pointer; border: none; font-family: 'Barlow', sans-serif; font-size: 1rem; }
.btn-primary { background: var(--green); color: #fff; padding: 13px 30px; box-shadow: 0 4px 20px rgba(46,204,113,.3); }
.btn-primary:hover { background: var(--green-dark); transform: translateY(-2px); }
.btn-wa { background: #25D366; color: #fff; padding: 13px 30px; }
.btn-wa:hover { background: #1da851; transform: translateY(-2px); }
.btn-repair { background: #fff; color: #1a6b40; border: 2px solid var(--green); padding: 13px 28px; font-family: 'Barlow', sans-serif; font-weight: 700; font-size: .95rem; }
.btn-repair:hover { background: #e8f8f0; transform: translateY(-2px); }
.filter-tabs { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 32px; }
.filter-tab { padding: 7px 18px; border-radius: 50px; border: 1.5px solid var(--gray-light); background: #fff; color: var(--gray); font-size: .86rem; font-weight: 500; cursor: pointer; transition: all .2s; font-family: 'Barlow', sans-serif; }
.filter-tab:hover, .filter-tab.active { background: var(--green); color: #fff; border-color: var(--green); }
.wa-float { position: fixed; bottom: 24px; right: 24px; z-index: 300; width: 58px; height: 58px; border-radius: 50%; background: #25D366; color: #fff; display: flex; align-items: center; justify-content: center; font-size: 1.7rem; text-decoration: none; box-shadow: 0 4px 20px rgba(37,211,102,.4); transition: transform .2s; }
.wa-float:hover { transform: scale(1.12); }
.fade-up { opacity: 0; transform: translateY(24px); transition: opacity .6s ease, transform .6s ease; }
.fade-up.visible { opacity: 1; transform: none; }
@media(max-width: 768px) {
  .product-grid { grid-template-columns: repeat(auto-fill, minmax(160px, 1fr)); gap: 14px; }
}
