/* =========================================================
   ZTC — Mobile Screens & Batteries
   Shared design system
   ========================================================= */

:root{
  --black: #0B0B0D;
  --black-2: #141416;
  --black-3: #1c1c1f;
  --gold: #C9A227;
  --gold-light: #E6C766;
  --white: #F7F7F5;
  --white-2: #FFFFFF;
  --text: #171717;
  --text-secondary: #6B6B6B;
  --line-dark: rgba(230,199,102,0.16);
  --line-light: rgba(11,11,13,0.10);

  --font-display: 'Plus Jakarta Sans', sans-serif;
  --font-body: 'Inter', sans-serif;

  --maxw: 1240px;
  --radius: 3px;
}

*{ box-sizing:border-box; margin:0; padding:0; }
html{ scroll-behavior:smooth; }
html, body{ overflow-x:hidden; max-width:100%; }
body{
  font-family: var(--font-body);
  background: var(--white);
  color: var(--text);
  line-height:1.6;
  -webkit-font-smoothing:antialiased;
}
img{ max-width:100%; display:block; }
a{ color:inherit; text-decoration:none; }
ul{ list-style:none; }
button{ font-family:inherit; cursor:pointer; }
input,select,textarea{ font-family:inherit; }

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

.wrap{ max-width: var(--maxw); margin:0 auto; padding:0 32px; }

h1,h2,h3,h4{ font-family: var(--font-display); font-weight:700; line-height:1.1; letter-spacing:-0.01em; color: var(--text); }

.eyebrow{
  font-family: var(--font-body);
  font-size:12.5px;
  font-weight:600;
  letter-spacing:.16em;
  text-transform:uppercase;
  color: var(--gold);
  display:flex; align-items:center; gap:10px;
  margin-bottom:16px;
}
.eyebrow::before{ content:''; width:24px; height:1px; background: var(--gold); }
.eyebrow.on-light{ color:#a5811d; }

/* ---------- reveal on scroll ---------- */
.reveal{ opacity:0; transform: translateY(16px); transition: opacity .6s ease, transform .6s ease; }
.reveal.is-visible{ opacity:1; transform:none; }

/* ---------- buttons ---------- */
.btn{
  display:inline-flex; align-items:center; justify-content:center; gap:9px;
  font-family: var(--font-display); font-weight:600; font-size:14.5px;
  letter-spacing:.01em;
  padding:15px 28px;
  border-radius: var(--radius);
  border:1px solid transparent;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease, color .2s ease, border-color .2s ease;
  white-space:nowrap;
}
.btn-gold{ background: var(--gold); color: var(--black); }
.btn-gold:hover{ background: var(--gold-light); transform: translateY(-1px); box-shadow: 0 8px 20px -8px rgba(201,162,39,0.5); }
.btn-outline{ background:transparent; border:1px solid rgba(247,247,245,0.3); color: var(--white); }
.btn-outline:hover{ border-color: var(--gold); color: var(--gold-light); }
.btn-outline-dark{ background:transparent; border:1px solid rgba(11,11,13,0.2); color: var(--text); }
.btn-outline-dark:hover{ border-color: var(--gold); color:#a5811d; }
.btn-sm{ padding:10px 18px; font-size:13px; }
.btn-block{ width:100%; }
.btn[disabled]{ opacity:.5; cursor:not-allowed; }

/* ---------- header ---------- */
header{
  position:sticky; top:0; z-index:100;
  background: rgba(11,11,13,0.94);
  backdrop-filter: blur(10px);
  border-bottom:1px solid var(--line-dark);
}
.nav{
  display:flex; align-items:center; justify-content:space-between;
  padding:16px 32px;
  max-width: var(--maxw); margin:0 auto;
  gap:24px;
}
.brand{ display:flex; align-items:center; gap:11px; flex-shrink:0; }
.brand img{ height:36px; width:auto; }
.brand-text{ display:flex; flex-direction:column; line-height:1.1; }
.brand-text .name{ font-family: var(--font-display); font-weight:800; font-size:18px; color: var(--white); letter-spacing:.02em; }
.brand-text .tag{ font-size:9.5px; letter-spacing:.1em; color: var(--gold); text-transform:uppercase; font-weight:600; }

.nav-links{ display:flex; align-items:center; gap:30px; }
.nav-links a{
  font-family: var(--font-display); font-weight:500; font-size:14px;
  color: rgba(247,247,245,0.75);
  position:relative; padding:4px 0;
}
.nav-links a::after{ content:''; position:absolute; left:0; bottom:-2px; width:0; height:1px; background: var(--gold); transition: width .2s ease; }
.nav-links a:hover{ color: var(--white); }
.nav-links a:hover::after{ width:100%; }
.nav-links a.active{ color: var(--gold-light); }

.nav-right{ display:flex; align-items:center; gap:14px; flex-shrink:0; }
.icon-btn{
  width:38px; height:38px; display:flex; align-items:center; justify-content:center;
  border:1px solid rgba(247,247,245,0.18); background:none; color: var(--white);
  transition: border-color .2s ease, color .2s ease;
}
.icon-btn:hover{ border-color: var(--gold); color: var(--gold-light); }
.burger{ display:none; flex-direction:column; gap:5px; background:none; border:none; padding:8px; }
.burger span{ width:20px; height:2px; background: var(--gold); display:block; }

.mobile-nav{
  display:none; flex-direction:column;
  position:absolute; top:100%; left:0; right:0;
  background: rgba(11,11,13,0.98);
  padding:10px 32px 26px;
  border-bottom:1px solid var(--line-dark);
}
.mobile-nav.open{ display:flex; }
.mobile-nav a{
  font-family: var(--font-display); font-weight:500; font-size:16px;
  color: rgba(247,247,245,0.85);
  padding:13px 0;
  border-bottom:1px solid rgba(247,247,245,0.08);
}
.mobile-nav .btn{ margin-top:16px; }

/* ---------- search overlay ---------- */
.search-overlay{
  position:fixed; inset:0; z-index:200;
  background: rgba(11,11,13,0.98);
  display:none;
  flex-direction:column;
  padding: 32px;
  overflow-y:auto;
}
.search-overlay.open{ display:flex; }
.search-overlay-top{ display:flex; align-items:center; gap:16px; max-width:760px; width:100%; margin:0 auto 8px; }
.search-input-wrap{
  flex:1; display:flex; align-items:center; gap:14px;
  border-bottom:2px solid var(--gold);
  padding:14px 4px;
}
.search-input-wrap svg{ flex-shrink:0; }
#globalSearchInput{
  flex:1; background:none; border:none; outline:none;
  font-family: var(--font-display); font-size:22px; color: var(--white);
}
#globalSearchInput::placeholder{ color: rgba(247,247,245,0.35); }
.search-close{
  width:40px; height:40px; border:1px solid rgba(247,247,245,0.2); background:none; color: var(--white);
  flex-shrink:0;
}
.search-close:hover{ border-color: var(--gold); }
.search-results{ max-width:760px; width:100%; margin:36px auto 0; display:flex; flex-direction:column; gap:2px; }
.search-hint{ max-width:760px; width:100%; margin:36px auto 0; color: rgba(247,247,245,0.4); font-size:14px; }
.search-result-item{
  display:flex; align-items:center; justify-content:space-between; gap:16px;
  padding:16px 14px;
  border-bottom:1px solid rgba(247,247,245,0.08);
  transition: background .2s ease;
}
.search-result-item:hover{ background: rgba(201,162,39,0.06); }
.search-result-item .sri-name{ font-family: var(--font-display); font-weight:600; color: var(--white); font-size:15px; }
.search-result-item .sri-meta{ font-size:12.5px; color: rgba(247,247,245,0.45); margin-top:3px; }
.search-result-item .sri-cat{
  font-size:10.5px; letter-spacing:.08em; text-transform:uppercase; color: var(--gold);
  border:1px solid rgba(201,162,39,0.4); padding:4px 9px; flex-shrink:0;
}

/* ---------- hero ---------- */
.hero{
  position:relative;
  background: var(--black);
  color: var(--white);
  overflow:hidden;
  padding: 110px 0 90px;
}
.hero::before{
  content:''; position:absolute; inset:0;
  background: radial-gradient(900px 460px at 78% 0%, rgba(201,162,39,0.14), transparent 60%);
  pointer-events:none;
}
.hero-inner{ position:relative; z-index:1; max-width: var(--maxw); margin:0 auto; padding:0 32px; text-align:center; }
.hero .eyebrow{ justify-content:center; margin:0 auto 22px; }
.hero h1{
  font-size: clamp(38px, 6vw, 72px);
  color: var(--white);
  margin-bottom:20px;
  letter-spacing:-0.02em;
}
.hero h1 span{
  color: var(--gold);
}
.hero .sub1{ font-family: var(--font-display); font-size: clamp(16px,2vw,20px); color: rgba(247,247,245,0.82); font-weight:500; max-width:640px; margin:0 auto 14px; }
.hero .sub2{ font-size:15.5px; color: rgba(247,247,245,0.55); max-width:520px; margin:0 auto 42px; }
.hero-ctas{ display:flex; gap:16px; justify-content:center; flex-wrap:wrap; margin-bottom:64px; }

.hero-visual{
  max-width: 920px; margin:0 auto;
  display:grid; grid-template-columns:1fr 1fr; gap:1px;
  background: var(--line-dark);
  border:1px solid var(--line-dark);
  position:relative; z-index:1;
}
.hero-visual-panel{
  background: var(--black-2);
  padding:38px 30px 30px;
  display:flex; flex-direction:column; align-items:center; text-align:center;
}
.hero-visual-panel .schematic{ height:120px; margin-bottom:20px; }
.hero-visual-panel .hv-label{ font-family: var(--font-display); font-weight:700; font-size:15px; color: var(--white); letter-spacing:.02em; }
.hero-visual-panel .hv-sub{ font-size:12.5px; color: rgba(247,247,245,0.45); margin-top:4px; }

/* ---------- section basics ---------- */
section{ padding:104px 0; }
.section-head{ max-width:620px; margin-bottom:52px; }
.section-head.center{ margin-left:auto; margin-right:auto; text-align:center; }
.section-head h2{ font-size: clamp(28px,3.6vw,42px); }
.section-head p{ color: var(--text-secondary); font-size:16px; margin-top:14px; }
.section-head.on-dark h2{ color: var(--white); }
.section-head.on-dark p{ color: rgba(247,247,245,0.6); }

/* ---------- category section ---------- */
.categories{ background: var(--white); }
.category-grid{ display:grid; grid-template-columns:1fr 1fr; gap:28px; }
.category-card{
  background: var(--black);
  color: var(--white);
  position:relative;
  overflow:hidden;
  border:1px solid var(--black);
  min-height:420px;
  display:flex; flex-direction:column; justify-content:flex-end;
  padding:40px;
  transition: transform .3s ease;
}
.category-card:hover{ transform: translateY(-4px); }
.category-card .cc-schematic{
  position:absolute; top:36px; right:36px; width:150px; height:150px; opacity:.9;
}
.category-card .cc-index{ font-size:12px; color: var(--gold); letter-spacing:.14em; text-transform:uppercase; font-weight:600; margin-bottom:14px; }
.category-card h3{ font-size: clamp(24px,2.6vw,32px); color: var(--white); margin-bottom:10px; }
.category-card p{ color: rgba(247,247,245,0.6); font-size:14.5px; margin-bottom:26px; max-width:340px; }

/* ---------- product schematic icons (shared inline svgs use currentColor via gold stroke) ---------- */
.schematic-gold{ stroke: var(--gold); }

/* ---------- feature section (why ztc) ---------- */
.why{ background: var(--black); color: var(--white); }
.why-grid{ display:grid; grid-template-columns: repeat(3,1fr); gap:1px; background: var(--line-dark); border:1px solid var(--line-dark); }
.why-item{ background: var(--black); padding:38px 30px; }
.why-item .wi-icon{ margin-bottom:22px; }
.why-item h4{ font-size:18px; color: var(--white); margin-bottom:10px; }
.why-item p{ font-size:14px; color: rgba(247,247,245,0.6); }

/* ---------- who we serve ---------- */
.serve{ background: var(--white); }
.serve-grid{ display:grid; grid-template-columns: repeat(5,1fr); gap:20px; }
.serve-item{ text-align:center; padding:30px 14px; border:1px solid var(--line-light); }
.serve-item .si-icon{ width:44px; height:44px; margin:0 auto 16px; display:flex; align-items:center; justify-content:center; border:1px solid var(--gold); border-radius:50%; }
.serve-item h5{ font-family: var(--font-display); font-weight:700; font-size:14.5px; margin-bottom:6px; }
.serve-item p{ font-size:12.5px; color: var(--text-secondary); }

/* ---------- about ---------- */
.about{ background: var(--white); }
.about-grid{ display:grid; grid-template-columns: 1fr 0.9fr; gap:64px; align-items:center; }
.about-text p{ color:#3c3c3c; font-size:15.5px; margin-bottom:18px; }
.badge-row{ display:flex; gap:10px; flex-wrap:wrap; margin-top:26px; }
.badge{ font-size:11.5px; font-weight:600; letter-spacing:.05em; text-transform:uppercase; border:1px solid var(--gold); color:#a5811d; padding:9px 16px; }
.about-visual{ background: var(--black); aspect-ratio:1/1; display:flex; align-items:center; justify-content:center; position:relative; border:1px solid var(--line-dark); }
.about-visual img{ width:58%; }

/* ---------- dealer cta band ---------- */
.dealer-band{ background: var(--black); color: var(--white); position:relative; overflow:hidden; }
.dealer-band::before{ content:''; position:absolute; inset:0; background: radial-gradient(700px 380px at 15% 30%, rgba(201,162,39,0.14), transparent 65%); pointer-events:none; }
.dealer-band-inner{ position:relative; z-index:1; display:flex; align-items:center; justify-content:space-between; gap:40px; flex-wrap:wrap; }
.dealer-band h2{ color: var(--white); font-size: clamp(26px,3.2vw,38px); max-width:520px; }
.dealer-band p{ color: rgba(247,247,245,0.6); margin-top:12px; max-width:460px; }

/* ---------- contact teaser ---------- */
.contact-teaser{ background: var(--white); }
.contact-cards{ display:grid; grid-template-columns: repeat(3,1fr); gap:24px; }
.contact-card{ border:1px solid var(--line-light); padding:30px; }
.contact-card .cc-label{ font-size:11.5px; letter-spacing:.1em; text-transform:uppercase; color:#a5811d; font-weight:700; margin-bottom:10px; }
.contact-card .cc-value{ font-family: var(--font-display); font-weight:700; font-size:17px; }
.contact-card .cc-sub{ font-size:13px; color: var(--text-secondary); margin-top:6px; }

/* ---------- footer ---------- */
footer{ background: var(--black); color: rgba(247,247,245,0.55); border-top:1px solid var(--line-dark); }
.footer-grid{ display:grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap:40px; padding:70px 0 44px; }
.footer-brand{ display:flex; align-items:center; gap:11px; margin-bottom:16px; }
.footer-brand img{ height:32px; }
.footer-brand span{ font-family: var(--font-display); font-weight:800; color: var(--white); font-size:17px; }
.footer-col h5{ font-size:11px; font-weight:700; letter-spacing:.1em; text-transform:uppercase; color: var(--gold); margin-bottom:18px; }
.footer-col ul li{ margin-bottom:11px; font-size:14px; }
.footer-col ul li a:hover{ color: var(--gold-light); }
.footer-col p{ font-size:14px; max-width:280px; }
.socials{ display:flex; gap:12px; margin-top:20px; }
.socials a{ width:34px; height:34px; border:1px solid rgba(201,162,39,0.3); display:flex; align-items:center; justify-content:center; transition: border-color .2s ease; }
.socials a:hover{ border-color: var(--gold); }
.footer-bottom{ border-top:1px solid var(--line-dark); padding:22px 0; text-align:center; font-size:13px; }

/* ---------- page header (interior pages) ---------- */
.page-header{ background: var(--black); color: var(--white); padding:64px 0 48px; }
.page-header .eyebrow{ justify-content:flex-start; }
.page-header h1{ color: var(--white); font-size: clamp(30px,4vw,46px); }
.breadcrumbs{ font-size:13px; color: rgba(247,247,245,0.45); margin-bottom:18px; display:flex; gap:8px; align-items:center; }
.breadcrumbs a:hover{ color: var(--gold-light); }

/* ---------- catalog layout ---------- */
.catalog{ background: var(--white); padding:56px 0 100px; }
.catalog-layout{ display:grid; grid-template-columns: 260px 1fr; gap:40px; align-items:flex-start; }
.filters{ border:1px solid var(--line-light); padding:26px; position:sticky; top:96px; }
.filters h4{ font-size:12px; letter-spacing:.1em; text-transform:uppercase; margin-bottom:18px; color: var(--text-secondary); }
.filter-group{ margin-bottom:26px; }
.filter-group:last-child{ margin-bottom:0; }
.filter-group .fg-label{ font-family: var(--font-display); font-weight:700; font-size:13.5px; margin-bottom:12px; display:flex; align-items:center; justify-content:space-between; }
.filter-options{ display:flex; flex-direction:column; gap:9px; }
.filter-option{ display:flex; align-items:center; gap:9px; font-size:13.5px; color:#3c3c3c; cursor:pointer; }
.filter-option input{ accent-color: var(--gold); width:15px; height:15px; }
.filter-reset{ margin-top:22px; font-size:12.5px; color:#a5811d; font-weight:600; text-decoration:underline; text-underline-offset:3px; background:none; border:none; padding:0; }

.catalog-toolbar{ display:flex; align-items:center; justify-content:space-between; margin-bottom:24px; gap:16px; flex-wrap:wrap; }
.catalog-search{ display:flex; align-items:center; gap:10px; border:1px solid var(--line-light); padding:11px 14px; flex:1; max-width:340px; }
.catalog-search input{ border:none; outline:none; flex:1; font-size:14px; background:none; }
.result-count{ font-size:13.5px; color: var(--text-secondary); }

.product-grid{ display:grid; grid-template-columns: repeat(3, 1fr); gap:24px; }
.product-card{ border:1px solid var(--line-light); background: var(--white-2); display:flex; flex-direction:column; transition: box-shadow .25s ease, border-color .25s ease; }
.product-card:hover{ border-color: var(--gold); box-shadow: 0 14px 30px -18px rgba(11,11,13,0.25); }
.pc-image{ background: var(--black); aspect-ratio: 4/3; display:flex; align-items:center; justify-content:center; padding:20px; position:relative; }
.pc-image svg{ width:60%; height:60%; }
.pc-tag{ position:absolute; top:12px; left:12px; font-size:10px; font-weight:700; letter-spacing:.08em; color: var(--gold); border:1px solid rgba(201,162,39,0.4); padding:3px 8px; }
.pc-body{ padding:20px; display:flex; flex-direction:column; gap:6px; flex:1; }
.pc-name{ font-family: var(--font-display); font-weight:700; font-size:15.5px; }
.pc-model{ font-size:13px; color: var(--text-secondary); }
.pc-sku{ font-size:11.5px; color:#9a9a9a; letter-spacing:.03em; margin-top:2px; }
.pc-avail{ display:flex; align-items:center; gap:6px; font-size:12px; font-weight:600; margin-top:8px; }
.pc-avail .dot{ width:7px; height:7px; border-radius:50%; }
.pc-avail.in .dot{ background:#2e7d32; }
.pc-avail.in{ color:#2e7d32; }
.pc-avail.limited .dot{ background:#b8860b; }
.pc-avail.limited{ color:#b8860b; }
.pc-avail.out .dot{ background:#a33; }
.pc-avail.out{ color:#a33; }
.pc-actions{ display:flex; gap:8px; margin-top:14px; padding-top:14px; border-top:1px solid var(--line-light); }
.pc-actions .btn{ flex:1; padding:10px 12px; font-size:12.5px; }

.no-results{ padding:60px 20px; text-align:center; color: var(--text-secondary); border:1px dashed var(--line-light); }
.no-results strong{ display:block; font-family: var(--font-display); color: var(--text); font-size:17px; margin-bottom:8px; }

.demo-notice{
  background: #fff8e6; border:1px solid #e6c766; color:#6b5514;
  font-size:13px; padding:12px 18px; margin-bottom:28px; display:flex; gap:10px; align-items:flex-start;
}
.demo-notice svg{ flex-shrink:0; margin-top:2px; }

/* ---------- product detail ---------- */
.product-detail{ background: var(--white); padding:56px 0 100px; }
.pd-grid{ display:grid; grid-template-columns: 1fr 1fr; gap:64px; align-items:flex-start; }
.pd-gallery-main{ background: var(--black); aspect-ratio:1/1; display:flex; align-items:center; justify-content:center; padding:40px; border:1px solid var(--line-dark); margin-bottom:14px; }
.pd-gallery-main svg{ width:70%; height:70%; }
.pd-thumbs{ display:flex; gap:10px; }
.pd-thumbs div{ width:64px; height:64px; background: var(--black); border:1px solid var(--line-dark); display:flex; align-items:center; justify-content:center; padding:10px; }
.pd-info .pd-tag{ font-size:12px; font-weight:700; letter-spacing:.1em; text-transform:uppercase; color:#a5811d; margin-bottom:12px; }
.pd-info h1{ font-size: clamp(26px,3vw,36px); margin-bottom:10px; }
.pd-model{ font-size:15px; color: var(--text-secondary); margin-bottom:6px; }
.pd-sku{ font-size:13px; color:#9a9a9a; margin-bottom:22px; }
.pd-avail{ display:inline-flex; align-items:center; gap:7px; font-size:13px; font-weight:600; padding:8px 14px; border:1px solid var(--line-light); margin-bottom:28px; }
.pd-avail .dot{ width:8px; height:8px; border-radius:50%; }
.pd-ctas{ display:flex; gap:12px; margin-bottom:36px; flex-wrap:wrap; }
.spec-table{ border-top:1px solid var(--line-light); }
.spec-row{ display:grid; grid-template-columns: 160px 1fr; gap:16px; padding:14px 0; border-bottom:1px solid var(--line-light); font-size:14px; }
.spec-row .k{ font-weight:600; color: var(--text-secondary); font-size:12.5px; letter-spacing:.04em; text-transform:uppercase; padding-top:1px; }
.spec-row .v{ color: var(--text); }
.pd-note{ font-size:13px; color: var(--text-secondary); margin-top:24px; padding:16px; border:1px dashed var(--line-light); }

/* ---------- forms ---------- */
.form-card{ background: var(--white-2); border:1px solid var(--line-light); padding:44px; }
.form-row{ display:grid; grid-template-columns: 1fr 1fr; gap:20px; margin-bottom:20px; }
.form-row.full{ grid-template-columns: 1fr; }
.field label{ display:block; font-size:13px; font-weight:600; margin-bottom:8px; color: var(--text); }
.field input, .field select, .field textarea{
  width:100%; padding:13px 14px; border:1px solid var(--line-light); font-size:14.5px; outline:none;
  background: var(--white-2); transition: border-color .2s ease;
  font-family: var(--font-body);
}
.field input:focus, .field select:focus, .field textarea:focus{ border-color: var(--gold); }
.field textarea{ resize:vertical; min-height:110px; }
.radio-group{ display:flex; gap:18px; flex-wrap:wrap; }
.radio-option{ display:flex; align-items:center; gap:8px; font-size:14px; }
.radio-option input{ accent-color: var(--gold); width:16px; height:16px; }
.form-note{ font-size:12.5px; color: var(--text-secondary); margin-top:16px; }
.form-success{ display:none; text-align:center; padding:60px 20px; }
.form-success.show{ display:block; }
.form-success svg{ margin:0 auto 20px; }
.form-success h3{ margin-bottom:10px; }
.form-success p{ color: var(--text-secondary); }

/* ---------- contact page ---------- */
.contact-page{ background: var(--white); padding:70px 0 100px; }
.contact-grid{ display:grid; grid-template-columns: 1fr 1fr; gap:56px; }
.contact-info-block{ margin-bottom:30px; }
.contact-info-block .cib-label{ font-size:11.5px; letter-spacing:.1em; text-transform:uppercase; color:#a5811d; font-weight:700; margin-bottom:8px; }
.contact-info-block .cib-value{ font-family: var(--font-display); font-weight:700; font-size:18px; margin-bottom:4px; }
.contact-info-block .cib-sub{ font-size:13.5px; color: var(--text-secondary); }
.map-panel{ background: var(--black); border:1px solid var(--line-dark); padding:34px; margin-top:36px; }
.map-panel .mp-label{ font-size:11px; letter-spacing:.1em; text-transform:uppercase; color: var(--gold); font-weight:700; margin-bottom:10px; }
.map-panel p{ color: rgba(247,247,245,0.6); font-size:14px; margin-bottom:18px; }

/* ---------- responsive ---------- */
@media (max-width: 1000px){
  .nav-links{ display:none; }
  .burger{ display:flex; }
  .nav-right .btn-gold.btn-sm{ display:none; }
  .brand-text .tag{ display:none; }
  .hero-visual{ grid-template-columns:1fr; }
  .category-grid{ grid-template-columns:1fr; }
  .why-grid{ grid-template-columns:1fr; }
  .serve-grid{ grid-template-columns: repeat(2,1fr); }
  .about-grid{ grid-template-columns:1fr; }
  .about-visual{ max-width:320px; margin:0 auto; order:-1; }
  .footer-grid{ grid-template-columns: 1fr 1fr; }
  .catalog-layout{ grid-template-columns:1fr; }
  .filters{ position:relative; top:0; }
  .product-grid{ grid-template-columns: repeat(2,1fr); }
  .pd-grid{ grid-template-columns:1fr; gap:36px; }
  .contact-cards{ grid-template-columns:1fr; }
  .contact-grid{ grid-template-columns:1fr; }
  .form-row{ grid-template-columns:1fr; }
  .dealer-band-inner{ flex-direction:column; align-items:flex-start; }
}
@media (max-width: 600px){
  .wrap{ padding:0 20px; }
  .nav{ padding:14px 20px; }
  section{ padding:72px 0; }
  .product-grid{ grid-template-columns:1fr; }
  .serve-grid{ grid-template-columns:1fr; }
  .footer-grid{ grid-template-columns:1fr; gap:36px; padding:56px 0 32px; }
  .hero{ padding:88px 0 64px; }
  .form-card{ padding:28px 22px; }
}
