/* ============================================
   ALTERNATOR.GE — DLE 17 Template Styles
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Rajdhani:wght@500;600;700&family=Noto+Sans+Georgian:wght@300;400;500;600;700&display=swap');

:root {
  --bg:        #111214;
  --bg2:       #161819;
  --bg3:       #1a1c1e;
  --card:      #1c1e21;
  --card2:     #212326;
  --orange:    #f97316;
  --orange2:   #ea6c0a;
  --orange-gl: rgba(249,115,22,.18);
  --text:      #f5f5f5;
  --text2:     #9ca3af;
  --text3:     #d1d5db;
  --border:    #2a2c30;
  --border2:   #323538;
  --white:     #ffffff;
  --radius:    12px;
  --radius-sm: 8px;
}

*, *::before, *::after { margin:0; padding:0; box-sizing:border-box; }

/* SVG global fix — never stretch */
svg { display: block; flex-shrink: 0; }
svg:not([width]):not([height]):not([class]) { width: 1em; height: 1em; }

html { scroll-behavior:smooth; }

body {
  font-family: 'Noto Sans Georgian', sans-serif;
  background: var(--bg);
  color: var(--text);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button { font-family: inherit; cursor: pointer; }
select { font-family: inherit; }

/* ─────────────────────────────
   HEADER
───────────────────────────── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 200;
  background: rgba(17,18,20,.96);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
  height: 62px;
}
.header-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 36px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.logo-icon {
  width: 32px; height: 32px;
  background: var(--orange);
  border-radius: 7px;
  display: flex; align-items: center; justify-content: center;
}
.logo-icon svg { width: 18px; height: 18px; fill: white; }
.logo-text {
  font-family: 'Rajdhani', sans-serif;
  font-size: 19px;
  font-weight: 700;
  color: var(--white);
  letter-spacing: .5px;
}
.logo-text span { color: var(--orange); }

/* Desktop Nav */
.main-nav { display: flex; gap: 2px; }
.main-nav a {
  font-size: 13.5px;
  font-weight: 500;
  color: var(--text2);
  padding: 6px 14px;
  border-radius: 6px;
  transition: color .2s;
  position: relative;
}
.main-nav a:hover { color: var(--text); }
.main-nav a.active { color: var(--white); }
.main-nav a.active::after {
  content: '';
  position: absolute;
  bottom: -1px; left: 14px; right: 14px;
  height: 2px;
  background: var(--orange);
  border-radius: 2px;
}

/* Header Right */
.header-right { display: flex; align-items: center; gap: 8px; }

.icon-btn {
  width: 36px; height: 36px;
  display: flex; align-items: center; justify-content: center;
  background: transparent;
  border: none;
  color: var(--text2);
  border-radius: 8px;
  transition: all .2s;
  position: relative;
}
.icon-btn:hover { background: var(--card); color: var(--text); }
.icon-btn svg { width: 18px; height: 18px; }

.cart-badge {
  position: absolute;
  top: 4px; right: 4px;
  width: 17px; height: 17px;
  background: var(--orange);
  border-radius: 50%;
  font-size: 10px; font-weight: 700;
  color: white;
  display: flex; align-items: center; justify-content: center;
}

/* Language switcher */
.lang-switcher { display: flex; gap: 4px; }
.lang-btn {
  padding: 4px 9px;
  background: transparent;
  border: 1px solid transparent;
  border-radius: 6px;
  font-size: 12px;
  font-weight: 600;
  color: var(--text2);
  cursor: pointer;
  transition: all .2s;
  letter-spacing: .3px;
}
.lang-btn:hover { color: var(--text); border-color: var(--border2); }
.lang-btn.active { color: var(--orange); border-color: var(--orange); background: rgba(249,115,22,.08); }

/* Burger */
.burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 36px; height: 36px;
  background: transparent;
  border: none;
}
.burger span {
  display: block;
  width: 20px; height: 2px;
  background: var(--text3);
  border-radius: 2px;
  transition: all .25s;
}
.burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger.open span:nth-child(2) { opacity: 0; }
.burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ─────────────────────────────
   MOBILE MENU
───────────────────────────── */
.mobile-menu {
  position: fixed;
  top: 62px; left: 0; right: 0; bottom: 0;
  background: rgba(13,14,16,.97);
  backdrop-filter: blur(16px);
  z-index: 199;
  flex-direction: column;
  padding: 20px 20px 80px;
  overflow-y: auto;
  /* скрыто по умолчанию — уезжает вправо */
  transform: translateX(100%);
  transition: transform .3s ease;
  /* всегда flex, но скрыт через transform */
  display: flex;
  pointer-events: none;
}
.mobile-menu.open {
  transform: translateX(0);
  pointer-events: all;
}
.mobile-menu .mob-nav { display: flex; flex-direction: column; gap: 2px; margin-bottom: 24px; }
.mobile-menu .mob-nav a {
  font-size: 16px;
  padding: 13px 16px;
  border-radius: 10px;
  border-bottom: 1px solid var(--border);
  display: flex; align-items: center; justify-content: space-between;
  color: var(--text3);
}
.mobile-menu .mob-nav a:hover { color: var(--orange); }
.mobile-menu .mob-nav a svg { width: 15px; height: 15px; color: var(--text2); }

.mob-contact-box {
  background: var(--card);
  border: 1px solid var(--border2);
  border-radius: var(--radius);
  padding: 16px;
  margin-bottom: 20px;
}
.mob-contact-box h4 {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: .5px;
  color: var(--text2);
  font-weight: 600;
  margin-bottom: 12px;
}
.mob-contact-row {
  display: flex; align-items: center; gap: 9px;
  font-size: 13px; color: var(--text2);
  margin-bottom: 10px;
}
.mob-contact-row svg { width: 14px; height: 14px; color: var(--orange); flex-shrink: 0; }

.mob-lang { display: flex; gap: 8px; margin-bottom: 20px; }
.mob-lang .lang-btn { font-size: 14px; padding: 8px 16px; border: 1px solid var(--border2); }
.mob-lang .lang-btn.active { border-color: var(--orange); color: var(--orange); }

.mob-badges { display: flex; flex-direction: column; gap: 10px; }
.mob-badge {
  display: flex; align-items: center; gap: 10px;
  font-size: 13px; color: var(--text2);
}
.mob-badge svg { width: 16px; height: 16px; color: var(--orange); flex-shrink: 0; }

/* ─────────────────────────────
   MOBILE BOTTOM BAR
───────────────────────────── */
.mobile-bar {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: rgba(13,14,16,.97);
  backdrop-filter: blur(14px);
  border-top: 1px solid var(--border);
  height: 60px;
  z-index: 198;
}
.mobile-bar-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  height: 100%;
}
.bar-btn {
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 3px;
  background: none; border: none;
  color: var(--text2);
  font-size: 10px;
  text-decoration: none;
  transition: color .2s;
  position: relative;
}
.bar-btn:hover, .bar-btn.active { color: var(--orange); }
.bar-btn svg { width: 20px; height: 20px; }
.bar-cart-badge {
  position: absolute;
  top: 6px; right: calc(50% - 18px);
  width: 14px; height: 14px;
  background: var(--orange);
  border-radius: 50%;
  font-size: 9px; font-weight: 700;
  color: white;
  display: flex; align-items: center; justify-content: center;
}

/* ─────────────────────────────
   HERO
───────────────────────────── */
.hero {
  min-height: 460px;
  background: linear-gradient(135deg, #0d0e10 0%, #131518 60%, #111214 100%);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  padding: 60px 0 80px;
}
.hero-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 36px;
  width: 100%;
  position: relative;
  z-index: 2;
}
.hero-bg-glow {
  position: absolute;
  right: 15%;
  top: 50%;
  transform: translateY(-50%);
  width: 500px; height: 400px;
  background: radial-gradient(ellipse, rgba(249,115,22,.12) 0%, transparent 65%);
  pointer-events: none;
}
.hero-lines {
  position: absolute;
  right: 18%;
  top: 50%;
  transform: translateY(-50%);
  width: 400px; height: 300px;
  pointer-events: none;
  overflow: hidden;
}
.hero-lines::before, .hero-lines::after {
  content: '';
  position: absolute;
  width: 200%; height: 3px;
  background: linear-gradient(90deg, transparent, rgba(249,115,22,.6), transparent);
  transform: rotate(-35deg);
}
.hero-lines::before { top: 40%; left: -50%; }
.hero-lines::after  { top: 55%; left: -30%; opacity: .4; }

.hero-content {
  max-width: 560px;
  animation: fadeUp .7s ease both;
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: var(--orange);
  font-weight: 500;
  margin-bottom: 14px;
}
.hero-tag svg { width: 14px; height: 14px; }

.hero h1 {
  font-size: 46px;
  font-weight: 700;
  line-height: 1.15;
  color: var(--white);
  margin-bottom: 16px;
}
.hero h1 .orange { color: var(--orange); }

.hero-desc {
  font-size: 14.5px;
  color: var(--text2);
  margin-bottom: 30px;
  line-height: 1.65;
  max-width: 440px;
}

.btn-orange {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 26px;
  background: var(--orange);
  color: white;
  border: none;
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-weight: 600;
  transition: all .22s;
}
.btn-orange:hover {
  background: var(--orange2);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(249,115,22,.35);
}
.btn-orange svg { width: 16px; height: 16px; }

.hero-badges {
  display: flex;
  gap: 28px;
  margin-top: 36px;
  flex-wrap: wrap;
}
.hero-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: var(--text2);
}
.hero-badge svg { width: 16px; height: 16px; color: var(--orange); flex-shrink: 0; }
.hero-badge-text { line-height: 1.3; }

.hero-img {
  position: absolute;
  right: 36px;
  top: 50%;
  transform: translateY(-50%);
  width: 420px;
  animation: fadeIn .9s ease .2s both;
  filter: drop-shadow(0 0 80px rgba(249,115,22,.2));
  pointer-events: none;
}
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }

/* ─────────────────────────────
   SEARCH BOX
───────────────────────────── */
.search-section {
  max-width: 1400px;
  margin: -32px auto 0;
  padding: 0 36px;
  position: relative;
  z-index: 10;
}
.search-box {
  background: var(--card2);
  border: 1px solid var(--border2);
  border-radius: 14px;
  padding: 24px 28px;
  box-shadow: 0 20px 60px rgba(0,0,0,.5);
}
.search-box h3 {
  font-size: 16px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 18px;
}
.search-row {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr auto;
  gap: 12px;
  align-items: end;
}
.sel-wrap { position: relative; }
.sel-icon {
  position: absolute;
  left: 12px; top: 50%;
  transform: translateY(-50%);
  width: 15px; height: 15px;
  color: var(--text2);
  pointer-events: none;
}
.filter-sel {
  width: 100%;
  padding: 10px 32px 10px 34px;
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 13px;
  color: var(--text3);
  cursor: pointer;
  appearance: none;
  transition: border-color .2s;
}
.filter-sel:focus { outline: none; border-color: var(--orange); }
.sel-arrow {
  position: absolute;
  right: 10px; top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
  color: var(--text2);
}
.sel-arrow svg { width: 14px; height: 14px; }
.btn-search {
  padding: 10px 26px;
  background: var(--orange);
  color: white;
  border: none;
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-weight: 600;
  display: flex; align-items: center; gap: 7px;
  height: 40px;
  white-space: nowrap;
  transition: all .2s;
}
.btn-search:hover { background: var(--orange2); }
.btn-search svg { width: 15px; height: 15px; }
.oem-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 14px;
  font-size: 13px;
  color: var(--orange);
  font-weight: 500;
  transition: gap .2s;
}
.oem-link:hover { gap: 10px; }

/* ─────────────────────────────
   SECTION BASE
───────────────────────────── */
.section {
  max-width: 1400px;
  margin: 0 auto;
  padding: 52px 36px;
}
.section-sm { padding-top: 0; }

.sec-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
}
.sec-title {
  font-size: 21px;
  font-weight: 700;
  color: var(--white);
}
.view-all {
  font-size: 13px;
  color: var(--orange);
  display: flex; align-items: center; gap: 5px;
  font-weight: 500;
  transition: gap .2s;
}
.view-all:hover { gap: 9px; }
.view-all svg { width: 14px; height: 14px; }

/* ─────────────────────────────
   CATEGORIES
───────────────────────────── */
.cats-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
}
.cat-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: all .25s;
}
.cat-card:hover {
  border-color: var(--orange);
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(249,115,22,.12);
}
.cat-img {
  width: 100%; height: 145px;
  object-fit: cover;
  background: var(--bg3);
  display: block;
  transition: transform .3s;
}
.cat-card:hover .cat-img { transform: scale(1.04); }
.cat-footer {
  padding: 12px 14px;
  display: flex; align-items: center; justify-content: space-between;
  border-top: 1px solid var(--border);
}
.cat-label {
  display: flex; align-items: center; gap: 8px;
  font-size: 12.5px; font-weight: 500; color: var(--text3);
}
.cat-label svg { width: 14px; height: 14px; color: var(--orange); }
.cat-arrow { color: var(--orange); }
.cat-arrow svg { width: 13px; height: 13px; }

/* ─────────────────────────────
   PRODUCTS GRID + FEATURES
───────────────────────────── */
.products-features {
  display: grid;
  grid-template-columns: 1fr 260px;
  gap: 20px;
}
.products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

/* shortstory card */
.prod-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: all .25s;
}
.prod-card:hover {
  border-color: var(--orange);
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(249,115,22,.12);
}
.prod-img-wrap {
  position: relative;
  padding: 20px;
  background: var(--bg2);
  display: flex; align-items: center; justify-content: center;
  height: 160px;
  overflow: hidden;
}
.prod-img-wrap img {
  width: 110px; height: 110px;
  object-fit: contain;
  transition: transform .3s;
}
.prod-card:hover .prod-img-wrap img { transform: scale(1.07); }

.bestseller-badge {
  position: absolute;
  top: 10px; left: 10px;
  background: var(--orange);
  color: white;
  font-size: 9px;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 4px;
  letter-spacing: .5px;
  text-transform: uppercase;
}
.wish-btn {
  position: absolute;
  top: 10px; right: 10px;
  width: 30px; height: 30px;
  background: var(--card);
  border: 1px solid var(--border2);
  border-radius: 7px;
  display: flex; align-items: center; justify-content: center;
  transition: all .2s;
}
.wish-btn:hover { border-color: #ef4444; background: rgba(239,68,68,.1); }
.wish-btn svg { width: 13px; height: 13px; color: var(--text2); }

.prod-info { padding: 14px 16px 16px; }
.prod-name {
  font-size: 14px; font-weight: 600; color: var(--white);
  margin-bottom: 3px;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.prod-spec { font-size: 11.5px; color: var(--text2); margin-bottom: 12px; }
.prod-foot { display: flex; align-items: center; justify-content: space-between; }
.prod-price { font-size: 17px; font-weight: 700; color: var(--white); }
.prod-price small { font-size: 12px; font-weight: 400; color: var(--text2); }
.cart-btn-sq {
  width: 34px; height: 34px;
  background: var(--orange);
  border: none;
  border-radius: 7px;
  display: flex; align-items: center; justify-content: center;
  transition: all .2s;
}
.cart-btn-sq:hover { background: var(--orange2); transform: scale(1.06); }
.cart-btn-sq svg { width: 15px; height: 15px; color: white; }

/* Features side */
.features-side {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px;
  display: flex; flex-direction: column; justify-content: space-around;
}
.feat-item {
  display: flex; align-items: flex-start; gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
}
.feat-item:last-child { border-bottom: none; }
.feat-icon {
  width: 38px; height: 38px;
  background: rgba(249,115,22,.1);
  border: 1px solid rgba(249,115,22,.2);
  border-radius: 9px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.feat-icon svg { width: 18px; height: 18px; color: var(--orange); }
.feat-text { font-size: 12.5px; font-weight: 500; color: var(--text3); line-height: 1.5; }

/* ─────────────────────────────
   WHY US
───────────────────────────── */
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.why-content h2 { font-size: 26px; font-weight: 700; color: var(--white); margin-bottom: 14px; }
.why-content p  { font-size: 13.5px; color: var(--text2); line-height: 1.7; margin-bottom: 26px; }

.why-video {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  background: var(--card);
  aspect-ratio: 16/10;
  display: flex; align-items: center; justify-content: center;
  border: 1px solid var(--border);
}
.why-video svg.bg-svg { position: absolute; width: 100%; height: 100%; opacity: .4; }
.play-btn {
  width: 54px; height: 54px;
  background: var(--orange);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  transition: all .2s;
  box-shadow: 0 0 30px rgba(249,115,22,.4);
  z-index: 2;
  border: none;
}
.play-btn:hover { transform: scale(1.1); }
.play-btn svg { width: 20px; height: 20px; color: white; margin-left: 3px; }

.stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 28px;
  padding-top: 28px;
  border-top: 1px solid var(--border);
}
.stat-num {
  font-family: 'Rajdhani', sans-serif;
  font-size: 30px; font-weight: 700;
  color: var(--white);
}
.stat-num span { color: var(--orange); }
.stat-lbl { font-size: 11.5px; color: var(--text2); margin-top: 2px; }

/* ─────────────────────────────
   FULLSTORY PAGE
───────────────────────────── */
.fullstory-wrap {
  max-width: 1400px;
  margin: 0 auto;
  padding: 40px 36px 60px;
}
.breadcrumb {
  display: flex; align-items: center; gap: 8px;
  font-size: 12.5px; color: var(--text2);
  margin-bottom: 28px;
  flex-wrap: wrap;
}
.breadcrumb a { color: var(--text2); transition: color .2s; }
.breadcrumb a:hover { color: var(--orange); }
.breadcrumb svg { width: 13px; height: 13px; color: var(--border2); }

.fullstory-grid {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 40px;
  align-items: start;
}

/* Gallery */
.product-gallery { position: sticky; top: 80px; }
.gallery-main {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  height: 380px;
  margin-bottom: 12px;
  overflow: hidden;
}
.gallery-main img {
  max-width: 300px; max-height: 300px;
  object-fit: contain;
  transition: transform .3s;
}
.gallery-main:hover img { transform: scale(1.05); }
.gallery-thumbs { display: flex; gap: 10px; }
.thumb {
  width: 72px; height: 72px;
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  overflow: hidden;
  transition: border-color .2s;
}
.thumb:hover, .thumb.active { border-color: var(--orange); }
.thumb img { width: 56px; height: 56px; object-fit: contain; }

/* Product Info */
.product-info-panel {}
.prod-badges-row { display: flex; gap: 8px; margin-bottom: 16px; flex-wrap: wrap; }
.prod-badge {
  padding: 4px 10px;
  border-radius: 5px;
  font-size: 11px; font-weight: 600;
  letter-spacing: .3px;
}
.badge-new    { background: rgba(249,115,22,.15); color: var(--orange); border: 1px solid rgba(249,115,22,.3); }
.badge-stock  { background: rgba(34,197,94,.12);  color: #22c55e; border: 1px solid rgba(34,197,94,.25); }
.badge-oem    { background: rgba(96,165,250,.1);  color: #60a5fa; border: 1px solid rgba(96,165,250,.2); }

.prod-title {
  font-size: 24px; font-weight: 700;
  color: var(--white);
  margin-bottom: 6px;
  line-height: 1.3;
}
.prod-oem {
  font-size: 13px; color: var(--text2);
  margin-bottom: 20px;
}
.prod-oem span { color: var(--orange); font-weight: 600; }

.prod-rating { display: flex; align-items: center; gap: 10px; margin-bottom: 20px; }
.stars { display: flex; gap: 2px; }
.stars svg { width: 16px; height: 16px; color: var(--orange); }
.rating-count { font-size: 13px; color: var(--text2); }

.price-block { margin-bottom: 24px; }
.price-main {
  font-family: 'Rajdhani', sans-serif;
  font-size: 36px; font-weight: 700;
  color: var(--white);
}
.price-main span { font-size: 20px; color: var(--text2); font-weight: 500; }
.price-old {
  font-size: 16px; color: var(--text2);
  text-decoration: line-through;
  margin-left: 8px;
}

.buy-row { display: flex; gap: 10px; margin-bottom: 24px; }
.btn-buy {
  flex: 1;
  padding: 14px 20px;
  background: var(--orange);
  color: white; border: none;
  border-radius: var(--radius-sm);
  font-size: 15px; font-weight: 600;
  display: flex; align-items: center; justify-content: center; gap: 8px;
  transition: all .2s;
}
.btn-buy:hover { background: var(--orange2); transform: translateY(-1px); box-shadow: 0 8px 24px rgba(249,115,22,.3); }
.btn-buy svg { width: 18px; height: 18px; }
.btn-wish-lg {
  width: 50px; height: 50px;
  background: var(--card);
  border: 1px solid var(--border2);
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  transition: all .2s;
}
.btn-wish-lg:hover { border-color: #ef4444; background: rgba(239,68,68,.1); }
.btn-wish-lg svg { width: 20px; height: 20px; color: var(--text2); }

/* Specs table */
.specs-table { width: 100%; border-collapse: collapse; margin-bottom: 24px; }
.specs-table tr { border-bottom: 1px solid var(--border); }
.specs-table tr:last-child { border-bottom: none; }
.specs-table td {
  padding: 10px 0;
  font-size: 13px;
}
.specs-table td:first-child { color: var(--text2); width: 45%; }
.specs-table td:last-child  { color: var(--text); font-weight: 500; }

/* Delivery info card */
.delivery-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 16px;
  margin-bottom: 16px;
}
.delivery-row {
  display: flex; align-items: center; gap: 10px;
  font-size: 13px; color: var(--text3);
  padding: 8px 0;
  border-bottom: 1px solid var(--border);
}
.delivery-row:last-child { border-bottom: none; }
.delivery-row svg { width: 16px; height: 16px; color: var(--orange); flex-shrink: 0; }

/* Product tabs */
.prod-tabs { margin-top: 40px; }
.tabs-nav { display: flex; gap: 4px; border-bottom: 1px solid var(--border); margin-bottom: 24px; }
.tab-btn {
  padding: 10px 18px;
  background: transparent;
  border: none;
  font-size: 13.5px; font-weight: 500;
  color: var(--text2);
  cursor: pointer;
  position: relative;
  transition: color .2s;
}
.tab-btn:hover { color: var(--text); }
.tab-btn.active { color: var(--white); }
.tab-btn.active::after {
  content: '';
  position: absolute;
  bottom: -1px; left: 0; right: 0;
  height: 2px;
  background: var(--orange);
}
.tab-content { display: none; }
.tab-content.active { display: block; }
.tab-text { font-size: 14px; color: var(--text2); line-height: 1.75; }

/* Related products */
.related-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

/* ─────────────────────────────
   FOOTER
───────────────────────────── */
.site-footer {
  background: #0d0e10;
  border-top: 1px solid var(--border);
  margin-top: 60px;
}
.footer-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 46px 36px 24px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1.4fr 1.2fr;
  gap: 36px;
  margin-bottom: 36px;
}
.footer-about .footer-desc {
  font-size: 12.5px; color: var(--text2);
  margin-top: 12px;
  line-height: 1.6;
  max-width: 220px;
}
.footer-social { display: flex; gap: 9px; margin-top: 16px; }
.soc-btn {
  width: 32px; height: 32px;
  background: var(--card);
  border: 1px solid var(--border2);
  border-radius: 7px;
  display: flex; align-items: center; justify-content: center;
  color: var(--text2);
  transition: all .2s;
}
.soc-btn:hover { border-color: var(--orange); color: var(--orange); }
.soc-btn svg { width: 14px; height: 14px; }

.footer-col h4 {
  font-size: 12px; font-weight: 600;
  color: var(--text3);
  margin-bottom: 14px;
  text-transform: uppercase;
  letter-spacing: .5px;
}
.footer-col a {
  display: block;
  font-size: 13px; color: var(--text2);
  margin-bottom: 9px;
  transition: color .2s;
}
.footer-col a:hover { color: var(--orange); }

.contact-row {
  display: flex; align-items: center; gap: 9px;
  font-size: 13px; color: var(--text2);
  margin-bottom: 11px;
}
.contact-row svg { width: 14px; height: 14px; color: var(--orange); flex-shrink: 0; }

.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 18px;
  display: flex; justify-content: space-between; align-items: center;
  font-size: 12px; color: var(--text2);
}

/* ─────────────────────────────
   PAGINATION
───────────────────────────── */
.pagination {
  display: flex; justify-content: center; gap: 6px;
  margin-top: 40px; flex-wrap: wrap;
}
.pagination a, .pagination span {
  width: 36px; height: 36px;
  display: flex; align-items: center; justify-content: center;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 13px; font-weight: 500;
  color: var(--text2);
  transition: all .2s;
}
.pagination a:hover { border-color: var(--orange); color: var(--orange); }
.pagination .current { background: var(--orange); border-color: var(--orange); color: white; }

/* ─────────────────────────────
   CATALOG / CATEGORY PAGE
───────────────────────────── */
.catalog-wrap {
  max-width: 1400px;
  margin: 0 auto;
  padding: 40px 36px 60px;
}
.catalog-layout {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 28px;
  align-items: start;
}

/* Sidebar filters */
.sidebar {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px;
  position: sticky;
  top: 80px;
}
.sidebar h3 {
  font-size: 15px; font-weight: 600;
  color: var(--white);
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border);
}
.filter-group { margin-bottom: 20px; }
.filter-group label {
  display: block;
  font-size: 11px; font-weight: 600;
  color: var(--text2);
  text-transform: uppercase;
  letter-spacing: .5px;
  margin-bottom: 8px;
}
.filter-group select {
  width: 100%;
  padding: 9px 12px;
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 13px; color: var(--text3);
  appearance: none;
  cursor: pointer;
}
.filter-group select:focus { outline: none; border-color: var(--orange); }

.catalog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

/* toolbar */
.catalog-toolbar {
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: 20px;
  flex-wrap: wrap; gap: 12px;
}
.catalog-count { font-size: 13px; color: var(--text2); }
.sort-select {
  padding: 7px 12px;
  background: var(--card);
  border: 1px solid var(--border2);
  border-radius: var(--radius-sm);
  font-size: 13px; color: var(--text3);
  appearance: none; cursor: pointer;
}

/* ─────────────────────────────
   UTILITY
───────────────────────────── */
.text-orange { color: var(--orange); }
.mt-8  { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }

/* ═══════════════════════════════
   RESPONSIVE
═══════════════════════════════ */

/* Tablet */
@media (max-width: 1024px) {
  .header-inner { padding: 0 20px; }
  .main-nav { display: none; }
  .burger { display: flex; }
  .lang-switcher { display: none; }

  .hero { min-height: 380px; }
  .hero-inner { padding: 0 20px; }
  .hero h1 { font-size: 34px; }
  .hero-img { width: 300px; right: 20px; }
  .hero-badges { gap: 18px; }

  .search-section { padding: 0 20px; }
  .search-row { grid-template-columns: 1fr 1fr; }
  .btn-search { grid-column: span 2; justify-content: center; }

  .section { padding: 40px 20px; }
  .cats-grid { grid-template-columns: repeat(3, 1fr); }
  .products-features { grid-template-columns: 1fr; }
  .products-grid { grid-template-columns: repeat(2, 1fr); }
  .features-side { display: grid; grid-template-columns: repeat(2, 1fr); }
  .feat-item:nth-child(3), .feat-item:nth-child(4) { border-bottom: none; }
  .feat-item:nth-child(2) { border-bottom: 1px solid var(--border); }

  .why-grid { grid-template-columns: 1fr; gap: 28px; }
  .stats-row { grid-template-columns: repeat(4, 1fr); }

  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-inner { padding: 36px 20px 20px; }

  .fullstory-wrap { padding: 30px 20px 50px; }
  .fullstory-grid { grid-template-columns: 1fr; }
  .product-gallery { position: static; }
  .related-grid { grid-template-columns: repeat(2, 1fr); }

  .catalog-wrap { padding: 30px 20px; }
  .catalog-layout { grid-template-columns: 220px 1fr; }
  .catalog-grid { grid-template-columns: repeat(2, 1fr); }
}

/* Mobile */
@media (max-width: 640px) {
  .site-header { height: 56px; }
  .header-inner { padding: 0 16px; }
  .logo-text { font-size: 16px; }
  .logo-icon { width: 28px; height: 28px; }
  .logo-icon svg { width: 15px; height: 15px; }
  .mobile-menu { top: 56px; }

  .hero { padding: 36px 0 60px; min-height: auto; }
  .hero-inner { padding: 0 16px; }
  .hero h1 { font-size: 28px; }
  .hero-img {
    position: relative; right: auto; top: auto; transform: none;
    width: 100%; max-width: 260px;
    margin: 28px auto 0;
  }
  .hero-badges { flex-direction: column; gap: 12px; margin-top: 22px; }
  .btn-orange { width: 100%; justify-content: center; }

  .search-section { padding: 0 16px; margin-top: -20px; }
  .search-box { padding: 16px; border-radius: 10px; }
  .search-row { grid-template-columns: 1fr; }
  .btn-search { grid-column: 1; }

  .section { padding: 28px 16px; }
  .sec-title { font-size: 18px; }

  .cats-grid { grid-template-columns: 1fr 1fr; gap: 10px; }
  .cat-img { height: 100px; }
  .cat-label { font-size: 11px; }

  .products-grid { grid-template-columns: 1fr 1fr; gap: 10px; }
  .prod-img-wrap { height: 130px; }
  .prod-img-wrap img { width: 85px; height: 85px; }
  .prod-name { font-size: 12.5px; }
  .prod-spec { font-size: 11px; }
  .prod-price { font-size: 15px; }
  .products-features { grid-template-columns: 1fr; }

  .features-side { grid-template-columns: 1fr; }
  .feat-item:nth-child(3) { border-bottom: 1px solid var(--border); }
  .feat-item:nth-child(4) { border-bottom: none; }
  .feat-item:nth-child(2) { border-bottom: 1px solid var(--border); }

  .stats-row { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .why-content h2 { font-size: 22px; }

  .footer-grid { grid-template-columns: 1fr; gap: 22px; }
  .footer-desc { max-width: 100%; }
  .footer-bottom { flex-direction: column; gap: 6px; text-align: center; }

  .fullstory-wrap { padding: 20px 16px 40px; }
  .gallery-main { height: 260px; }
  .prod-title { font-size: 20px; }
  .price-main { font-size: 28px; }
  .buy-row { flex-direction: column; }
  .btn-wish-lg { width: 100%; }
  .related-grid { grid-template-columns: 1fr 1fr; gap: 10px; }

  .catalog-layout { grid-template-columns: 1fr; }
  .sidebar { position: static; }
  .catalog-grid { grid-template-columns: 1fr 1fr; gap: 10px; }

  .mobile-bar { display: block; }
  body { padding-bottom: 60px; }
}

@media (max-width: 380px) {
  .hero h1 { font-size: 24px; }
  .cats-grid { grid-template-columns: 1fr 1fr; }
  .products-grid { grid-template-columns: 1fr; }
  .related-grid { grid-template-columns: 1fr; }
  .catalog-grid { grid-template-columns: 1fr; }
}
