:root{
  --bg:#0b0f16;
  --bg2:#0f1624;
  --card:rgba(255,255,255,.06);
  --card2:rgba(255,255,255,.08);
  --border:rgba(255,255,255,.10);
  --text:#eaf0fb;
  --muted:#a9b4c7;
  --accent:#ff2d2d;
  --shadow: 0 18px 55px rgba(0,0,0,.45);
  --radius:18px;
}

*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family:system-ui,-apple-system,Segoe UI,Roboto,Arial,sans-serif;
  background: radial-gradient(1200px 700px at 20% 0%, #1b2744 0%, var(--bg) 55%);
  color:var(--text);
}

a{color:inherit}
.container{max-width:1100px;margin:0 auto;padding:0 18px}
.muted{color:var(--muted)}
.badge{
  font-size:12px;
  padding:6px 10px;
  border:1px solid var(--border);
  border-radius:999px;
  background:rgba(0,0,0,.2);
}

.topbar{
  border-bottom:1px solid rgba(255,255,255,.06);
  background:rgba(0,0,0,.25);
  backdrop-filter: blur(10px);
}
.topbar__inner{
  display:flex;align-items:center;justify-content:space-between;
  padding:10px 0; gap:12px;
}
.pill{
  font-size:12px;
  padding:6px 10px;border-radius:999px;
  background:rgba(255,255,255,.06);
  border:1px solid rgba(255,255,255,.08);
  margin-right:10px;
}
.lang{
  display:flex;align-items:center;gap:10px;
  border:1px solid rgba(255,255,255,.14);
  background:rgba(0,0,0,.25);
  color:var(--text);
  padding:8px 12px;border-radius:999px;
  cursor:pointer;
}
.lang__dot{
  width:10px;height:10px;border-radius:50%;
  background:var(--accent);
  box-shadow:0 0 18px rgba(255,45,45,.45);
}

.header{
  position:sticky; top:0; z-index:50;
  border-bottom:1px solid rgba(255,255,255,.06);
  background:rgba(11,15,22,.65);
  backdrop-filter: blur(12px);
}
.header__inner{
  display:flex;align-items:center;justify-content:space-between;
  padding:14px 0; gap:14px;
}
.brand--logo img{
  height:50px;
  width:auto;
  display:block;
}

/* hover effect */
.brand--logo{
  padding:6px 8px;
  border-radius:12px;
}
.brand--logo:hover{
  background:rgba(255,255,255,.06);
}

/* mobile */
@media (max-width: 820px){
  .brand--logo img{
    height:34px;
  }
}

.brand{
  text-decoration:none;
  font-weight:900;
  letter-spacing:.6px;
  display:flex;align-items:baseline;gap:6px;
}
.brand__x{
  display:inline-flex;align-items:center;justify-content:center;
  width:28px;height:28px;border-radius:10px;
  background:linear-gradient(135deg, rgba(255,45,45,.95), rgba(255,45,45,.35));
  box-shadow:0 12px 35px rgba(255,45,45,.20);
}
.brand__sub{font-weight:700;color:var(--muted)}

.nav{
  display:flex;align-items:center;gap:14px;
}
.nav a{
  text-decoration:none;
  color:var(--muted);
  padding:10px 10px;
  border-radius:12px;
}
.nav a:hover{color:var(--text); background:rgba(255,255,255,.05)}
.nav__cta{
  border:1px solid rgba(255,255,255,.14);
  background:rgba(0,0,0,.15);
  color:var(--text) !important;
}

/* Dropdown */
.dropdown{position:relative}
.dropdown__btn{
  display:flex;align-items:center;gap:8px;
  padding:10px 10px;border-radius:12px;
  border:0;background:transparent;
  color:var(--muted); cursor:pointer;
}
.dropdown__btn:hover{color:var(--text); background:rgba(255,255,255,.05)}
.chev{opacity:.9}
.dropdown__menu{
  position:absolute; right:0; top:46px;
  min-width:210px;
  border:1px solid rgba(255,255,255,.12);
  background:rgba(10,14,20,.98);
  border-radius:14px;
  box-shadow:var(--shadow);
  padding:8px;
  display:none;
}
.dropdown__menu a{
  display:block;
  padding:10px 10px;
  border-radius:12px;
}
.dropdown__menu a:hover{background:rgba(255,255,255,.06); color:var(--text)}
.dropdown.open .dropdown__menu{display:block}

/* Mobile menu button */
.menuBtn{
  display:none;
  width:44px;height:44px;
  border-radius:14px;
  border:1px solid rgba(255,255,255,.12);
  background:rgba(0,0,0,.22);
  cursor:pointer;
}
.menuBtn span{
  display:block;height:2px;width:18px;margin:5px auto;
  background:var(--text); opacity:.9;
}

.hero{
   position: relative;
  padding: 64px 0 36px;
  overflow: hidden;
}
.hero::before{
  content:"";
  position:absolute;
  inset:0;
  background:
    linear-gradient(
      180deg,
      rgba(11,15,22,.75),
      rgba(11,15,22,.92)
    ),
    url("images/garage.png") center / cover no-repeat;
  filter: blur(1px);
  transform: scale(1.05); /* რომ ბლარის კიდეები არ გამოჩნდეს */
  z-index:0;
}

.hero__inner{
  display:grid;
  grid-template-columns: 1.35fr .85fr;
  gap:16px;
  align-items:stretch;
  position: relative;
  z-index:1;
}
.hero__text{
  padding:26px;
  backdrop-filter: blur(6px);
  background: rgba(18, 26, 38, 0.75);
  border-radius:var(--radius);
  background:linear-gradient(135deg, rgba(255,255,255,.06), rgba(255,255,255,.03));
  border:1px solid rgba(255,255,255,.09);
}
.hero__card{
  backdrop-filter: blur(6px);
  background: rgba(18, 26, 38, 0.85);
}
.hero h1{margin:0 0 10px; font-size:40px; line-height:1.12}
.hero__p{margin:0 0 18px; line-height:1.55}
.hero__actions{display:flex; gap:10px; flex-wrap:wrap; margin-bottom:18px}

.btn{
  display:inline-flex;align-items:center;justify-content:center;
  padding:12px 16px;border-radius:14px;
  border:1px solid rgba(255,45,45,.25);
  background:linear-gradient(135deg, rgba(255,45,45,.98), rgba(255,45,45,.55));
  color:white;text-decoration:none;
  font-weight:800;
  cursor:pointer;
}
.btn--ghost{
  background:rgba(0,0,0,.18);
  border:1px solid rgba(255,255,255,.16);
}
.btn--small{padding:10px 14px;border-radius:12px;font-size:14px}

.stats{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:10px;
  margin-top:14px;
}
.stat{
  padding:12px;border-radius:14px;
  background:rgba(0,0,0,.18);
  border:1px solid rgba(255,255,255,.08);
}
.stat__k{font-weight:800;margin-bottom:3px}
.stat__v{color:var(--muted);font-size:13px}

.hero__card{
  padding:22px;
  border-radius:var(--radius);
  background:linear-gradient(135deg, rgba(255,45,45,.18), rgba(255,255,255,.04));
  border:1px solid rgba(255,255,255,.10);
  box-shadow:var(--shadow);
}
.heroCard__title{color:var(--muted);font-size:13px;margin-bottom:10px}
.heroCard__big{font-size:36px;font-weight:950;margin-bottom:8px}
.heroCard__small{color:var(--muted);line-height:1.55;margin-bottom:14px}
.heroCard__note{color:var(--muted);font-size:12px;margin-top:10px}

.section{padding:44px 0}
.section--dark{
  background:linear-gradient(180deg, rgba(255,255,255,.03), rgba(0,0,0,.0));
  border-top:1px solid rgba(255,255,255,.05);
  border-bottom:1px solid rgba(255,255,255,.05);
}
.section__head{margin-bottom:16px}
.section__head h2{margin:0 0 8px;font-size:26px}
.section__head p{margin:0;line-height:1.55}

.widgetBox{
  border-radius:var(--radius);
  border:1px solid rgba(255,255,255,.12);
  background:rgba(0,0,0,.20);
  overflow:hidden;
}
.widgetBox__top{
  display:flex;gap:10px;flex-wrap:wrap;
  align-items:center;justify-content:space-between;
  padding:14px 16px;
  border-bottom:1px solid rgba(255,255,255,.08);
}
.widgetBox__body{padding:16px}
.widgetMock{
  border:1px dashed rgba(255,255,255,.18);
  border-radius:16px;
  padding:16px;
  background:rgba(255,255,255,.03);
}
.widgetMock__row{
  display:grid;grid-template-columns:repeat(3,1fr);
  gap:10px;margin-bottom:12px;
}
.widgetMock__field{
  padding:12px;border-radius:14px;
  border:1px solid rgba(255,255,255,.12);
  background:rgba(0,0,0,.18);
  color:var(--muted);font-size:13px;
}
.widgetMock__btn{
  display:inline-flex;
  padding:10px 14px;border-radius:12px;
  border:1px solid rgba(255,255,255,.16);
  background:rgba(255,255,255,.06);
  font-weight:800;margin-bottom:10px;
}
.widgetMock__result{color:var(--muted); line-height:1.55}

.grid3{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:12px;
}
.grid2{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:12px;
}
.card{
  padding:16px;
  border-radius:16px;
  background:rgba(255,255,255,.05);
  border:1px solid rgba(255,255,255,.10);
}
.card h3{margin:0 0 8px}
.card p{margin:0;color:var(--muted);line-height:1.55}

.split{
  display:grid;
  grid-template-columns: 1.2fr .8fr;
  gap:14px;
  align-items:start;
}
.list{margin:12px 0 0; padding-left:18px; color:var(--muted)}
.list li{margin:8px 0}

.panel{
  padding:16px;border-radius:16px;
  background:rgba(0,0,0,.18);
  border:1px solid rgba(255,255,255,.10);
}
.panel__title{font-weight:900;margin-bottom:8px}
.panel__text{color:var(--muted);line-height:1.55}

.priceCard{
  padding:14px;border-radius:16px;
  border:1px solid rgba(255,255,255,.10);
  background:rgba(255,255,255,.04);
}
.priceCard__k{font-weight:950;margin-bottom:6px}
.priceCard__v{color:var(--muted);line-height:1.45}

.contactGrid{
  display:grid;
  grid-template-columns: 1.2fr .8fr;
  gap:14px;
  align-items:start;
}
.form{
  padding:16px;border-radius:16px;
  border:1px solid rgba(255,255,255,.10);
  background:rgba(255,255,255,.04);
}
.form label{display:block;margin:10px 0 6px;color:var(--muted);font-size:13px}
.form input,.form textarea{
  width:100%;
  padding:12px 12px;
  border-radius:14px;
  border:1px solid rgba(255,255,255,.14);
  background:rgba(0,0,0,.18);
  color:var(--text);
  outline:none;
}
.form input:focus,.form textarea:focus{border-color:rgba(255,45,45,.45)}
.formRow{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:12px;
}
.formNote{margin-top:10px;font-size:12px}

.contactCard{
  padding:16px;border-radius:16px;
  border:1px solid rgba(255,255,255,.10);
  background:rgba(0,0,0,.18);
}
.contactCard__title{font-weight:950;margin-bottom:12px}
.contactCard__item{display:flex;justify-content:space-between;gap:10px;margin:10px 0}
.contactCard__val{font-weight:700}
.divider{height:1px;background:rgba(255,255,255,.10);margin:14px 0}

.contactLayout{
  display:grid;
  grid-template-columns: 1.2fr .8fr;
  gap:14px;
  align-items:start;
}

.formGrid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:10px;
}

.field label{
  display:block;
  font-size:13px;
  margin-bottom:6px;
  color: var(--muted);
}

.field input,
.field textarea{
  width:100%;
  border-radius:12px;
  border:1px solid rgba(255,255,255,.12);
  background:rgba(0,0,0,.18);
  color: #fff;
  padding:10px 12px;
  outline:none;
}

.field input:focus,
.field textarea:focus{
  border-color: rgba(255,45,45,.35);
}

.kv{ display:flex; justify-content:space-between; gap:10px; padding:8px 0; border-bottom:1px solid rgba(255,255,255,.08); }
.kv__k{ color: var(--muted); }
.kv__v{ font-weight:700; }

@media (max-width: 920px){
  .contactLayout{ grid-template-columns:1fr; }
  .formGrid{ grid-template-columns:1fr; }
}


.footer{
  padding:18px 0 28px;
  border-top:1px solid rgba(255,255,255,.06);
  background:rgba(0,0,0,.22);
}
.footer__inner{
  display:flex;justify-content:space-between;align-items:center;
  gap:10px; flex-wrap:wrap;
}

/* Responsive */
@media (max-width: 920px){
  .hero__inner{grid-template-columns:1fr}
  .stats{grid-template-columns:1fr; }
  .grid3{grid-template-columns:1fr}
  .grid2{grid-template-columns:1fr}
  .split{grid-template-columns:1fr}
  .contactGrid{grid-template-columns:1fr}
  .widgetMock__row{grid-template-columns:1fr}
}
@media (max-width: 820px){
  .menuBtn{display:inline-block}
  .nav{
    position:fixed; left:18px; right:18px; top:110px;
    padding:12px;
    border-radius:16px;
    border:1px solid rgba(255,255,255,.12);
    background:rgba(10,14,20,.98);
    box-shadow:var(--shadow);
    display:none;
    flex-direction:column;
    align-items:stretch;
  }
  .nav.open{display:flex}
  .dropdown__menu{
    position:static; display:none;
    margin-top:6px;
    box-shadow:none;
    background:rgba(0,0,0,.12);
  }
  .dropdown.open .dropdown__menu{display:block}
}




/* ===== Parts page helpers ===== */
.hero--page{ padding: 40px 0 20px; }
.hero__inner--single{ grid-template-columns: 1fr !important; }

/* ===== Products Grid ===== */
.productGrid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:12px;
}

.productCard{
  text-decoration:none;
  padding:14px;
  border-radius:16px;
  border:1px solid rgba(255,255,255,.10);
  background:rgba(255,255,255,.05);
  display:flex;
  flex-direction:column;
  justify-content:space-between;
  min-height:170px;
  transition: transform .15s ease, background .15s ease, border-color .15s ease;
}
.productCard:hover{
  transform: translateY(-2px);
  background:rgba(255,255,255,.07);
  border-color: rgba(255,45,45,.25);
}

.productCard__name{ font-weight:950; margin-bottom:6px; }
.productCard__desc{ color:var(--muted); line-height:1.45; font-size:13px; }

.productCard__bottom{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:10px;
  margin-top:14px;
}
.productCard__price{ font-weight:900; }
.productCard__pill{
  font-size:13px;
  padding:8px 10px;
  border-radius:12px;
  border:1px solid rgba(255,255,255,.16);
  background:rgba(0,0,0,.18);
}

@media (max-width: 1100px){ .productGrid{grid-template-columns:repeat(3,1fr);} }
@media (max-width: 920px){ .productGrid{grid-template-columns:repeat(2,1fr);} }
@media (max-width: 520px){ .productGrid{grid-template-columns:1fr;} }


/* Fix: images should never overflow */
img{
  max-width:100%;
  height:auto;
}

/* Product image inside card */
.productCard__image{
  width:100%;
  height:140px;        /* აქ შეცვლი სიმაღლეს: 120-180 */
  border-radius:12px;
  overflow:hidden;
  margin-bottom:10px;
  border:1px solid rgba(255,255,255,.08);
  background:#0b0f16;
}

.productCard__image img{
  width:100%;
  height:100%;
  object-fit:cover;    /* რომ არ იწელოს */
  display:block;
}

/* ===== Slider ===== */
.slider{
  position:relative;
  border-radius:18px;
  border:1px solid rgba(255,255,255,.10);
  background:rgba(255,255,255,.04);
  padding:14px;
  overflow:hidden;
}

.slider__track{
  display:flex;
  gap:12px;
  overflow:auto;
  scroll-snap-type:x mandatory;
  scroll-behavior:smooth;
  padding-bottom:8px;
}
.slider__track::-webkit-scrollbar{ height:8px; }
.slider__track::-webkit-scrollbar-thumb{ background: rgba(255,255,255,.12); border-radius:999px; }

.slideCard{
  scroll-snap-align:start;
  min-width: 320px;
  max-width: 340px;
  flex: 0 0 auto;
  text-decoration:none;
  border-radius:16px;
  border:1px solid rgba(255,255,255,.10);
  background:rgba(0,0,0,.18);
  overflow:hidden;
  transition: transform .15s ease, border-color .15s ease, background .15s ease;
}
.slideCard:hover{
  transform: translateY(-2px);
  border-color: rgba(255,45,45,.25);
  background:rgba(0,0,0,.22);
}

.slideCard__img{
  height:160px;
  overflow:hidden;
  background:#0b0f16;
}
.slideCard__img img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
}

.slideCard__body{ padding:12px; }
.slideCard__name{ font-weight:950; margin-bottom:6px; }
.slideCard__desc{ color:var(--muted); font-size:13px; line-height:1.45; }

.slideCard__bottom{
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:10px;
  margin-top:12px;
}
.slideCard__price{ font-weight:900; }
.slideCard__tag{
  font-size:12px;
  padding:7px 10px;
  border-radius:12px;
  border:1px solid rgba(255,255,255,.16);
  background:rgba(0,0,0,.18);
}

/* buttons */
.slider__btn{
  position:absolute;
  top:50%;
  transform:translateY(-50%);
  width:38px;
  height:38px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.14);
  background:rgba(0,0,0,.25);
  color:#fff;
  cursor:pointer;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:22px;
}
.slider__btn--prev{ left:10px; }
.slider__btn--next{ right:10px; }

.slider__dots{
  display:flex;
  justify-content:center;
  gap:8px;
  margin-top:10px;
}
.slider__dot{
  width:8px; height:8px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.20);
  background:rgba(255,255,255,.08);
  cursor:pointer;
}
.slider__dot.is-active{
  background:rgba(255,255,255,.35);
}

@media (max-width: 520px){
  .slideCard{ min-width: 86%; max-width: 86%; }
  .slider__btn{ display:none; } /* მობილურზე swipe საკმარისია */
}


/* ===== Modal (Test mode) ===== */
.testModal{
  position: fixed;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

.testModal.is-open{
  display: flex;
}

.testModal__overlay{
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.6);
  cursor: pointer;
}

.testModal__box{
  position: relative;
  z-index: 2;
  background: #111;
  border-radius: 16px;
  padding: 50px;
  max-width: 420px;
  width: 90%;
}

.testModal__close{
  position: absolute;
  top: 15px;
  right: 18px;
  background: none;
  border: 0;
  color: #fff;
  font-size: 40px;
  cursor: pointer;
}


/* ===== Partners logo slider ===== */
.section--partners .section__head{
  text-align:center;
}

.logoSlider{
  position:relative;
  overflow:hidden;
  margin-top:20px;
  border-radius:16px;
  border:1px solid rgba(255,255,255,.08);
  background:rgba(255,255,255,.03);
}

.logoSlider__track{
  display:flex;
  gap:40px;
  align-items:center;
  width:max-content;
  animation: logoScroll 35s linear infinite;
  padding:18px 20px;
}

.logo{
  flex:0 0 auto;
  opacity:.85;
  transition: opacity .2s ease, transform .2s ease;
}


.logo img{
  height:48px;
  width:auto;
  display:block;
}

.logo{
  flex:0 0 auto;
  opacity:.9;
  transition: transform .25s ease, opacity .25s ease;
}

.logo:hover{
  transform: scale(1.08);
  opacity:1;
}

.logo:hover{
  opacity:1;
  transform: translateY(-2px);
}

@keyframes logoScroll{
  from{ transform: translateX(0); }
  to{ transform: translateX(-50%); }
}

/* mobile */
@media (max-width: 600px){
  .logo img{ height:36px; }
}



.aboutGrid{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap:14px;
  align-items:stretch;
}

.aboutList{
  margin:10px 0 0;
  padding-left:18px;
  color:var(--muted);
}
.aboutList li{ margin:8px 0; }

.aboutTags{ display:flex; gap:8px; flex-wrap:wrap; margin-top:10px; }
.tag{
  font-size:12px;
  padding:7px 10px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.14);
  background:rgba(0,0,0,.18);
}

.aboutSteps{
  margin:0;
  padding-left:18px;
  color:var(--muted);
}
.aboutSteps li{ margin:10px 0; }

@media (max-width: 920px){
  .aboutGrid{ grid-template-columns:1fr; }
}


/* ===== About main text ===== */
.aboutMain{
  max-width:900px;
  margin:0 auto;
}

.aboutLangSwitch{
  display:flex;
  gap:8px;
  justify-content:flex-end;
  margin-bottom:12px;
}

.aboutMain__text{
  border-radius:18px;
  border:1px solid rgba(255,255,255,.10);
  background:rgba(255,255,255,.05);
  padding:22px;
}

.aboutMain__text h2{
  margin:0 0 10px;
  font-weight:950;
}

.aboutMain__text p{
  margin:10px 0;
  line-height:1.7;
  color:var(--text);
}

.is-hidden{
  display:none;
}


/* ===== About hero background ===== */
.aboutHero{
  position:relative;
  overflow:hidden;
}

.aboutHero__bg{
  position:absolute;
  inset:0;
  background-image: url("images/about-background.png"); /* <-- აქ ჩასვამ შენს ფოტოს */
  background-size: cover;
  background-position: center;
  filter: blur(0.5px);
  transform: scale(1.1); /* blur რომ არ ჩამოჭრას */
  opacity: .55;
}

.aboutHero::after{
  content:"";
  position:absolute;
  inset:0;
  background: linear-gradient(
    to bottom,
    rgba(10,12,18,.85),
    rgba(10,12,18,.75),
    rgba(10,12,18,.9)
  );
}

.aboutHero .container{
  position:relative;
  z-index:2;
}


/* =========================
   NEXUS WIDGET — FINAL
   CLEAN & STABLE VERSION
   ========================= */

/* Wrapper (თუ იყენებ) */
/* ===== Nexus Widget (vertical catalog look) ===== */

/* Wrapper (თუ იყენებ) */
/* ===== VEHICLE CATALOG CARD (clean) ===== */
.vcWrap{
  display:flex;
  justify-content:center;
}

.vcCard{
  width:min(820px, 100%);
  border-radius:20px;
  background: rgba(0,0,0,.45);
  border:1px solid rgba(255,255,255,.12);
  box-shadow: 0 18px 55px rgba(0,0,0,.55);
  overflow:hidden;
  backdrop-filter: blur(12px);
}

.vcCard__bar{
  padding:18px 20px;
  background: rgba(255,255,255,.06);
  border-bottom:1px solid rgba(255,255,255,.10);
}

.vcCard__title{
  margin:0;
  font-size:30px;
  font-weight:900;
  letter-spacing:.6px;
  text-transform:uppercase;
}

.vcCard__sub{
  margin:0;
  padding:14px 20px 6px;
  opacity:.9;
  line-height:1.55;
  max-width: 70ch;
}

.vcCard__body{
  padding: 14px 20px 20px;
}


/* CHANGED THIS :) */
.vcWidget{
  width:100%;
  max-width: 98%; /* <- change % to your liking*/
  margin: 0 auto;
  height: 100%;      /* <- do not set height in px, use % or other responsive unit */
}

/* #nexusWidget {
  border:0 !important;
  border-radius:12px;
  display:block;
  overflow:hidden;
} */

/* footer highlight */
.vcCard__footer{
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:14px;
  padding:14px 20px 18px;
  border-top:1px solid rgba(255,255,255,.10);
  background: rgba(0,0,0,.35);
}

.vcHint{
  font-size:13px;
  opacity:.9;
  line-height:1.4;
}

/* Mobile */
@media (max-width:768px){
  .vcCard__title{ font-size:24px; }
  .vcWidget{ max-width:100%; height: 680px; }
  .vcCard__footer{ flex-direction:column; align-items:flex-start; }
}





/* @media (max-width:768px){
  #nexusWidget iframe{ min-height:640px; }
  .catalogCard__title{ font-size:26px; }
  .catalogCard__footer{ flex-direction:column; align-items:flex-start; }
} */


/* widget iframe fit */
/* #nexusWidget iframe{
  width:100% !important;
  min-height:520px;
  border:0 !important;
  border-radius:14px;
  overflow:hidden;
  background: transparent;
} */

/* ===== Floating WhatsApp Button ===== */
.waFloat{
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 9999;

  width: 64px;
  height: 64px;
  border-radius: 50%;

  background: #25D366;
  display: grid;
  place-items: center;

  box-shadow: 0 14px 40px rgba(37,211,102,.55);
  text-decoration: none;

  animation: waFloatUpDown 3.5s ease-in-out infinite;
}

/* WhatsApp icon */
.waIcon{
  width: 34px;
  height: 34px;
  filter: brightness(0) invert(1);
  z-index: 2;
}

/* Pulse ring */
.waPulse{
  position:absolute;
  inset: -8px;
  border-radius:50%;
  background: rgba(37,211,102,.35);
  animation: waPulse 2.2s ease-out infinite;
  z-index: 1;
}

/* Hover */
.waFloat:hover{
  transform: scale(1.08);
}

/* Floating motion */
@keyframes waFloatUpDown{
  0%,100%{ transform: translateY(0); }
  50%{ transform: translateY(-6px); }
}

/* Pulse animation */
@keyframes waPulse{
  0%{
    transform: scale(.6);
    opacity:.9;
  }
  100%{
    transform: scale(1.6);
    opacity:0;
  }
}

/* Mobile tweak */
@media (max-width:480px){
  .waFloat{
    width: 58px;
    height: 58px;
    right: 16px;
    bottom: 16px;
  }

  .waIcon{
    width: 30px;
    height: 30px;
  }
}


.productsGrid--4{
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

/* Card */
.productCard{
  background: linear-gradient(180deg, #111 0%, #0a0a0a 100%);
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.08);
  display: flex;
  flex-direction: column;
}

/* Image */
.productCard__media img{
  width: 100%;
  height: 130px;
  object-fit: cover;
  display: block;
}

/* Content */
.productCard__content{
  padding: 5px;
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.productCard__title{
  font-size: 18px;
  font-weight: 600;
}

.productCard__params{
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 14px;
  color: #cfcfcf;
}

.productCard__params li{
  margin-bottom: 3px;
}

.productCard__price{
  font-weight: 600;
  margin-top: auto;
}

.productCard__actions{
  display: flex;
  gap: 10px;
  margin-top: 8px;
}

/* Responsive */
@media (max-width:1200px){
  .productsGrid--4{
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width:600px){
  .productsGrid--4{
    grid-template-columns: 1fr;
  }
}


.productCard__image{
  width:100%;
  height:160px;
  border-radius:14px;
  background: linear-gradient(135deg, #1e1e1e, #2c2c2c);
  margin-bottom:14px;
  overflow:hidden;
}

.productCard__image img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
}




/* Order Modal */
.orderModal{
  position: fixed;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

.orderModal.is-active{
  display: flex;
}

.orderModal__overlay{
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.6);
}

.orderModal__box{
  position: relative;
  z-index: 2;
  background: #111;
  border-radius: 16px;
  padding: 28px;
  max-width: 420px;
  width: 90%;
  text-align: center;
}

.orderModal__title{
  margin-bottom: 18px;
}

.orderModal__actions{
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

.orderModal__close{
  position: absolute;
  top: 12px;
  right: 12px;
  background: none;
  border: 0;
  color: #fff;
  font-size: 22px;
  cursor: pointer;
}



