/* ============================================================
   HiVideo Security — მთავარი სტილები
   პალიტრა: წითელი #D71920 / თეთრი / ღია ნაცრისფერი / გრაფიტი
   ============================================================ */

:root {
  --red: #D71920;
  --red-dark: #B91017;
  --red-hover: #EF2B32;
  --white: #FFFFFF;
  --bg: #F6F7F9;
  --border: #E4E7EB;
  --ink: #181818;
  --muted: #666666;
  --footer: #16181C;
  --success: #1F9D55;
  --warning: #D97706;
  --info: #2563EB;
  --radius: 12px;
  --radius-sm: 8px;
  --shadow-sm: 0 1px 3px rgba(24, 24, 24, .07);
  --shadow: 0 6px 24px rgba(24, 24, 24, .09);
  --shadow-lg: 0 16px 48px rgba(24, 24, 24, .14);
  --font: 'Noto Sans Georgian', 'FiraGO', system-ui, -apple-system, sans-serif;
  --container: 1240px;
  --transition: .22s ease;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font);
  color: var(--ink);
  background: var(--white);
  line-height: 1.6;
  font-size: 16px;
  overflow-x: hidden;
}
img, svg, iframe { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; background: none; border: 0; color: inherit; }
input, select, textarea { font: inherit; color: inherit; }
ul, ol { padding: 0; list-style: none; }
h1, h2, h3, h4 { line-height: 1.25; font-weight: 800; }
:focus-visible { outline: 3px solid rgba(215, 25, 32, .45); outline-offset: 2px; border-radius: 4px; }

.container { max-width: var(--container); margin-inline: auto; padding-inline: 20px; }
.container-narrow { max-width: 860px; }
.sr-only {
  position: absolute; width: 1px; height: 1px; margin: -1px;
  clip: rect(0 0 0 0); overflow: hidden; white-space: nowrap;
}
.skip-link {
  position: fixed; top: -60px; left: 12px; z-index: 300;
  background: var(--red); color: #fff; padding: 10px 18px; border-radius: var(--radius-sm);
  transition: top var(--transition);
}
.skip-link:focus { top: 12px; }
.text-red { color: var(--red); }

.icon { width: 22px; height: 22px; flex-shrink: 0; }
.icon-sm { width: 17px; height: 17px; }
.icon-lg { width: 30px; height: 30px; }

/* ---------- ღილაკები ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 11px 22px; border-radius: var(--radius-sm);
  font-weight: 700; font-size: 15px; line-height: 1.3;
  border: 2px solid transparent; transition: all var(--transition);
  text-align: center; white-space: nowrap;
}
.btn-primary { background: var(--red); color: #fff; }
.btn-primary:hover { background: var(--red-hover); transform: translateY(-1px); box-shadow: 0 6px 16px rgba(215, 25, 32, .3); }
.btn-outline { border-color: var(--red); color: var(--red); background: #fff; }
.btn-outline:hover { background: var(--red); color: #fff; }
.btn-dark { background: var(--ink); color: #fff; }
.btn-dark:hover { background: #000; }
.btn-white { background: #fff; color: var(--red); }
.btn-white:hover { background: var(--bg); }
.btn-outline-white { border-color: rgba(255,255,255,.65); color: #fff; }
.btn-outline-white:hover { background: rgba(255,255,255,.12); }
.btn-ghost { color: var(--muted); }
.btn-ghost:hover { color: var(--red); }
.btn-whatsapp { background: #25D366; color: #fff; }
.btn-whatsapp:hover { background: #1FB855; transform: translateY(-1px); }
.btn-lg { padding: 14px 30px; font-size: 16px; }
.btn-sm { padding: 8px 14px; font-size: 13.5px; }
.btn-block { width: 100%; }
.btn-icon { padding-inline: 12px; }
.btn[disabled] { opacity: .6; pointer-events: none; }
.btn.is-loading { position: relative; color: transparent !important; pointer-events: none; }
.btn.is-loading::after {
  content: ""; position: absolute; inset: 0; margin: auto;
  width: 20px; height: 20px; border-radius: 50%;
  border: 2.5px solid rgba(255,255,255,.4); border-top-color: #fff;
  animation: spin .7s linear infinite;
}
.btn-outline.is-loading::after { border-color: rgba(215,25,32,.3); border-top-color: var(--red); }
@keyframes spin { to { transform: rotate(360deg); } }

/* ---------- Topbar ---------- */
.topbar { background: var(--red); color: #fff; font-size: 13.5px; }
.topbar-inner { display: flex; align-items: center; justify-content: space-between; gap: 16px; min-height: 38px; }
.topbar-left { display: flex; align-items: center; gap: 8px; font-weight: 600; }
.topbar-right { display: flex; align-items: center; gap: 18px; }
.topbar-link { display: inline-flex; align-items: center; gap: 6px; opacity: .95; transition: opacity var(--transition); }
.topbar-link:hover { opacity: 1; text-decoration: underline; }
.topbar-socials { display: inline-flex; gap: 10px; padding-left: 14px; border-left: 1px solid rgba(255,255,255,.35); }
.topbar-socials a { opacity: .9; transition: transform var(--transition); }
.topbar-socials a:hover { opacity: 1; transform: translateY(-1px); }

/* ---------- Header ---------- */
.site-header {
  background: #fff; position: sticky; top: 0; z-index: 200;
  border-bottom: 1px solid var(--border);
  transition: box-shadow var(--transition);
}
.site-header.is-stuck { box-shadow: var(--shadow); }
.header-inner { display: flex; align-items: center; gap: 22px; min-height: 76px; transition: min-height var(--transition); }
.site-header.is-stuck .header-inner { min-height: 62px; }
.brand { display: inline-flex; align-items: center; gap: 11px; }
.brand-logo { transition: width var(--transition), height var(--transition); }
.brand-text { display: flex; flex-direction: column; line-height: 1.05; font-size: 20px; font-weight: 800; }
.brand-text strong { color: var(--ink); }
.brand-text .brand-accent { color: var(--red); font-weight: 800; }
.brand-text small { font-size: 10.5px; color: var(--muted); font-weight: 500; margin-top: 3px; letter-spacing: .4px; }
.brand-light .brand-text strong { color: #fff; }

.main-nav { display: flex; gap: 4px; margin-left: auto; }
.nav-link {
  padding: 9px 13px; border-radius: var(--radius-sm); font-weight: 600; font-size: 15px;
  color: var(--ink); position: relative; transition: color var(--transition), background var(--transition);
}
.nav-link:hover { color: var(--red); background: var(--bg); }
.nav-link.is-active { color: var(--red); }
.nav-link.is-active::after {
  content: ""; position: absolute; left: 13px; right: 13px; bottom: 3px;
  height: 2.5px; border-radius: 2px; background: var(--red);
}
.header-actions { display: flex; align-items: center; gap: 8px; }
.header-iconbtn {
  position: relative; display: inline-flex; padding: 9px;
  border-radius: var(--radius-sm); color: var(--ink); transition: all var(--transition);
}
.header-iconbtn:hover { color: var(--red); background: var(--bg); }
.badge-count {
  position: absolute; top: 2px; right: 0;
  background: var(--red); color: #fff; font-size: 10.5px; font-weight: 700;
  min-width: 17px; height: 17px; border-radius: 9px;
  display: inline-flex; align-items: center; justify-content: center; padding-inline: 4px;
}
.hamburger { display: none; padding: 9px; border-radius: var(--radius-sm); }
.hamburger:hover { background: var(--bg); color: var(--red); }

/* ---------- მობილური მენიუ ---------- */
.mobile-menu { position: fixed; inset: 0; z-index: 400; visibility: hidden; }
.mobile-menu.is-open { visibility: visible; }
.mobile-menu-backdrop {
  position: absolute; inset: 0; background: rgba(22, 24, 28, .55);
  opacity: 0; transition: opacity .28s ease;
}
.mobile-menu.is-open .mobile-menu-backdrop { opacity: 1; }
.mobile-menu-panel {
  position: absolute; top: 0; right: 0; bottom: 0; width: min(360px, 88vw);
  background: #fff; padding: 20px; overflow-y: auto;
  display: flex; flex-direction: column; gap: 18px;
  transform: translateX(100%); transition: transform .28s ease;
}
.mobile-menu.is-open .mobile-menu-panel { transform: translateX(0); }
.mobile-menu-head { display: flex; align-items: center; justify-content: space-between; }
.mobile-menu-close { padding: 8px; border-radius: var(--radius-sm); }
.mobile-menu-close:hover { background: var(--bg); color: var(--red); }
.mobile-nav { display: flex; flex-direction: column; }
.mobile-nav-link {
  display: flex; align-items: center; justify-content: space-between;
  padding: 13px 6px; font-weight: 600; border-bottom: 1px solid var(--border);
}
.mobile-nav-link.is-active { color: var(--red); }
.mobile-nav-link .icon { color: var(--muted); }
.mobile-menu-contacts { display: flex; flex-direction: column; gap: 10px; font-size: 14.5px; color: var(--muted); }
.mobile-menu-contacts a, .mobile-menu-contacts span { display: inline-flex; align-items: center; gap: 9px; }
.mobile-menu-socials { display: flex; gap: 14px; color: var(--muted); }
.mobile-menu-socials a:hover { color: var(--red); }

/* ---------- Hero ---------- */
.hero { background: linear-gradient(180deg, #fff 0%, var(--bg) 100%); overflow: hidden; }
.hero-grid {
  display: grid; grid-template-columns: 1.05fr .95fr; gap: 48px;
  align-items: center; padding-block: 64px;
}
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(215, 25, 32, .08); color: var(--red);
  font-size: 13.5px; font-weight: 700; padding: 7px 14px; border-radius: 30px;
  margin-bottom: 18px;
}
.hero-title { font-size: clamp(32px, 4.6vw, 54px); font-weight: 900; letter-spacing: -.5px; }
.hero-sub { margin-top: 18px; font-size: 17.5px; color: var(--muted); max-width: 560px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 28px; }
.hero-features { display: flex; flex-wrap: wrap; gap: 10px 22px; margin-top: 26px; }
.hero-features li { display: inline-flex; align-items: center; gap: 7px; font-size: 14.5px; font-weight: 600; color: var(--muted); }
.hero-features .icon { color: var(--red); }
.hero-visual img { width: 100%; height: auto; filter: drop-shadow(0 24px 48px rgba(24,24,24,.12)); }

/* ---------- სექციები ---------- */
.section { padding-block: 72px; }
.section-gray { background: var(--bg); }
.section-head {
  display: flex; align-items: flex-end; justify-content: space-between;
  gap: 20px; margin-bottom: 40px; flex-wrap: wrap;
}
.section-head-center { flex-direction: column; align-items: center; text-align: center; }
.section-title { font-size: clamp(26px, 3.2vw, 36px); position: relative; padding-bottom: 14px; }
.section-title::after {
  content: ""; position: absolute; left: 0; bottom: 0;
  width: 56px; height: 4px; border-radius: 3px; background: var(--red);
}
.section-head-center .section-title::after { left: 50%; transform: translateX(-50%); }
.section-sub { color: var(--muted); margin-top: 10px; font-size: 16.5px; max-width: 640px; }
.section-sub a { color: var(--red); font-weight: 600; }
.section-link {
  display: inline-flex; align-items: center; gap: 7px;
  color: var(--red); font-weight: 700; transition: gap var(--transition);
}
.section-link:hover { gap: 11px; }
.block-title { font-size: 22px; margin: 36px 0 18px; }
.page-head { background: linear-gradient(180deg, #fff, var(--bg)); padding-block: 44px 30px; }
.page-title { font-size: clamp(28px, 3.6vw, 42px); }
.page-sub { color: var(--muted); margin-top: 10px; font-size: 17px; max-width: 720px; }

/* ---------- Breadcrumbs ---------- */
.breadcrumbs { background: var(--bg); border-bottom: 1px solid var(--border); font-size: 13.5px; }
.breadcrumbs ol { display: flex; align-items: center; flex-wrap: wrap; gap: 6px; padding-block: 11px; color: var(--muted); }
.breadcrumbs li { display: inline-flex; align-items: center; gap: 6px; }
.breadcrumbs li + li::before { content: "›"; color: var(--border); font-size: 15px; margin-right: 2px; }
.breadcrumbs a { color: var(--muted); display: inline-flex; align-items: center; }
.breadcrumbs a:hover { color: var(--red); }
.breadcrumbs [aria-current] { color: var(--ink); font-weight: 600; }

/* ---------- სერვისის ბარათები ---------- */
.services-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.services-grid-lg { grid-template-columns: repeat(3, 1fr); }
.service-card {
  background: #fff; border: 1.5px solid var(--border); border-radius: var(--radius);
  padding: 28px 24px; box-shadow: var(--shadow-sm);
  display: flex; flex-direction: column; gap: 13px;
  transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
}
.service-card:hover { transform: translateY(-5px); border-color: var(--red); box-shadow: var(--shadow); }
.service-icon {
  width: 56px; height: 56px; border-radius: 14px;
  display: inline-flex; align-items: center; justify-content: center;
  color: var(--red); background: rgba(215, 25, 32, .08);
  transition: background var(--transition), color var(--transition);
}
.service-icon .icon { width: 27px; height: 27px; }
.service-card:hover .service-icon { background: var(--red); color: #fff; }
.service-icon-lg { width: 68px; height: 68px; border-radius: 16px; margin-bottom: 16px; }
.service-icon-lg .icon { width: 34px; height: 34px; }
.service-title { font-size: 18.5px; }
.service-desc { color: var(--muted); font-size: 14.5px; flex-grow: 1; }
.service-more {
  display: inline-flex; align-items: center; gap: 7px;
  color: var(--red); font-weight: 700; font-size: 14.5px;
  opacity: .85; transition: gap var(--transition), opacity var(--transition);
}
.service-card:hover .service-more { gap: 11px; opacity: 1; }

/* ---------- პროდუქტის ბარათები ---------- */
.products-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.catalog-main .products-grid { grid-template-columns: repeat(3, 1fr); }
.product-card {
  background: #fff; border: 1.5px solid var(--border); border-radius: var(--radius);
  overflow: hidden; box-shadow: var(--shadow-sm); display: flex; flex-direction: column;
  transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
}
.product-card:hover { transform: translateY(-4px); border-color: var(--red); box-shadow: var(--shadow); }
.product-card-media { position: relative; background: var(--bg); }
.product-card-media img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; transition: transform .35s ease; }
.product-card:hover .product-card-media img { transform: scale(1.045); }
.product-badges { position: absolute; top: 10px; left: 10px; display: flex; flex-direction: column; gap: 6px; }
.badge {
  font-size: 12px; font-weight: 800; padding: 4px 10px; border-radius: 20px; color: #fff;
  width: fit-content;
}
.badge-sale { background: var(--red); }
.badge-new { background: var(--ink); }
.badge-lg { font-size: 14px; padding: 6px 14px; position: absolute; top: 14px; left: 14px; }
.product-fav {
  position: absolute; top: 10px; right: 10px;
  width: 38px; height: 38px; border-radius: 50%;
  background: #fff; box-shadow: var(--shadow-sm);
  display: inline-flex; align-items: center; justify-content: center;
  color: var(--muted); transition: all var(--transition);
}
.product-fav:hover { color: var(--red); transform: scale(1.08); }
.product-fav.is-active { color: var(--red); }
.product-fav.is-active .icon { fill: var(--red); }
.product-card-body { padding: 17px 17px 19px; display: flex; flex-direction: column; gap: 9px; flex-grow: 1; }
.product-meta { display: flex; justify-content: space-between; gap: 8px; font-size: 12.5px; }
.product-brand { color: var(--red); font-weight: 800; text-transform: uppercase; letter-spacing: .4px; }
.product-cat { color: var(--muted); }
.product-title { font-size: 15.5px; font-weight: 700; line-height: 1.4; }
.product-title a:hover { color: var(--red); }
.product-desc { font-size: 13.5px; color: var(--muted); }
.product-info-row { display: flex; flex-wrap: wrap; gap: 8px; margin-top: auto; }
.stock-badge { font-size: 12px; font-weight: 700; padding: 3px 10px; border-radius: 20px; }
.stock-success { color: var(--success); background: rgba(31, 157, 85, .1); }
.stock-warning { color: var(--warning); background: rgba(217, 119, 6, .12); }
.stock-danger { color: var(--red); background: rgba(215, 25, 32, .09); }
.stock-info { color: var(--info); background: rgba(37, 99, 235, .09); }
.warranty-badge {
  display: inline-flex; align-items: center; gap: 5px;
  font-size: 12px; font-weight: 600; color: var(--muted);
  padding: 3px 8px; border: 1px solid var(--border); border-radius: 20px;
}
.product-card-foot { display: flex; align-items: flex-end; justify-content: space-between; gap: 10px; margin-top: 4px; }
.product-prices { display: flex; flex-direction: column; }
.price-old { color: var(--muted); font-size: 13.5px; }
.price { font-size: 19px; font-weight: 800; }
.price-sale { color: var(--red); }
.price-xl { font-size: 32px; }
.product-actions { display: flex; gap: 7px; }

/* ---------- რატომ ჩვენ ---------- */
.why-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.why-card {
  background: #fff; border: 1.5px solid var(--border); border-radius: var(--radius);
  padding: 26px 24px; transition: transform var(--transition), box-shadow var(--transition);
}
.why-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.why-icon {
  width: 52px; height: 52px; border-radius: 13px;
  display: inline-flex; align-items: center; justify-content: center;
  background: rgba(215, 25, 32, .08); color: var(--red); margin-bottom: 14px;
}
.why-icon .icon { width: 26px; height: 26px; }
.why-card h3 { font-size: 17.5px; margin-bottom: 8px; }
.why-card p { color: var(--muted); font-size: 14.5px; }

/* ---------- სტატისტიკა ---------- */
.stats-section {
  background: linear-gradient(135deg, var(--red) 0%, var(--red-dark) 100%);
  color: #fff; padding-block: 56px;
}
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 28px; text-align: center; }
.stat-number { font-size: clamp(34px, 4.5vw, 52px); font-weight: 900; letter-spacing: -1px; }
.stat-plus { font-size: clamp(26px, 3vw, 38px); font-weight: 900; opacity: .85; }
.stat-label { display: block; margin-top: 6px; font-size: 14.5px; opacity: .92; font-weight: 500; }
.stats-card {
  background: linear-gradient(135deg, var(--red), var(--red-dark)); color: #fff;
  border-radius: var(--radius); padding: 28px; display: grid; grid-template-columns: 1fr 1fr; gap: 24px;
  text-align: center;
}
.stats-card .stat-number { font-size: 34px; }
.stats-card .stat-plus { font-size: 24px; }
.stats-card .stat-label { font-size: 13px; }

/* ---------- პროექტები ---------- */
.projects-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.project-card {
  background: #fff; border: 1.5px solid var(--border); border-radius: var(--radius);
  overflow: hidden; box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}
.project-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); border-color: var(--red); }
.project-media { position: relative; overflow: hidden; }
.project-media img { width: 100%; aspect-ratio: 16 / 9; object-fit: cover; transition: transform .4s ease; }
.project-card:hover .project-media img { transform: scale(1.05); }
.project-media::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(22, 24, 28, .55));
  opacity: 0; transition: opacity .3s ease;
}
.project-card:hover .project-media::after { opacity: 1; }
.project-view {
  position: absolute; bottom: 14px; right: 14px; z-index: 2;
  opacity: 0; transform: translateY(8px); transition: all .3s ease;
}
.project-card:hover .project-view { opacity: 1; transform: translateY(0); }
.project-body { padding: 18px 19px 20px; }
.project-tags { display: flex; flex-wrap: wrap; gap: 7px; margin-bottom: 10px; }
.tag {
  font-size: 12px; font-weight: 700; padding: 4px 11px; border-radius: 20px;
  background: rgba(215, 25, 32, .08); color: var(--red);
}
.tag-muted { background: var(--bg); color: var(--muted); }
.project-title { font-size: 17.5px; }
.project-desc { margin-top: 8px; color: var(--muted); font-size: 14px; }

/* ---------- ბრენდები ---------- */
.section-brands { padding-block: 52px; }
.brands-track {
  display: flex; gap: 16px; overflow-x: auto; padding-block: 6px;
  scroll-snap-type: x mandatory; scrollbar-width: none;
}
.brands-track::-webkit-scrollbar { display: none; }
.partner-logo {
  flex: 0 0 auto; scroll-snap-align: start;
  border: 1.5px solid var(--border); border-radius: var(--radius-sm);
  padding: 12px 22px; background: #fff;
  filter: grayscale(1); opacity: .65;
  transition: filter var(--transition), opacity var(--transition), border-color var(--transition);
}
.partner-logo:hover { filter: grayscale(0); opacity: 1; border-color: var(--red); }
.partner-logo img { height: 44px; width: auto; }

/* ---------- შეფასებები ---------- */
.slider { display: flex; gap: 22px; overflow-x: auto; scroll-snap-type: x mandatory; scrollbar-width: none; padding: 6px 2px 14px; }
.slider::-webkit-scrollbar { display: none; }
.slide { flex: 0 0 auto; scroll-snap-align: start; }
.testimonial-slider .slide { width: min(420px, 86vw); }
.slide-product { width: 300px; }
.slider-nav { display: flex; gap: 8px; }
.slider-btn {
  width: 42px; height: 42px; border-radius: 50%;
  border: 1.5px solid var(--border); background: #fff;
  display: inline-flex; align-items: center; justify-content: center;
  transition: all var(--transition);
}
.slider-btn:hover { border-color: var(--red); color: var(--red); }
.testimonial-card {
  background: #fff; border: 1.5px solid var(--border); border-radius: var(--radius);
  padding: 26px; display: flex; flex-direction: column; gap: 13px; position: relative;
}
.testimonial-quote { color: rgba(215, 25, 32, .15); position: absolute; top: 18px; right: 20px; }
.testimonial-quote .icon { width: 40px; height: 40px; }
.testimonial-stars { display: flex; gap: 3px; color: var(--border); }
.testimonial-stars .star-on { color: #F0B429; }
.testimonial-text { color: var(--ink); font-size: 15px; flex-grow: 1; }
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.testimonial-author img { border-radius: 50%; object-fit: cover; }
.testimonial-avatar {
  width: 46px; height: 46px; border-radius: 50%;
  background: var(--red); color: #fff; font-weight: 800; font-size: 18px;
  display: inline-flex; align-items: center; justify-content: center;
}
.testimonial-author strong { display: block; font-size: 15px; }
.testimonial-author span { font-size: 13px; color: var(--muted); }

/* ---------- ბლოგი ---------- */
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.blog-card {
  background: #fff; border: 1.5px solid var(--border); border-radius: var(--radius);
  overflow: hidden; box-shadow: var(--shadow-sm); display: flex; flex-direction: column;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}
.blog-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: var(--red); }
.blog-media { overflow: hidden; }
.blog-media img { width: 100%; aspect-ratio: 16 / 9; object-fit: cover; transition: transform .4s ease; }
.blog-card:hover .blog-media img { transform: scale(1.05); }
.blog-body { padding: 18px 19px 20px; display: flex; flex-direction: column; gap: 9px; }
.blog-meta { display: flex; flex-wrap: wrap; align-items: center; gap: 8px 14px; font-size: 12.5px; color: var(--muted); }
.blog-title { font-size: 17px; line-height: 1.4; }
.blog-card:hover .blog-title { color: var(--red); }
.blog-excerpt { font-size: 14px; color: var(--muted); }

/* ---------- სტატია ---------- */
.article-head { text-align: center; margin-bottom: 28px; }
.article-head .blog-meta { justify-content: center; margin-bottom: 16px; }
.article-head .blog-meta span { display: inline-flex; align-items: center; gap: 5px; }
.article-title { font-size: clamp(26px, 3.4vw, 38px); }
.article-excerpt { margin-top: 14px; color: var(--muted); font-size: 17px; }
.article-cover { border-radius: var(--radius); width: 100%; margin-bottom: 30px; box-shadow: var(--shadow); }
.prose p { margin-bottom: 15px; color: #333; }
.prose h2 { font-size: 22px; margin: 28px 0 12px; }
.prose h3 { font-size: 18px; margin: 22px 0 10px; }
.prose a { color: var(--red); font-weight: 600; }
.article-prose { font-size: 16.5px; }
.article-foot {
  display: flex; align-items: center; gap: 10px; margin-top: 34px;
  padding-top: 22px; border-top: 1px solid var(--border); color: var(--muted); font-weight: 600;
}
.share-btn {
  width: 40px; height: 40px; border-radius: 50%;
  border: 1.5px solid var(--border); display: inline-flex; align-items: center; justify-content: center;
  color: var(--muted); transition: all var(--transition);
}
.share-btn:hover { color: var(--red); border-color: var(--red); }

/* ---------- FAQ ---------- */
.faq-list { display: flex; flex-direction: column; gap: 12px; }
.faq-item {
  background: #fff; border: 1.5px solid var(--border); border-radius: var(--radius);
  overflow: hidden; transition: border-color var(--transition);
}
.faq-item.is-open { border-color: var(--red); }
.faq-question {
  width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 14px;
  text-align: left; padding: 18px 22px; font-weight: 700; font-size: 15.5px;
}
.faq-question:hover { color: var(--red); }
.faq-icon { color: var(--red); transition: transform .25s ease; }
.faq-item.is-open .faq-icon { transform: rotate(180deg); }
.faq-answer { padding: 0 22px; overflow: hidden; }
.faq-answer p { padding-bottom: 20px; color: var(--muted); font-size: 15px; }

/* ---------- CTA ფორმა ---------- */
.cta-section { background: var(--bg); }
.cta-grid {
  display: grid; grid-template-columns: .85fr 1.15fr;
  border-radius: 18px; overflow: hidden; box-shadow: var(--shadow-lg);
}
.cta-info {
  background: linear-gradient(150deg, var(--red), var(--red-dark));
  color: #fff; padding: 44px 40px; display: flex; flex-direction: column; gap: 20px;
}
.cta-title { font-size: 30px; }
.cta-text { opacity: .94; font-size: 15.5px; }
.cta-contacts { display: flex; flex-direction: column; gap: 15px; margin-block: 6px; }
.cta-contacts a, .cta-hours { display: inline-flex; align-items: center; gap: 12px; font-weight: 600; font-size: 16px; }
.cta-contacts a:hover { text-decoration: underline; }
.cta-form { background: #fff; padding: 40px; }

/* ---------- ფორმები ---------- */
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-row-3 { grid-template-columns: repeat(3, 1fr); }
.form-field { display: flex; flex-direction: column; gap: 6px; margin-bottom: 14px; }
.form-field label { font-size: 13.5px; font-weight: 700; }
.form-field input, .form-field select, .form-field textarea, .filter-select {
  border: 1.5px solid var(--border); border-radius: var(--radius-sm);
  padding: 11px 14px; background: #fff; width: 100%;
  transition: border-color var(--transition), box-shadow var(--transition);
}
.form-field input:focus, .form-field select:focus, .form-field textarea:focus {
  outline: none; border-color: var(--red); box-shadow: 0 0 0 3px rgba(215, 25, 32, .12);
}
.form-field input[type="file"] { padding: 8px; font-size: 13.5px; }
.form-field.has-error input, .form-field.has-error select, .form-field.has-error textarea { border-color: var(--red); }
.field-error { color: var(--red); font-size: 12.5px; font-weight: 600; }
.form-check { display: flex; align-items: flex-start; gap: 10px; font-size: 14px; cursor: pointer; margin-bottom: 8px; }
.form-check input { width: 18px; height: 18px; margin-top: 2px; accent-color: var(--red); flex-shrink: 0; }
.form-check a { color: var(--red); font-weight: 600; text-decoration: underline; }
.form-stack { display: flex; flex-direction: column; }
.hp-field { position: absolute; left: -9999px; opacity: 0; height: 0; width: 0; }
.form-field-check { justify-content: flex-end; padding-bottom: 10px; }

/* ---------- კალკულატორი ---------- */
.calc-grid {
  display: grid; grid-template-columns: 1.2fr .8fr; gap: 0;
  background: #fff; border-radius: 18px; overflow: hidden; box-shadow: var(--shadow);
  border: 1.5px solid var(--border);
}
.calc-form { padding: 36px; }
.calc-extras { border: 1.5px dashed var(--border); border-radius: var(--radius-sm); padding: 16px 18px 8px; margin-bottom: 18px; }
.calc-extras legend { font-size: 13.5px; font-weight: 700; padding-inline: 8px; }
.calc-result {
  background: var(--footer); color: #fff; padding: 36px;
  display: flex; align-items: center; justify-content: center; text-align: center;
}
.calc-result-icon { width: 54px; height: 54px; color: var(--red-hover); margin-inline: auto; margin-bottom: 14px; }
.calc-result-idle p { opacity: .75; font-size: 15px; }
.calc-label { font-size: 14px; opacity: .8; }
.calc-range { display: block; font-size: clamp(26px, 3vw, 36px); font-weight: 900; color: #fff; margin-block: 10px 16px; }
.calc-note {
  display: flex; align-items: flex-start; gap: 8px; text-align: left;
  font-size: 13px; opacity: .82; margin-bottom: 20px; max-width: 300px;
}
.calc-note .icon { color: #F0B429; flex-shrink: 0; margin-top: 1px; }

/* ---------- კატალოგი ---------- */
.catalog-layout { display: grid; grid-template-columns: 270px 1fr; gap: 32px; align-items: start; }
.catalog-filter-toggle { display: none; }
.catalog-sidebar { position: sticky; top: 96px; }
.catalog-sidebar-head { display: none; }
.filter-group { margin-bottom: 24px; }
.filter-title { font-size: 14.5px; font-weight: 800; margin-bottom: 12px; }
.filter-cats a {
  display: flex; justify-content: space-between; align-items: center;
  padding: 8px 12px; border-radius: var(--radius-sm); font-size: 14.5px; color: var(--ink);
  transition: all var(--transition);
}
.filter-cats a:hover { background: var(--bg); color: var(--red); }
.filter-cats a.is-active { background: rgba(215, 25, 32, .08); color: var(--red); font-weight: 700; }
.filter-count { font-size: 12px; color: var(--muted); background: var(--bg); border-radius: 12px; padding: 1px 8px; }
.filter-cats a.is-active .filter-count { background: rgba(215, 25, 32, .12); color: var(--red); }
.filter-price { display: flex; align-items: center; gap: 8px; }
.filter-price input { width: 100%; border: 1.5px solid var(--border); border-radius: var(--radius-sm); padding: 9px 11px; }
.catalog-toolbar {
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  margin-bottom: 24px; flex-wrap: wrap;
}
.catalog-search {
  display: flex; align-items: center; gap: 9px; flex: 1; min-width: 220px; max-width: 380px;
  border: 1.5px solid var(--border); border-radius: var(--radius-sm); padding: 0 14px;
  color: var(--muted); background: #fff;
}
.catalog-search input { border: 0; outline: none; padding: 11px 0; width: 100%; background: transparent; }
.catalog-sort { display: flex; align-items: center; gap: 14px; }
.catalog-count { font-size: 13.5px; color: var(--muted); white-space: nowrap; }
.catalog-sort select { border: 1.5px solid var(--border); border-radius: var(--radius-sm); padding: 9px 12px; background: #fff; }
.catalog-sidebar-backdrop { display: none; }

.filter-pills { display: flex; flex-wrap: wrap; gap: 9px; margin-bottom: 32px; }
.pill {
  display: inline-flex; align-items: center; gap: 7px;
  padding: 8px 17px; border-radius: 24px; font-size: 14px; font-weight: 600;
  background: #fff; border: 1.5px solid var(--border); transition: all var(--transition);
}
.pill:hover { border-color: var(--red); color: var(--red); }
.pill.is-active { background: var(--red); border-color: var(--red); color: #fff; }
.pill.is-active .filter-count { background: rgba(255,255,255,.2); color: #fff; }

/* ---------- პროდუქტის დეტალები ---------- */
.product-detail-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 44px; margin-bottom: 40px; }
.product-gallery-main {
  border: 1.5px solid var(--border); border-radius: var(--radius);
  overflow: hidden; background: var(--bg); position: relative; cursor: zoom-in;
}
.product-gallery-main img { width: 100%; aspect-ratio: 4 / 3; object-fit: contain; transition: transform .3s ease; }
.product-gallery-main.is-zoomed { cursor: zoom-out; }
.product-gallery-main.is-zoomed img { transform: scale(1.8); }
.product-gallery-thumbs { display: flex; gap: 10px; margin-top: 12px; flex-wrap: wrap; }
.gallery-thumb {
  border: 2px solid var(--border); border-radius: var(--radius-sm); overflow: hidden;
  padding: 0; background: var(--bg); transition: border-color var(--transition);
}
.gallery-thumb.is-active, .gallery-thumb:hover { border-color: var(--red); }
.product-detail-title { font-size: clamp(22px, 2.6vw, 30px); margin-block: 10px 14px; }
.product-detail-info { display: flex; flex-wrap: wrap; gap: 10px; align-items: center; margin-bottom: 18px; }
.sku { font-size: 13px; color: var(--muted); }
.product-model { font-size: 13px; color: var(--muted); }
.product-detail-prices { display: flex; align-items: baseline; gap: 14px; margin-bottom: 16px; }
.product-detail-desc { color: var(--muted); margin-bottom: 22px; }
.product-detail-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 14px; }
.product-detail-secondary { display: flex; flex-direction: column; gap: 10px; margin-bottom: 20px; }
.qty-stepper {
  display: inline-flex; align-items: center; border: 1.5px solid var(--border);
  border-radius: var(--radius-sm); overflow: hidden; background: #fff;
}
.qty-stepper button { padding: 13px 14px; color: var(--muted); transition: all var(--transition); }
.qty-stepper button:hover { background: var(--bg); color: var(--red); }
.qty-stepper input {
  width: 52px; text-align: center; border: 0; outline: none; font-weight: 700;
  -moz-appearance: textfield; appearance: textfield;
}
.qty-stepper input::-webkit-outer-spin-button, .qty-stepper input::-webkit-inner-spin-button { -webkit-appearance: none; }
.qty-stepper-sm button { padding: 8px 10px; }
.qty-stepper-sm input { width: 42px; }
.product-perks { display: flex; flex-direction: column; gap: 9px; border-top: 1px solid var(--border); padding-top: 18px; }
.product-perks li { display: flex; align-items: center; gap: 10px; font-size: 14px; color: var(--muted); }
.product-perks .icon { color: var(--red); }

.product-tabs { border: 1.5px solid var(--border); border-radius: var(--radius); overflow: hidden; }
.tabs-nav { display: flex; border-bottom: 1.5px solid var(--border); background: var(--bg); overflow-x: auto; }
.tab-btn {
  padding: 15px 26px; font-weight: 700; font-size: 15px; color: var(--muted);
  border-bottom: 3px solid transparent; white-space: nowrap; transition: all var(--transition);
}
.tab-btn:hover { color: var(--red); }
.tab-btn.is-active { color: var(--red); border-bottom-color: var(--red); background: #fff; }
.tab-panel { padding: 28px; }
.table-scroll { overflow-x: auto; }
.specs-table { width: 100%; border-collapse: collapse; font-size: 14.5px; }
.specs-table th, .specs-table td { text-align: left; padding: 12px 16px; border-bottom: 1px solid var(--border); }
.specs-table th { width: 40%; color: var(--muted); font-weight: 600; background: var(--bg); }
.specs-table tr:last-child th, .specs-table tr:last-child td { border-bottom: 0; }

/* ---------- სერვისის დეტალები ---------- */
.service-hero { background: linear-gradient(180deg, #fff, var(--bg)); }
.service-hero-grid { display: grid; grid-template-columns: 1.2fr .8fr; gap: 40px; align-items: center; padding-block: 48px; }
.service-hero-media img { border-radius: var(--radius); box-shadow: var(--shadow); width: 100%; }
.service-layout { display: grid; grid-template-columns: 1fr 320px; gap: 44px; align-items: start; }
.check-list { display: grid; grid-template-columns: 1fr 1fr; gap: 11px; }
.check-list li { display: flex; align-items: flex-start; gap: 10px; font-size: 15px; }
.check-list .icon { color: var(--red); margin-top: 3px; }
.check-list-sm { grid-template-columns: 1fr; }
.check-list-sm li { font-size: 14px; }
.included-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.included-card {
  display: flex; gap: 14px; background: #fff; border: 1.5px solid var(--border);
  border-radius: var(--radius); padding: 18px;
  transition: border-color var(--transition), box-shadow var(--transition);
}
.included-card:hover { border-color: var(--red); box-shadow: var(--shadow-sm); }
.included-icon {
  width: 40px; height: 40px; border-radius: 10px; flex-shrink: 0;
  background: rgba(215, 25, 32, .08); color: var(--red);
  display: inline-flex; align-items: center; justify-content: center;
}
.included-card h3 { font-size: 15.5px; margin-bottom: 5px; }
.included-card p { font-size: 13.5px; color: var(--muted); }
.steps-list { counter-reset: steps; display: flex; flex-direction: column; gap: 16px; }
.step { display: flex; gap: 18px; }
.step-num {
  width: 44px; height: 44px; border-radius: 50%; flex-shrink: 0;
  background: var(--red); color: #fff; font-weight: 800; font-size: 18px;
  display: inline-flex; align-items: center; justify-content: center;
}
.step h3 { font-size: 16.5px; margin-bottom: 4px; }
.step p { color: var(--muted); font-size: 14.5px; }
.service-aside { display: flex; flex-direction: column; gap: 20px; position: sticky; top: 96px; }
.aside-card {
  background: #fff; border: 1.5px solid var(--border); border-radius: var(--radius); padding: 24px;
}
.aside-card h3 { font-size: 17px; margin-bottom: 14px; }
.aside-card-red { background: linear-gradient(150deg, var(--red), var(--red-dark)); color: #fff; border: 0; }
.aside-card-red p { opacity: .94; font-size: 14.5px; margin-bottom: 16px; }
.aside-card-red .btn { margin-bottom: 9px; }
.aside-links { display: flex; flex-direction: column; }
.aside-links a {
  display: flex; align-items: center; gap: 10px; padding: 10px 4px;
  border-bottom: 1px solid var(--border); font-size: 14.5px; font-weight: 600;
  transition: color var(--transition);
}
.aside-links li:last-child a { border-bottom: 0; }
.aside-links a:hover { color: var(--red); }
.aside-links .icon { color: var(--red); }
.detail-list { display: flex; flex-direction: column; gap: 11px; }
.detail-list li { display: flex; justify-content: space-between; gap: 12px; font-size: 14.5px; }
.detail-list span { color: var(--muted); }
.result-card {
  display: flex; gap: 16px; align-items: flex-start;
  background: rgba(31, 157, 85, .07); border: 1.5px solid rgba(31, 157, 85, .25);
  border-radius: var(--radius); padding: 22px;
}
.result-card .icon { color: var(--success); width: 30px; height: 30px; flex-shrink: 0; }
.project-gallery { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.project-gallery img { border-radius: var(--radius); width: 100%; aspect-ratio: 16/9; object-fit: cover; }
.project-gallery .gallery-hero { grid-column: 1 / -1; aspect-ratio: 21/9; }

/* ---------- About ---------- */
.about-grid { display: grid; grid-template-columns: 1fr 340px; gap: 44px; align-items: start; }
.about-aside { display: flex; flex-direction: column; gap: 20px; position: sticky; top: 96px; }
.mission-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; margin-block: 26px; }
.mission-card { background: var(--bg); border-radius: var(--radius); padding: 24px; }
.mission-card h3 { margin-bottom: 8px; }
.mission-card p { color: var(--muted); font-size: 14.5px; }
.team-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.team-card {
  background: #fff; border: 1.5px solid var(--border); border-radius: var(--radius);
  padding: 26px 22px; text-align: center;
  transition: transform var(--transition), box-shadow var(--transition);
}
.team-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.team-card img { width: 108px; height: 108px; border-radius: 50%; margin: 0 auto 16px; }
.team-card h3 { font-size: 16.5px; }
.team-position { display: block; color: var(--red); font-size: 13px; font-weight: 700; margin-block: 5px 9px; }
.team-card p { font-size: 13.5px; color: var(--muted); }

/* ---------- კონტაქტი ---------- */
.contact-cards { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; margin-bottom: 36px; }
.contact-card {
  background: #fff; border: 1.5px solid var(--border); border-radius: var(--radius);
  padding: 26px 24px; transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
}
.contact-card:hover { transform: translateY(-4px); border-color: var(--red); box-shadow: var(--shadow); }
.contact-card h2 { font-size: 16.5px; margin-bottom: 6px; }
.contact-card p { color: var(--muted); font-size: 14.5px; }
.contact-map { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); }
.contact-map iframe { width: 100%; height: 420px; border: 0; }

/* ---------- კალათა / Checkout ---------- */
.cart-layout { display: grid; grid-template-columns: 1fr 350px; gap: 36px; align-items: start; }
.cart-table { width: 100%; border-collapse: collapse; }
.cart-table th {
  text-align: left; font-size: 13px; color: var(--muted); font-weight: 700;
  padding: 12px 14px; border-bottom: 2px solid var(--border);
}
.cart-table td { padding: 16px 14px; border-bottom: 1px solid var(--border); vertical-align: middle; }
.cart-product { display: flex; align-items: center; gap: 14px; min-width: 240px; }
.cart-product img { border-radius: var(--radius-sm); border: 1px solid var(--border); object-fit: cover; }
.cart-product a { font-weight: 700; font-size: 14.5px; }
.cart-product a:hover { color: var(--red); }
.cart-product small { display: block; color: var(--muted); }
.cart-remove { color: var(--muted); padding: 8px; border-radius: var(--radius-sm); transition: all var(--transition); }
.cart-remove:hover { color: var(--red); background: rgba(215, 25, 32, .08); }
.cart-summary {
  background: #fff; border: 1.5px solid var(--border); border-radius: var(--radius);
  padding: 26px; position: sticky; top: 96px;
}
.cart-summary h2 { font-size: 19px; margin-bottom: 18px; }
.promo-form { display: flex; gap: 8px; margin-bottom: 18px; }
.promo-form input {
  flex: 1; border: 1.5px solid var(--border); border-radius: var(--radius-sm);
  padding: 9px 12px; text-transform: uppercase;
}
.summary-lines { display: flex; flex-direction: column; gap: 11px; margin-bottom: 20px; }
.summary-lines li { display: flex; justify-content: space-between; font-size: 14.5px; }
.summary-lines span { color: var(--muted); }
.summary-total { border-top: 1.5px solid var(--border); padding-top: 13px; font-size: 17px !important; }
.summary-total strong { color: var(--red); font-size: 20px; }
.summary-note { display: flex; gap: 8px; align-items: center; font-size: 12.5px; color: var(--muted); margin-top: 14px; }
.checkout-layout { display: grid; grid-template-columns: 1fr 380px; gap: 40px; align-items: start; }
.checkout-form .block-title:first-child { margin-top: 0; }
.radio-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-bottom: 18px; }
.radio-cards-3 { grid-template-columns: repeat(3, 1fr); }
.radio-card { cursor: pointer; }
.radio-card input { position: absolute; opacity: 0; }
.radio-card-body {
  display: flex; flex-direction: column; gap: 6px; height: 100%;
  border: 2px solid var(--border); border-radius: var(--radius);
  padding: 16px; transition: all var(--transition);
}
.radio-card-body .icon { color: var(--red); }
.radio-card-body small { color: var(--muted); font-size: 12.5px; }
.radio-card input:checked + .radio-card-body {
  border-color: var(--red); background: rgba(215, 25, 32, .04);
  box-shadow: 0 0 0 3px rgba(215, 25, 32, .1);
}
.radio-card input:focus-visible + .radio-card-body { outline: 3px solid rgba(215,25,32,.45); outline-offset: 2px; }
.checkout-items { display: flex; flex-direction: column; gap: 13px; margin-bottom: 20px; }
.checkout-items li { display: flex; align-items: center; gap: 12px; }
.checkout-items img { border-radius: 6px; border: 1px solid var(--border); object-fit: cover; }
.checkout-item-info { flex: 1; display: flex; flex-direction: column; font-size: 13.5px; }
.checkout-item-info small { color: var(--muted); }

/* ---------- Success / Empty / Error ---------- */
.success-card {
  text-align: center; background: #fff; border: 1.5px solid var(--border);
  border-radius: 18px; padding: 48px 36px; box-shadow: var(--shadow);
}
.success-icon {
  width: 74px; height: 74px; border-radius: 50%; margin: 0 auto 22px;
  background: rgba(31, 157, 85, .1); color: var(--success);
  display: inline-flex; align-items: center; justify-content: center;
}
.success-icon .icon { width: 36px; height: 36px; }
.success-card h1 { font-size: 28px; margin-bottom: 12px; }
.success-card > p { color: var(--muted); margin-bottom: 26px; }
.success-card .table-scroll { margin-bottom: 28px; }
.empty-state { text-align: center; padding: 56px 20px; }
.empty-icon { width: 60px; height: 60px; color: var(--border); margin: 0 auto 18px; }
.empty-state h2 { font-size: 22px; margin-bottom: 10px; }
.empty-state p { color: var(--muted); margin-bottom: 22px; }
.error-page { text-align: center; padding: 40px 20px; }
.error-code { font-size: clamp(80px, 14vw, 140px); font-weight: 900; color: var(--red); line-height: 1; display: block; }
.error-page h1 { font-size: 26px; margin-block: 14px 10px; }
.error-page p { color: var(--muted); margin-bottom: 26px; }

/* ---------- Pagination ---------- */
.pagination { display: flex; justify-content: center; gap: 7px; margin-top: 40px; flex-wrap: wrap; }
.page-link {
  min-width: 42px; height: 42px; padding-inline: 12px;
  display: inline-flex; align-items: center; justify-content: center;
  border: 1.5px solid var(--border); border-radius: var(--radius-sm);
  font-weight: 700; font-size: 14.5px; background: #fff; transition: all var(--transition);
}
.page-link:hover { border-color: var(--red); color: var(--red); }
.page-link.is-active { background: var(--red); border-color: var(--red); color: #fff; }
.page-dots { align-self: center; color: var(--muted); }

/* ---------- Footer ---------- */
.site-footer { background: var(--footer); color: #C9CDD3; margin-top: 0; }
.footer-grid {
  display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr 1.15fr;
  gap: 36px; padding-block: 56px 40px;
}
.footer-about { font-size: 14px; line-height: 1.7; margin-block: 18px; opacity: .85; }
.footer-subscribe { display: flex; gap: 8px; }
.footer-subscribe input {
  flex: 1; background: rgba(255,255,255,.07); border: 1.5px solid rgba(255,255,255,.14);
  border-radius: var(--radius-sm); padding: 10px 14px; color: #fff; min-width: 0;
}
.footer-subscribe input::placeholder { color: rgba(255,255,255,.45); }
.footer-subscribe input:focus { outline: none; border-color: var(--red); }
.footer-title {
  color: #fff; font-size: 15.5px; margin-bottom: 18px;
  display: flex; align-items: center; justify-content: space-between;
}
.footer-chevron { display: none; }
.footer-links { display: flex; flex-direction: column; gap: 11px; font-size: 14px; }
.footer-links a { opacity: .82; transition: all var(--transition); }
.footer-links a:hover { opacity: 1; color: #fff; padding-left: 4px; }
.footer-contacts a, .footer-contacts span { display: inline-flex; align-items: flex-start; gap: 10px; }
.footer-contacts .icon { color: var(--red-hover); margin-top: 2px; }
.footer-bottom {
  display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap;
  border-top: 1px solid rgba(255,255,255,.09); padding-block: 22px; font-size: 13.5px;
}
.footer-bottom-links { display: flex; gap: 22px; }
.footer-bottom-links a { opacity: .75; }
.footer-bottom-links a:hover { opacity: 1; }
.footer-socials { display: flex; gap: 14px; }
.footer-socials a { opacity: .75; transition: all var(--transition); }
.footer-socials a:hover { opacity: 1; color: var(--red-hover); transform: translateY(-1px); }

/* ---------- ფიქსირებული ღილაკები ---------- */
.fixed-buttons {
  position: fixed; right: 22px; bottom: 22px; z-index: 250;
  display: flex; flex-direction: column; gap: 12px;
}
.fixed-btn {
  width: 54px; height: 54px; border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  color: #fff; box-shadow: var(--shadow-lg); transition: transform var(--transition);
}
.fixed-btn:hover { transform: translateY(-3px) scale(1.05); }
.fixed-whatsapp { background: #25D366; }
.fixed-call { background: var(--red); animation: pulse-red 2.4s infinite; }
.fixed-top { background: var(--ink); }
@keyframes pulse-red {
  0%, 100% { box-shadow: 0 0 0 0 rgba(215, 25, 32, .45); }
  55% { box-shadow: 0 0 0 15px rgba(215, 25, 32, 0); }
}
.mobile-actionbar {
  display: none; position: fixed; left: 0; right: 0; bottom: 0; z-index: 240;
  background: #fff; border-top: 1px solid var(--border);
  box-shadow: 0 -4px 20px rgba(24,24,24,.09);
  padding-bottom: env(safe-area-inset-bottom);
}
.mobile-actionbar a {
  flex: 1; display: flex; flex-direction: column; align-items: center; gap: 3px;
  padding: 9px 4px 10px; font-size: 11.5px; font-weight: 700; color: var(--muted);
}
.mobile-actionbar a .icon { color: var(--red); }
.mobile-actionbar .actionbar-primary { background: var(--red); color: #fff; }
.mobile-actionbar .actionbar-primary .icon { color: #fff; }

/* ---------- მოდალი ---------- */
.modal { position: fixed; inset: 0; z-index: 500; display: none; }
.modal.is-open { display: block; }
.modal-backdrop { position: absolute; inset: 0; background: rgba(22, 24, 28, .6); animation: fadeIn .25s ease; }
.modal-panel {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
  background: #fff; border-radius: 18px; padding: 34px;
  width: min(440px, calc(100vw - 32px)); box-shadow: var(--shadow-lg);
  animation: modalIn .3s ease; max-height: calc(100vh - 40px); overflow-y: auto;
}
@keyframes modalIn { from { opacity: 0; transform: translate(-50%, -46%); } to { opacity: 1; transform: translate(-50%, -50%); } }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
.modal-close {
  position: absolute; top: 14px; right: 14px; padding: 9px;
  border-radius: 50%; color: var(--muted); transition: all var(--transition);
}
.modal-close:hover { background: var(--bg); color: var(--red); }
.modal-title { font-size: 23px; margin-bottom: 8px; }
.modal-sub { color: var(--muted); font-size: 14.5px; margin-bottom: 22px; }

/* ---------- Toast ---------- */
.toast-stack {
  position: fixed; top: 20px; right: 20px; z-index: 600;
  display: flex; flex-direction: column; gap: 10px; max-width: min(380px, calc(100vw - 40px));
}
.toast {
  display: flex; align-items: flex-start; gap: 11px;
  background: var(--footer); color: #fff; border-radius: var(--radius);
  padding: 14px 18px; box-shadow: var(--shadow-lg); font-size: 14.5px;
  animation: toastIn .3s ease;
}
.toast .icon { flex-shrink: 0; margin-top: 1px; }
.toast-success .icon { color: #4ADE80; }
.toast-error .icon { color: var(--red-hover); }
.toast.is-hiding { opacity: 0; transform: translateX(20px); transition: all .3s ease; }
@keyframes toastIn { from { opacity: 0; transform: translateX(24px); } to { opacity: 1; transform: translateX(0); } }

/* ---------- ანიმაციები ---------- */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .55s ease, transform .55s ease; }
.reveal.is-visible { opacity: 1; transform: translateY(0); }

/* ============ Responsive ============ */

@media (max-width: 1200px) {
  .services-grid { grid-template-columns: repeat(3, 1fr); }
  .products-grid { grid-template-columns: repeat(3, 1fr); }
  .catalog-main .products-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-cards { grid-template-columns: repeat(2, 1fr); }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1.4fr 1fr 1fr; }
}

@media (max-width: 992px) {
  .main-nav { display: none; }
  .header-cta { display: none; }
  .hamburger { display: inline-flex; }
  .header-actions { margin-left: auto; }
  .hero-grid { grid-template-columns: 1fr; gap: 32px; padding-block: 44px; }
  .hero-visual { max-width: 520px; margin-inline: auto; }
  .services-grid, .services-grid-lg { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .projects-grid, .blog-grid { grid-template-columns: repeat(2, 1fr); }
  .products-grid { grid-template-columns: repeat(2, 1fr); }
  .cta-grid, .calc-grid { grid-template-columns: 1fr; }
  .service-layout, .about-grid { grid-template-columns: 1fr; }
  .service-aside, .about-aside { position: static; }
  .service-hero-grid { grid-template-columns: 1fr; }
  .service-hero-media { max-width: 440px; }
  .product-detail-grid { grid-template-columns: 1fr; gap: 30px; }
  .cart-layout, .checkout-layout { grid-template-columns: 1fr; }
  .cart-summary { position: static; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .catalog-layout { grid-template-columns: 1fr; }
  .catalog-filter-toggle { display: inline-flex; width: fit-content; margin-bottom: 18px; }
  .catalog-sidebar {
    position: fixed; inset: 0 auto 0 0; z-index: 450; width: min(330px, 86vw);
    background: #fff; padding: 20px; overflow-y: auto;
    transform: translateX(-100%); transition: transform .28s ease;
    box-shadow: var(--shadow-lg); top: 0;
  }
  .catalog-sidebar.is-open { transform: translateX(0); }
  .catalog-sidebar-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 18px; }
  .catalog-sidebar-backdrop {
    display: block; position: fixed; inset: 0; z-index: 440;
    background: rgba(22,24,28,.5); opacity: 0; pointer-events: none; transition: opacity .28s ease;
  }
  .catalog-sidebar-backdrop.is-open { opacity: 1; pointer-events: auto; }
}

@media (max-width: 768px) {
  .section { padding-block: 52px; }
  .topbar-hours, .topbar-socials, .topbar-tagline { display: none; }
  .topbar-left { gap: 6px; }
  .topbar-right { gap: 14px; }
  .form-row, .form-row-3 { grid-template-columns: 1fr; }
  .cta-info, .cta-form, .calc-form, .calc-result { padding: 28px 22px; }
  .check-list, .included-grid, .mission-grid { grid-template-columns: 1fr; }
  .radio-cards, .radio-cards-3 { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 0; padding-block: 40px 26px; }
  .footer-brand { margin-bottom: 26px; }
  .footer-col { border-bottom: 1px solid rgba(255,255,255,.09); }
  .footer-col .footer-title { padding-block: 15px; margin-bottom: 0; cursor: pointer; }
  .footer-chevron { display: block; transition: transform .25s ease; }
  .footer-col.is-open .footer-chevron { transform: rotate(180deg); }
  .footer-col .footer-links { display: none; padding-bottom: 16px; }
  .footer-col.is-open .footer-links { display: flex; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .mobile-actionbar { display: flex; }
  body { padding-bottom: 58px; }
  .fixed-buttons { bottom: 74px; right: 14px; }
  .fixed-btn { width: 48px; height: 48px; }
  .contact-map iframe { height: 320px; }
  .project-gallery { grid-template-columns: 1fr 1fr; }
  .hero-actions .btn { flex: 1; min-width: 150px; white-space: normal; }
}

@media (max-width: 576px) {
  .services-grid, .services-grid-lg { grid-template-columns: 1fr; }
  .why-grid, .projects-grid, .blog-grid, .team-grid, .contact-cards { grid-template-columns: 1fr; }
  .products-grid, .catalog-main .products-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .product-card-body { padding: 12px; }
  .product-title { font-size: 13.5px; }
  .product-desc, .product-info-row { display: none; }
  .price { font-size: 16px; }
  .price-xl { font-size: 26px; }
  .product-card-foot { flex-direction: column; align-items: stretch; gap: 8px; }
  .product-actions { justify-content: stretch; }
  .product-actions .btn { flex: 1; }
  .stats-grid { gap: 20px; }
  .slide-product { width: 240px; }
  .testimonial-slider .slide { width: 86vw; }
  .hero-title { font-size: 30px; }
  .section-title { font-size: 24px; }
  .tab-btn { padding: 13px 16px; font-size: 14px; }
  .tab-panel { padding: 18px; }
  .cart-table thead { display: none; }
  .cart-table tr { display: block; padding: 14px 0; border-bottom: 1px solid var(--border); position: relative; }
  .cart-table td { display: flex; justify-content: space-between; align-items: center; border: 0; padding: 6px 0; }
  .cart-table td[data-label]::before { content: attr(data-label); font-size: 12.5px; color: var(--muted); font-weight: 600; }
  .cart-product { min-width: 0; }
}

@media (max-width: 375px) {
  .products-grid, .catalog-main .products-grid { grid-template-columns: 1fr; }
  .container { padding-inline: 14px; }
}

/* ---------- Reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
  .reveal { opacity: 1; transform: none; }
}

/* ---------- Print ---------- */
@media print {
  .topbar, .site-header, .site-footer, .fixed-buttons, .mobile-actionbar, .cta-section { display: none !important; }
}
