@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700;800;900&display=swap');

/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --navy:      #162052;
  --blue:      #1565C0;
  --blue-md:   #1976D2;
  --blue-lt:   #1E88E5;
  --sky:       #42A5F5;
  --bg:        #EBF3FE;
  --bg-light:  #F4F8FF;
  --white:     #FFFFFF;
  --gray:      #6B7280;
  --gray-lt:   #E5EEFF;
  --dark:      #0D1B40;
  --shadow:    0 4px 24px rgba(21,101,192,.13);
  --shadow-lg: 0 8px 40px rgba(21,101,192,.18);
  --radius:    12px;
  --t:         .22s ease;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Montserrat', sans-serif;
  color: var(--dark);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

html {
  overflow-x: hidden;
  scroll-behavior: smooth;
}

a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; object-fit: cover; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 12px 26px; border-radius: 8px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700; font-size: .9rem;
  border: 2px solid transparent;
  transition: all var(--t); white-space: nowrap;
}
.btn-primary { background: var(--blue); color: var(--white); }
.btn-primary:hover { background: var(--navy); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(21,101,192,.35); }
.btn-outline { background: transparent; color: var(--blue); border-color: var(--blue); }
.btn-outline:hover { background: var(--blue); color: var(--white); transform: translateY(-2px); }
.btn-navy { background: var(--navy); color: var(--white); }
.btn-navy:hover { background: #0d1635; transform: translateY(-2px); }
.btn-white { background: var(--white); color: var(--navy); }
.btn-white:hover { background: var(--bg); transform: translateY(-2px); }
.btn-wa { background: #25D366; color: white; border-color: #25D366; }
.btn-wa:hover { background: #128C7E; transform: translateY(-2px); }
.btn-sm { padding: 8px 18px; font-size: .82rem; }
.btn-lg { padding: 15px 34px; font-size: 1rem; }
.btn-block { width: 100%; justify-content: center; }

/* ===== SECTION TITLES ===== */
.section-label {
  display: inline-block;
  background: var(--bg); color: var(--blue);
  font-size: .75rem; font-weight: 700;
  padding: 5px 14px; border-radius: 20px;
  letter-spacing: .8px; text-transform: uppercase;
  margin-bottom: 12px;
}
.section-title { font-size: 2rem; font-weight: 800; color: var(--navy); line-height: 1.25; margin-bottom: 10px; }
.section-sub { font-size: .95rem; color: var(--gray); margin-bottom: 40px; }

/* ===== TOPBAR ===== */
.topbar {
  background: var(--navy);
  color: rgba(255,255,255,.75);
  font-size: .78rem; font-weight: 500;
  padding: 8px 0;
}
.topbar .container { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 10px; }
.topbar-left, .topbar-right { display: flex; align-items: center; gap: 20px; }
.topbar a { color: rgba(255,255,255,.75); transition: color var(--t); }
.topbar a:hover { color: #fff; }
.topbar-item { display: flex; align-items: center; gap: 6px; }
.topbar svg { flex-shrink: 0; }

/* ===== HEADER ===== */
.header {
  background: var(--white);
  position: sticky; top: 0; z-index: 1000;
  border-bottom: 2px solid var(--gray-lt);
  transition: box-shadow var(--t);
}
.header.scrolled { box-shadow: 0 4px 24px rgba(22,32,82,.12); }
.header-inner { display: flex; align-items: center; gap: 24px; padding: 14px 0; }

/* Logo */
.logo { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.logo-svg { width: 44px; height: 44px; }
.logo-text { font-size: 1.5rem; font-weight: 900; color: var(--navy); letter-spacing: -1px; }
.logo-text span { color: var(--sky); }

/* Nav */
nav { flex: 1; }
.nav-list { display: flex; gap: 2px; align-items: center; }
.nav-list a {
  padding: 8px 13px; border-radius: 7px;
  font-size: .83rem; font-weight: 600; color: var(--dark);
  transition: all var(--t); white-space: nowrap;
}
.nav-list a:hover, .nav-list a.active { background: var(--bg); color: var(--blue); }

/* Header right */
.header-right { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }
.header-phone { display: flex; align-items: center; gap: 7px; font-weight: 800; font-size: .95rem; color: var(--navy); white-space: nowrap; }
.header-phone svg { color: var(--blue); }

/* Cart */
.cart-btn {
  position: relative; display: flex; align-items: center; justify-content: center;
  width: 42px; height: 42px; border-radius: 10px;
  background: var(--bg); border: 2px solid var(--gray-lt);
  color: var(--navy); transition: all var(--t);
}
.cart-btn:hover { background: var(--blue); color: white; border-color: var(--blue); }
.cart-count {
  position: absolute; top: -6px; right: -6px;
  background: var(--blue); color: white;
  font-size: .65rem; font-weight: 800;
  width: 18px; height: 18px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  opacity: 0; transform: scale(0);
  transition: all var(--t);
}
.cart-count.show { opacity: 1; transform: scale(1); }

/* Burger */
.burger {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; padding: 6px;
}
.burger span { display: block; width: 24px; height: 2px; background: var(--navy); border-radius: 2px; transition: all var(--t); }

/* ===== MOBILE NAV ===== */
.mobile-nav {
  display: none; position: fixed;
  inset: 0; top: 74px;
  background: white; z-index: 999;
  flex-direction: column; padding: 16px 20px;
  overflow-y: auto;
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  padding: 14px 0; font-size: .95rem; font-weight: 600;
  color: var(--dark); border-bottom: 1px solid var(--gray-lt);
  display: flex; align-items: center; justify-content: space-between;
}
.mobile-nav a:hover { color: var(--blue); }
.mobile-nav .mob-actions { margin-top: 20px; display: flex; flex-direction: column; gap: 12px; }

.mobile-nav .mob-actions a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  padding: 14px 20px;
  border-radius: 10px;
  font-size: .95rem;
  font-weight: 700;
  border: none;
  border-bottom: none !important;
  text-decoration: none;
  min-height: 52px;
  white-space: nowrap;
}

.mobile-nav .mob-actions .btn-navy {
  background: var(--navy);
  color: #fff !important;
}

.mobile-nav .mob-actions .btn-wa {
  background: #25D366;
  color: #fff !important;
}


/* ===== HERO ===== */
.hero { background: var(--white); padding: 60px 0 0; }
.hero-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; margin-bottom: 50px; }
.hero-label {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--bg); color: var(--blue);
  font-size: .78rem; font-weight: 700; padding: 6px 14px;
  border-radius: 20px; margin-bottom: 20px;
  letter-spacing: .5px;
}
.hero-label .dot { width: 7px; height: 7px; background: #22C55E; border-radius: 50%; animation: blink 2s infinite; }
@keyframes blink { 0%,100%{opacity:1} 50%{opacity:.4} }

.hero h1 {
  font-size: 2.8rem; font-weight: 900; line-height: 1.15;
  color: var(--navy); margin-bottom: 18px;
}
.hero h1 span { color: var(--blue); }
.hero-desc { font-size: 1rem; color: var(--gray); margin-bottom: 32px; line-height: 1.7; }
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; }

.hero-stats { display: flex; gap: 36px; margin-top: 36px; }
.stat { }
.stat-num { font-size: 1.8rem; font-weight: 900; color: var(--blue); line-height: 1; }
.stat-label { font-size: .72rem; font-weight: 600; color: var(--gray); margin-top: 3px; text-transform: uppercase; letter-spacing: .5px; }

.hero-right { position: relative; }
.hero-img-wrap {
  border-radius: 16px; overflow: hidden;
  box-shadow: var(--shadow-lg);
  background: var(--bg); aspect-ratio: 4/3;
  display: flex; align-items: center; justify-content: center;
}
.hero-img-wrap img { width: 100%; height: 100%; object-fit: cover; }
.hero-img-placeholder {
  display: flex; flex-direction: column; align-items: center; gap: 12px;
  color: var(--sky); opacity: .5;
}
.hero-badge-float {
  position: absolute; bottom: -20px; left: -20px;
  background: white; border-radius: 12px;
  padding: 14px 18px; box-shadow: var(--shadow-lg);
  display: flex; align-items: center; gap: 10px;
}
.hero-badge-float .icon { width: 38px; height: 38px; background: var(--bg); border-radius: 8px; display: flex; align-items: center; justify-content: center; color: var(--blue); }
.hero-badge-float .text strong { display: block; font-size: .85rem; font-weight: 800; color: var(--navy); }
.hero-badge-float .text span { font-size: .72rem; color: var(--gray); }

/* Hero bottom strip */
.hero-strip {
  background: var(--navy);
  padding: 24px 0;
}
.hero-strip-inner { display: flex; justify-content: space-around; align-items: center; gap: 20px; flex-wrap: wrap; }
.strip-item { display: flex; align-items: center; gap: 10px; color: rgba(255,255,255,.85); }
.strip-item svg { color: var(--sky); }
.strip-item span { font-size: .82rem; font-weight: 600; }

/* ===== BRANDS ===== */
.brands { padding: 48px 0; border-bottom: 1px solid var(--gray-lt); }
.brands-label { text-align: center; font-size: .75rem; font-weight: 700; color: var(--gray); text-transform: uppercase; letter-spacing: 1.5px; margin-bottom: 26px; }
.brands-row { display: flex; justify-content: center; align-items: center; gap: 12px; flex-wrap: wrap; }
.brand-chip {
  background: var(--bg-light); border: 2px solid var(--gray-lt);
  border-radius: 10px; padding: 10px 24px;
  font-size: .9rem; font-weight: 800; color: var(--gray);
  letter-spacing: 1px; transition: all var(--t);
}
.brand-chip:hover { border-color: var(--blue); color: var(--blue); background: var(--bg); transform: translateY(-2px); }

/* ===== PRODUCTS ===== */
.products { padding: 80px 0; }
.products-header { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 36px; flex-wrap: wrap; gap: 16px; }

.products-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 24px; }

.product-card {
  background: var(--white);
  border: 1.5px solid #E8EDF8;
  border-radius: 16px; overflow: hidden;
  display: flex; flex-direction: column;
  transition: all var(--t);
  box-shadow: 0 2px 12px rgba(21,101,192,.06);
}
.product-card:hover {
  border-color: var(--blue);
  box-shadow: 0 8px 32px rgba(21,101,192,.14);
  transform: translateY(-6px);
}

.product-img {
  height: 210px; background: linear-gradient(135deg, #EBF3FE 0%, #F0F7FF 100%);
  display: flex; align-items: center; justify-content: center;
  position: relative; overflow: hidden; cursor: pointer;
}
.product-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }
.product-card:hover .product-img img { transform: scale(1.04); }
.product-img-ph {
  display: flex; flex-direction: column; align-items: center; gap: 12px;
  color: #93C5FD; font-size: .72rem; font-weight: 700; letter-spacing: .5px;
  text-transform: uppercase; user-select: none;
}
.product-img-ph svg { opacity: .5; }
/* Hover overlay on product image */
.product-img::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(22,32,82,.18) 0%, transparent 60%);
  opacity: 0; transition: opacity .3s ease;
  pointer-events: none;
}
.product-card:hover .product-img::after { opacity: 1; }

.product-badge {
  position: absolute; top: 12px; left: 12px;
  background: var(--blue); color: white;
  font-size: .67rem; font-weight: 800;
  padding: 4px 11px; border-radius: 20px; letter-spacing: .4px;
  box-shadow: 0 2px 8px rgba(21,101,192,.35);
}
.product-badge.green  { background: #16A34A; box-shadow: 0 2px 8px rgba(22,163,74,.35); }
.product-badge.orange { background: #EA580C; box-shadow: 0 2px 8px rgba(234,88,12,.35); }
.product-badge.purple { background: #7C3AED; box-shadow: 0 2px 8px rgba(124,58,237,.35); }

.product-body { padding: 16px 18px 18px; flex: 1; display: flex; flex-direction: column; }
.product-brand { font-size: .68rem; font-weight: 800; color: var(--sky); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 5px; }
.product-name { font-size: .97rem; font-weight: 800; color: var(--navy); margin-bottom: 10px; line-height: 1.35; }
.product-specs { display: flex; flex-wrap: wrap; gap: 5px; margin-bottom: 10px; }
.product-spec {
  background: #EBF3FE; color: #1565C0;
  font-size: .68rem; font-weight: 700; padding: 3px 9px;
  border-radius: 20px; white-space: nowrap;
}
.product-desc { font-size: .79rem; color: var(--gray); line-height: 1.55; margin-bottom: 14px; flex: 1; }
.product-price-row { margin-top: auto; padding-top: 12px; border-top: 1px solid #F0F4FA; }
.product-old { font-size: .78rem; color: #9CA3AF; text-decoration: line-through; margin-bottom: 2px; }
.product-price { font-size: 1.45rem; font-weight: 900; color: var(--navy); margin-bottom: 12px; letter-spacing: -.3px; }

/* Actions row — info left, cart right */
.product-actions { display: flex; gap: 8px; align-items: stretch; }
.btn-info {
  flex: 0 0 auto;
  padding: 10px 14px;
  background: var(--bg);
  color: var(--navy);
  border: 1.5px solid #D1DCF0;
  border-radius: 10px;
  font-family: 'Montserrat', sans-serif;
  font-size: .78rem; font-weight: 700;
  cursor: pointer; transition: all var(--t);
  display: flex; align-items: center; justify-content: center; gap: 5px;
  white-space: nowrap;
}
.btn-info:hover { border-color: var(--blue); color: var(--blue); background: #EBF3FE; }
.btn-cart {
  flex: 1;
  padding: 10px 14px;
  font-size: .82rem; font-weight: 700;
  white-space: nowrap;
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center; gap: 6px;
}
.btn-cart-icon {
  width: 40px; height: 40px; border-radius: 8px; display: flex; align-items: center; justify-content: center;
  background: var(--bg); border: 2px solid var(--gray-lt); color: var(--blue); flex-shrink: 0;
  transition: all var(--t);
}
.btn-cart-icon:hover { background: var(--bg-light); }
.btn-cart-icon.added { background: #DCFCE7; border-color: #86EFAC; color: #16A34A; }

/* ===== SERVICES ===== */
.services { padding: 80px 0; background: var(--bg-light); }
.services-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 22px; }
.service-card {
  background: var(--white); border: 2px solid var(--gray-lt);
  border-radius: var(--radius); padding: 28px 24px;
  transition: all var(--t);
}
.service-card:hover { border-color: var(--blue); transform: translateY(-4px); box-shadow: var(--shadow); }
.service-icon {
  width: 52px; height: 52px; background: var(--bg);
  border-radius: 12px; display: flex; align-items: center; justify-content: center;
  margin-bottom: 18px; color: var(--blue);
}
.service-card:hover .service-icon { background: var(--blue); color: white; }
.service-name { font-size: 1rem; font-weight: 800; color: var(--navy); margin-bottom: 8px; }
.service-desc { font-size: .83rem; color: var(--gray); line-height: 1.6; margin-bottom: 16px; }
.service-price { font-size: .95rem; font-weight: 800; color: var(--blue); }

/* ===== WHY ===== */
.why { padding: 80px 0; }
.why-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 22px; }
.why-card {
  text-align: center; padding: 32px 20px;
  background: var(--white); border: 2px solid var(--gray-lt);
  border-radius: var(--radius); transition: all var(--t);
}
.why-card:hover { border-color: var(--blue); transform: translateY(-5px); box-shadow: var(--shadow); }
.why-icon {
  width: 60px; height: 60px; border-radius: 50%;
  background: var(--bg); display: flex; align-items: center; justify-content: center;
  margin: 0 auto 16px; color: var(--blue);
  transition: all var(--t);
}
.why-card:hover .why-icon { background: var(--blue); color: white; }
.why-title { font-size: .95rem; font-weight: 800; color: var(--navy); margin-bottom: 8px; }
.why-desc { font-size: .8rem; color: var(--gray); line-height: 1.6; }

/* ===== CTA ===== */
.cta { background: linear-gradient(135deg, var(--navy) 0%, var(--blue) 100%); padding: 70px 0; text-align: center; }
.cta h2 { font-size: 2.2rem; font-weight: 900; color: white; margin-bottom: 12px; }
.cta p { font-size: 1rem; color: rgba(255,255,255,.8); margin-bottom: 32px; }
.cta-btns { display: flex; justify-content: center; gap: 14px; flex-wrap: wrap; }

/* ===== CONTACT ===== */
.contact { padding: 80px 0; }
.contact-grid { display: grid; grid-template-columns: 1fr 1.3fr; gap: 56px; }
.contact-info { }
.contact-items { display: flex; flex-direction: column; gap: 16px; margin-top: 24px; }
.contact-item {
  display: flex; gap: 14px; align-items: flex-start;
  padding: 16px; background: var(--bg-light);
  border: 2px solid var(--gray-lt); border-radius: 10px;
}
.contact-item-icon {
  width: 42px; height: 42px; background: var(--blue);
  border-radius: 9px; display: flex; align-items: center; justify-content: center;
  color: white; flex-shrink: 0;
}
.ci-label { font-size: .72rem; font-weight: 700; color: var(--gray); text-transform: uppercase; letter-spacing: .5px; margin-bottom: 3px; }
.ci-val { font-size: .9rem; font-weight: 700; color: var(--navy); }
.ci-val a { transition: color var(--t); }
.ci-val a:hover { color: var(--blue); }

.contact-form {
  background: var(--white); border: 2px solid var(--gray-lt);
  border-radius: var(--radius); padding: 36px; box-shadow: var(--shadow);
}
.contact-form h3 { font-size: 1.2rem; font-weight: 800; color: var(--navy); margin-bottom: 22px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-group { margin-bottom: 16px; }
.form-group label { display: block; font-size: .78rem; font-weight: 700; color: var(--navy); margin-bottom: 6px; text-transform: uppercase; letter-spacing: .4px; }
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%; padding: 11px 14px;
  border: 2px solid var(--gray-lt); border-radius: 8px;
  font-family: 'Montserrat', sans-serif; font-size: .88rem;
  color: var(--dark); background: var(--white); outline: none;
  transition: border-color var(--t);
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus { border-color: var(--blue); }
.form-group textarea { height: 100px; resize: vertical; }

.form-group-input {
  width: 100%; padding: 12px 14px;
  border: 2px solid var(--gray-lt); border-radius: 8px;
  font-family: 'Montserrat', sans-serif; font-size: .88rem;
  color: var(--dark); background: var(--white); outline: none;
  transition: border-color var(--t);
}
.form-group-input:focus { border-color: var(--blue); }


/* ===== FOOTER ===== */
.footer { background: var(--navy); color: rgba(255,255,255,.7); padding: 60px 0 0; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 48px; }

.footer-logo { display: flex; align-items: center; gap: 10px; margin-bottom: 14px; }
.footer-logo svg { width: 36px; height: 36px; }
.footer-logo-text { font-size: 1.3rem; font-weight: 900; color: white; }
.footer-logo-text span { color: var(--sky); }
.footer-desc { font-size: .82rem; line-height: 1.7; max-width: 240px; margin-bottom: 18px; }
.footer-socials { display: flex; gap: 10px; }
.footer-socials a {
  width: 34px; height: 34px; border-radius: 8px;
  background: rgba(255,255,255,.08); display: flex;
  align-items: center; justify-content: center;
  color: rgba(255,255,255,.7); transition: all var(--t);
}
.footer-socials a:hover { background: var(--blue); color: white; }

.footer-head { font-size: .78rem; font-weight: 800; color: white; text-transform: uppercase; letter-spacing: .8px; margin-bottom: 16px; }
.footer-links { display: flex; flex-direction: column; gap: 9px; }
.footer-links a { font-size: .82rem; transition: color var(--t); }
.footer-links a:hover { color: white; }

.footer-contact-list { display: flex; flex-direction: column; gap: 12px; }
.footer-ci { display: flex; gap: 10px; align-items: flex-start; font-size: .82rem; }
.footer-ci svg { flex-shrink: 0; margin-top: 2px; color: var(--sky); }
.footer-ci a { transition: color var(--t); }
.footer-ci a:hover { color: white; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.1);
  padding: 20px 0;
  display: flex; justify-content: space-between;
  align-items: center; flex-wrap: wrap; gap: 10px;
  font-size: .78rem;
}
.footer-bottom a:hover { color: white; }

/* ===== FLOATING ===== */
.floating { position: fixed; bottom: 28px; right: 24px; display: flex; flex-direction: column; gap: 10px; z-index: 999; }
.float-btn {
  width: 50px; height: 50px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: white; border: none; box-shadow: 0 4px 16px rgba(0,0,0,.2);
  transition: all var(--t); text-decoration: none;
}
.float-btn:hover { transform: scale(1.1); box-shadow: 0 8px 24px rgba(0,0,0,.25); }
.float-wa { background: #25D366; }
.float-call { background: var(--blue); }
.float-top { background: var(--navy); }

/* ===== CART DRAWER ===== */
.cart-overlay {
  position: fixed; inset: 0;
  background: rgba(13,27,64,.5); backdrop-filter: blur(4px);
  z-index: 2000; opacity: 0; pointer-events: none;
  transition: opacity var(--t);
}
.cart-overlay.open { opacity: 1; pointer-events: all; }
.cart-drawer {
  position: fixed; top: 0; right: 0; bottom: 0;
  width: 400px; max-width: 100vw;
  background: white; z-index: 2001;
  display: flex; flex-direction: column;
  transform: translateX(100%); transition: transform .3s ease;
  box-shadow: -8px 0 40px rgba(13,27,64,.15);
}
.cart-drawer.open { transform: translateX(0); }
.cart-drawer-head {
  display: flex; align-items: center; justify-content: space-between;
  padding: 20px 24px; border-bottom: 2px solid var(--gray-lt);
}
.cart-drawer-head h3 { font-size: 1.1rem; font-weight: 800; color: var(--navy); }
.cart-close {
  width: 34px; height: 34px; border-radius: 8px; border: 2px solid var(--gray-lt);
  background: white; display: flex; align-items: center; justify-content: center;
  color: var(--gray); font-size: 1.1rem; transition: all var(--t);
}
.cart-close:hover { background: var(--navy); color: white; border-color: var(--navy); }
.cart-body { flex: 1; overflow-y: auto; padding: 20px 24px; }
.cart-empty { text-align: center; padding: 60px 20px; color: var(--gray); }
.cart-empty svg { margin: 0 auto 14px; opacity: .3; }
.cart-empty p { font-size: .9rem; font-weight: 600; }
.cart-item {
  display: flex; gap: 14px; align-items: flex-start;
  padding: 14px 0; border-bottom: 1px solid var(--gray-lt);
}
.cart-item-img {
  width: 64px; height: 64px; border-radius: 8px;
  background: var(--bg); flex-shrink: 0; overflow: hidden;
  display: flex; align-items: center; justify-content: center; color: var(--sky); opacity: .6;
}
.cart-item-img img { width: 100%; height: 100%; object-fit: cover; }
.cart-item-info { flex: 1; }
.cart-item-name { font-size: .85rem; font-weight: 700; color: var(--navy); margin-bottom: 4px; line-height: 1.3; }
.cart-item-price { font-size: .9rem; font-weight: 800; color: var(--blue); }
.cart-item-qty { display: flex; align-items: center; gap: 8px; margin-top: 8px; }
.qty-btn {
  width: 26px; height: 26px; border-radius: 6px;
  border: 2px solid var(--gray-lt); background: white;
  font-size: 1rem; font-weight: 700; color: var(--navy);
  display: flex; align-items: center; justify-content: center;
  transition: all var(--t);
}
.qty-btn:hover { border-color: var(--blue); color: var(--blue); }
.qty-num { font-size: .85rem; font-weight: 800; min-width: 20px; text-align: center; }
.cart-item-remove { background: none; border: none; color: var(--gray); transition: color var(--t); }
.cart-item-remove:hover { color: #EF4444; }
.cart-footer { padding: 20px 24px; border-top: 2px solid var(--gray-lt); }
.cart-total { display: flex; justify-content: space-between; align-items: center; margin-bottom: 16px; }
.cart-total-label { font-size: .9rem; font-weight: 700; color: var(--gray); }
.cart-total-price { font-size: 1.3rem; font-weight: 900; color: var(--navy); }
.cart-wa-btn {
  display: flex; align-items: center; justify-content: center; gap: 10px;
  width: 100%; padding: 15px; background: #25D366; color: white;
  border: none; border-radius: 10px; font-family: 'Montserrat', sans-serif;
  font-size: .95rem; font-weight: 800; cursor: pointer;
  transition: all var(--t); text-decoration: none;
}
.cart-wa-btn:hover { background: #128C7E; transform: translateY(-2px); box-shadow: 0 6px 20px rgba(37,211,102,.4); }
.cart-note { font-size: .72rem; color: var(--gray); text-align: center; margin-top: 10px; line-height: 1.5; }

/* ===== MODAL ===== */
.modal-overlay {
  position: fixed; inset: 0; background: rgba(13,27,64,.55); backdrop-filter: blur(4px);
  z-index: 3000; display: none; align-items: center; justify-content: center; padding: 20px;
}
.modal-overlay.open { display: flex; }
.modal {
  background: white; border-radius: 16px; padding: 40px; width: 100%; max-width: 460px;
  position: relative; animation: mIn .3s ease;
}
@keyframes mIn { from{opacity:0;transform:scale(.95)} to{opacity:1;transform:scale(1)} }
.modal-close {
  position: absolute; top: 14px; right: 14px;
  width: 30px; height: 30px; border-radius: 8px; border: 2px solid var(--gray-lt);
  background: white; font-size: 1rem; color: var(--gray); display: flex; align-items: center; justify-content: center; transition: all var(--t);
}
.modal-close:hover { background: var(--navy); color: white; border-color: var(--navy); }
.modal h3 { font-size: 1.25rem; font-weight: 800; color: var(--navy); margin-bottom: 6px; }
.modal p { font-size: .85rem; color: var(--gray); margin-bottom: 22px; }

/* ===== SUCCESS MSG ===== */
.success-box {
  display: none; align-items: center; gap: 10px;
  background: #DCFCE7; border: 2px solid #86EFAC;
  border-radius: 8px; padding: 12px 16px;
  color: #15803D; font-weight: 700; font-size: .85rem;
  margin-bottom: 14px;
}
.success-box.show { display: flex; }

/* ===== ANIMATION ===== */
.fade-up { opacity: 0; transform: translateY(24px); transition: opacity .5s ease, transform .5s ease; }
.fade-up.visible { opacity: 1; transform: none; }

/* ===== PAGE HERO ===== */
.page-hero { background: linear-gradient(135deg, var(--navy), var(--blue)); color: white; padding: 50px 0; }
.page-hero h1 { font-size: 2rem; font-weight: 900; margin-bottom: 8px; }
.page-hero p { opacity: .8; font-size: .9rem; }
.breadcrumb { display: flex; gap: 8px; align-items: center; font-size: .78rem; opacity: .7; margin-bottom: 12px; }
.breadcrumb a:hover { opacity: 1; }

/* ===== CATALOG FILTER ===== */
.catalog-wrap { padding: 50px 0; }
.catalog-top { display: flex; justify-content: space-between; align-items: center; margin-bottom: 20px; flex-wrap: wrap; gap: 14px; }
.catalog-count { font-size: .85rem; color: var(--gray); font-weight: 600; }
.filter-tabs { display: flex; gap: 8px; flex-wrap: wrap; }
.filter-tab {
  padding: 7px 16px; border-radius: 20px; font-size: .8rem; font-weight: 700;
  border: 2px solid var(--gray-lt); background: white; color: var(--gray);
  cursor: pointer; transition: all var(--t); font-family: 'Montserrat', sans-serif;
}
.filter-tab.active, .filter-tab:hover { border-color: var(--blue); color: var(--blue); background: var(--bg); }
.filter-tab.active { background: var(--blue); color: white; border-color: var(--blue); }
.sort-sel {
  padding: 8px 14px; border: 2px solid var(--gray-lt); border-radius: 8px;
  font-family: 'Montserrat', sans-serif; font-size: .82rem; font-weight: 600;
  color: var(--navy); background: white; outline: none; cursor: pointer;
}
.sort-sel:focus { border-color: var(--blue); }

/* ===== PRICE CARDS ===== */
.price-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 20px; }
.price-card {
  background: white; border: 2px solid var(--gray-lt);
  border-radius: var(--radius); padding: 24px; transition: all var(--t);
}
.price-card:hover, .price-card.popular { border-color: var(--blue); }
.price-card.popular { background: var(--bg); }
.price-tag { font-size: .7rem; font-weight: 800; padding: 3px 10px; background: var(--blue); color: white; border-radius: 5px; float: right; }
.price-name { font-size: 1rem; font-weight: 800; color: var(--navy); margin-bottom: 6px; }
.price-desc { font-size: .82rem; color: var(--gray); margin-bottom: 16px; line-height: 1.5; }
.price-val { font-size: 1.5rem; font-weight: 900; color: var(--blue); }
.price-val span { font-size: .8rem; font-weight: 500; color: var(--gray); }

/* ===== STEPS ===== */
.steps-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: 20px; }
.step-card { background: white; border: 2px solid var(--gray-lt); border-radius: var(--radius); padding: 24px; transition: all var(--t); }
.step-card:hover { border-color: var(--blue); transform: translateY(-4px); }
.step-num { font-size: 2rem; font-weight: 900; color: var(--bg); margin-bottom: 10px; }
.step-title { font-size: .9rem; font-weight: 800; color: var(--navy); margin-bottom: 6px; }
.step-desc { font-size: .78rem; color: var(--gray); line-height: 1.6; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}
@media (max-width: 768px) {
  nav { display: none; }
  .burger { display: flex; }
  .header-phone { display: none; }
  .hero-inner { grid-template-columns: 1fr; gap: 36px; }
  .hero h1 { font-size: 2rem; }
  .hero-right { display: none; }
  .hero-stats { gap: 24px; flex-wrap: wrap; }
  .contact-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .topbar-left { display: none; }
  .cart-drawer { width: 100vw; }
  .section-title { font-size: 1.6rem; }
}
@media (max-width: 480px) {
  .hero h1 { font-size: 1.65rem; }
  .footer-grid { grid-template-columns: 1fr; }
  .cta h2 { font-size: 1.6rem; }
  .brands-row { gap: 8px; }
  .brand-chip { padding: 8px 16px; font-size: .78rem; text-align: center; width: calc(50% - 4px); }
  .hero-stats { gap: 16px; }
  .header-inner { gap: 10px; }
  .logo-text { font-size: 1.2rem; }
  .logo-svg { width: 36px; height: 36px; }
  .btn-wa.btn-sm { padding: 6px 12px; font-size: 0.75rem; }
  .btn-wa.btn-sm svg { width: 14px; height: 14px; }
  .cart-btn { width: 36px; height: 36px; border-radius: 8px; }
  .burger { padding: 4px; }
  .burger span { width: 22px; }
  .topbar { font-size: 0.7rem; }
  .topbar-right { width: 100%; justify-content: center; }

  /* Product cards on mobile */
  .products-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .product-img { height: 160px; }
  .product-body { padding: 12px 12px 14px; }
  .product-name { font-size: .88rem; }
  .product-price { font-size: 1.2rem; margin-bottom: 10px; }
  .product-actions { flex-direction: column; gap: 6px; }
  .btn-info { flex: unset; width: 100%; padding: 9px 10px; font-size: .76rem; }
  .btn-cart { width: 100%; padding: 9px 10px; font-size: .82rem; }
}

/* ===== PRODUCT DETAIL MODAL ===== */
.pdm-overlay {
  position: fixed; inset: 0;
  background: rgba(13,27,64,.65); backdrop-filter: blur(5px);
  z-index: 4000; display: none;
  align-items: center; justify-content: center;
  padding: 16px;
}
.pdm-overlay.open { display: flex; }

.pdm {
  background: var(--white);
  border-radius: 18px;
  width: 100%; max-width: 960px;
  max-height: 92vh;
  display: flex; flex-direction: column;
  overflow: hidden;
  box-shadow: 0 24px 80px rgba(13,27,64,.3);
  animation: pdmIn .3s ease;
}
@keyframes pdmIn { from{opacity:0;transform:scale(.96)} to{opacity:1;transform:scale(1)} }

.pdm-head {
  display: flex; justify-content: space-between; align-items: center;
  padding: 16px 22px;
  border-bottom: 1px solid var(--gray-lt);
  flex-shrink: 0;
}
.pdm-head-brand { font-size:.72rem; font-weight:700; color:var(--sky); text-transform:uppercase; letter-spacing:.8px; }
.pdm-head-name { font-size:1rem; font-weight:800; color:var(--navy); }
.pdm-close {
  width:34px; height:34px; border-radius:8px;
  border:2px solid var(--gray-lt); background:white;
  display:flex; align-items:center; justify-content:center;
  font-size:1rem; color:var(--gray); cursor:pointer;
  transition:all var(--t); flex-shrink:0;
}
.pdm-close:hover { background:var(--navy); color:white; border-color:var(--navy); }

.pdm-body {
  display: grid;
  grid-template-columns: 1fr 1fr;
  overflow-y: auto;
  flex: 1;
}

/* Gallery side */
.pdm-gallery { padding: 20px; background: var(--bg-light); }
.pdm-main-img {
  width: 100%; aspect-ratio: 4/3;
  border-radius: 12px; overflow: hidden;
  background: var(--bg);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 12px;
}
.pdm-main-img img { width:100%; height:100%; object-fit:contain; }
.pdm-main-img .ph { color:var(--sky); opacity:.3; }
.pdm-thumbs { display:flex; gap:8px; flex-wrap:wrap; }
.pdm-thumb {
  width:60px; height:50px; border-radius:8px;
  border:2px solid var(--gray-lt); overflow:hidden;
  cursor:pointer; transition:border-color var(--t);
  background:var(--bg);
  display:flex; align-items:center; justify-content:center;
}
.pdm-thumb:hover, .pdm-thumb.active { border-color:var(--blue); }
.pdm-thumb img { width:100%; height:100%; object-fit:cover; }

/* Info side */
.pdm-info { padding: 24px 22px; overflow-y: auto; display: flex; flex-direction: column; }
.pdm-price-row { margin: 14px 0; }
.pdm-old { font-size:.85rem; color:var(--gray); text-decoration:line-through; margin-bottom:2px; }
.pdm-price { font-size:2rem; font-weight:900; color:var(--navy); }
.pdm-badge { display:inline-block; background:var(--blue); color:white; font-size:.7rem; font-weight:800; padding:3px 10px; border-radius:6px; margin-bottom:10px; }
.pdm-badge.green { background:#16A34A; }
.pdm-badge.orange { background:#EA580C; }
.pdm-badge.purple { background:#7C3AED; }

.pdm-specs { display:flex; flex-wrap:wrap; gap:8px; margin:14px 0; }
.pdm-spec { background:var(--bg); color:var(--blue-md); font-size:.75rem; font-weight:700; padding:5px 12px; border-radius:6px; }

.pdm-desc { font-size:.88rem; color:var(--gray); line-height:1.7; margin-bottom:16px; flex:1; }

.pdm-actions { margin-top:auto; display:flex; flex-direction:column; gap:10px; }
.pdm-cart-btn {
  width:100%; padding:15px; background:var(--blue); color:white;
  border:none; border-radius:10px; font-family:'Montserrat',sans-serif;
  font-size:.95rem; font-weight:800; cursor:pointer;
  display:flex; align-items:center; justify-content:center; gap:8px;
  transition:all var(--t);
}
.pdm-cart-btn:hover { background:var(--navy); transform:translateY(-2px); box-shadow:0 6px 20px rgba(21,101,192,.3); }
.pdm-cart-btn.added { background:#16A34A; }
.pdm-wa-btn {
  width:100%; padding:13px; background:#25D366; color:white;
  border:none; border-radius:10px; font-family:'Montserrat',sans-serif;
  font-size:.9rem; font-weight:700; cursor:pointer;
  display:flex; align-items:center; justify-content:center; gap:8px;
  transition:all var(--t); text-decoration:none;
}
.pdm-wa-btn:hover { background:#128C7E; transform:translateY(-2px); }

/* Cart notify toast — centered bottom pill */
#cartNotify {
  position: fixed;
  bottom: 24px;
  left: 20px;
  right: 20px;
  width: auto;
  max-width: 420px;
  margin: 0 auto;
  /* centre trick without translateX */
  left: 50%;
  transform: translateX(-50%) translateY(20px);
  z-index: 3000;
  background: var(--navy);
  color: white;
  padding: 12px 14px 12px 16px;
  border-radius: 50px;
  font-size: .84rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 12px 36px rgba(13,27,64,.35), 0 4px 12px rgba(13,27,64,.2);
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s ease, transform .35s cubic-bezier(.175,.885,.32,1.275);
  box-sizing: border-box;
  white-space: nowrap;
}
#cartNotify.show {
  transform: translateX(-50%) translateY(0);
  opacity: 1;
  pointer-events: all;
}
#cartNotify svg { flex-shrink: 0; color: #4ADE80; }
#cartNotify span.notify-text { flex: 1; overflow: hidden; text-overflow: ellipsis; }
#cartNotify button {
  flex-shrink: 0;
  background: rgba(255,255,255,.18);
  border: none;
  color: white;
  cursor: pointer;
  font-size: .73rem;
  font-weight: 700;
  padding: 5px 13px;
  border-radius: 20px;
  transition: background var(--t);
  font-family: 'Montserrat', sans-serif;
  white-space: nowrap;
  letter-spacing: .3px;
}
#cartNotify button:hover { background: rgba(255,255,255,.3); }

/* On small screens — full width snackbar */
@media (max-width: 480px) {
  #cartNotify {
    left: 12px;
    right: 12px;
    transform: translateY(20px);
    bottom: 16px;
    border-radius: 14px;
    padding: 13px 12px 13px 14px;
    font-size: .8rem;
    white-space: normal;
    max-width: none;
  }
  #cartNotify.show {
    transform: translateY(0);
  }
}

/* search input */
.form-group-input {
  width:100%; padding:.65rem .85rem;
  border:2px solid var(--gray-lt); border-radius:8px;
  font-family:'Montserrat',sans-serif; font-size:.88rem;
  outline:none; transition:border-color var(--t);
}
.form-group-input:focus { border-color:var(--blue); }

/* Pagination */
.pagination { display:flex; justify-content:center; gap:8px; margin-top:40px; flex-wrap:wrap; }
.page-link {
  width:40px; height:40px; display:flex; align-items:center; justify-content:center;
  border:2px solid var(--gray-lt); border-radius:8px; color:var(--navy);
  text-decoration:none; font-weight:700; font-size:.85rem; transition:all var(--t);
}
.page-link:hover { border-color:var(--blue); color:var(--blue); }
.page-link.active { background:var(--blue); color:white; border-color:var(--blue); }
.page-link.disabled { opacity:.3; pointer-events:none; }

@media (max-width: 700px) {
  .pdm-body { grid-template-columns: 1fr; }
  .pdm-gallery { padding: 14px; }
  .pdm-info { padding: 16px; }
  .pdm-price { font-size:1.5rem; }
}
