
/* =============================================================================
   Veltoo — Refresh «Светлый минимал»  (overlay-слой)
   -----------------------------------------------------------------------------
   Изолированные правки витрины. Грузится ПОСЛЕ stylesheet.css.
   Принцип: ничего из базовых стилей не удаляем — только мягко переопределяем.
   Бренд сохранён: navy #15253A + red #DC2626, шрифт Inter.
   Идея направления: больше воздуха, белые карточки с тонкой рамкой,
   тень только на hover, спокойная типографика, акценты — дозированно.
   ============================================================================= */

:root {
  --vt-navy:          #15253A;
  --vt-red:           #DC2626;
  --vt-muted:         #6B7280;   /* вторичный текст / тихие иконки */
  --vt-line:          #E8EAEE;   /* hairline-границы карточек */
  --vt-surface:       #FFFFFF;
  --vt-radius:        12px;
  --vt-shadow-hover:  0 12px 30px rgba(21, 37, 58, .10);
  --vt-ease:          .25s cubic-bezier(.4, 0, .2, 1);
}

/* ---------------------------------------------------------------------------
   1. Воздух между секциями главной
   --------------------------------------------------------------------------- */
.categories-homepage-list      { padding-top: 2.5rem; padding-bottom: 1rem; }
#product-homepage-list.product-grid {
  grid-row-gap: 2rem;
  grid-column-gap: 1.75rem;
  margin-top: 1.5rem;
}

/* Заголовки секций — фирменный navy, чуть собраннее */
.categories-homepage-list h2,
.container > h2 {
  color: var(--vt-navy);
  letter-spacing: -0.01em;
}

/* ---------------------------------------------------------------------------
   2. Карточка категории (десктоп-сетка главной) — стиль Avito:
      название сверху-слева, фото крупно выглядывает из нижнего-правого угла.
      Скоуп :not(.mobile-category-item) — мобильную карусель не трогаем.
   --------------------------------------------------------------------------- */
.category-item:not(.mobile-category-item) {
  background: #F3F4F6;
  border: 0;
  border-radius: 12px;
  box-shadow: none;
  padding: 0;
  position: relative;
  overflow: hidden;
  display: block;
  transition: transform var(--vt-ease), box-shadow var(--vt-ease);
}
.category-item:not(.mobile-category-item):hover {
  transform: translateY(-3px);
  box-shadow: var(--vt-shadow-hover);
}
.category-item:not(.mobile-category-item) > a {
  display: flex;
  flex-direction: column;
  align-items: flex-start;        /* слева */
  justify-content: flex-start;    /* сверху */
  position: relative;
  min-height: 118px;
  height: 100%;
  padding: 1rem 1.05rem;
  text-align: left;
  overflow: hidden;
  border-radius: 12px;
}
.category-item:not(.mobile-category-item) .category-name {
  position: relative;
  z-index: 2;
  display: block;
  max-width: 62%;
  text-align: left;
  color: var(--vt-navy);
  font-size: .95rem;
  font-weight: 700;
  line-height: 1.25;
  padding-top: 0;        /* убираем лишний отступ сверху — текст в самый верх */
  margin: 0;
}
.category-item:not(.mobile-category-item) img {
  position: absolute;
  right: -8px;
  bottom: -8px;
  width: auto;
  height: 84px;
  max-width: 58%;
  margin: 0;
  display: block;
  object-fit: contain;
  transition: transform var(--vt-ease);
}
.category-item:not(.mobile-category-item):hover img { transform: scale(1.06); }

/* ---------------------------------------------------------------------------
   3. Карточка товара: белая, hairline-рамка, мягкий подъём + зум фото на hover
   --------------------------------------------------------------------------- */
.featured-thumb.product-thumb {
  background: var(--Default-gray-50, #F9FAFB);   /* серая плашка, как в старом дизайне */
  border: 0;
  border-radius: 12px;
  box-shadow: none;
  overflow: hidden;
  transition: transform var(--vt-ease), box-shadow var(--vt-ease);
}
.featured-thumb.product-thumb:hover {           /* новый аккуратный hover (старый не возвращаем) */
  transform: translateY(-4px);
  box-shadow: var(--vt-shadow-hover);
}

/* Название: компактнее, две строки вместо обрезки в одну, ровная высота карточек */
.product-thumb a.featured-thumb-item-name-link {
  font-size: 1.0625rem;          /* 17px вместо 24px */
  line-height: 1.4;
  font-weight: 600;
  color: var(--vt-navy);
  text-align: left;
  white-space: normal;           /* было nowrap → имя больше не обрезается */
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  min-height: 2.8em;             /* выравнивание соседних карточек */
  margin-top: .75rem;
}

/* ---------------------------------------------------------------------------
   4. Цена больше не выглядит кнопкой — это крупная цена-ссылка,
      действие (wishlist) уезжает в правый край ряда
   --------------------------------------------------------------------------- */
.product-thumb .thumb-buttons {
  display: flex;
  align-items: center;
  justify-content: space-between;
  column-gap: .75rem;
  margin-top: 1rem;
}
.product-thumb .thumb-buttons .btn.btn-primary {
  background: #E5E7EB !important;          /* светло-серая плашка-цена */
  border: 1px solid #E5E7EB !important;
  color: #111827 !important;               /* текст — чёрный */
  padding: .45rem .8rem !important;
  margin: 0 !important;
  border-radius: 12px !important;
  font-size: 1.15rem;
  font-weight: 700;
  line-height: 1.2;
}
.product-thumb .thumb-buttons .btn.btn-primary:hover {   /* заливается на hover */
  background: var(--vt-red) !important;
  color: #fff !important;
  border-color: var(--vt-red) !important;
  transform: none;
}

/* Wishlist — тихая серая иконка, краснеет и слегка растёт на hover */
.product-thumb .thumb-actions .icon-btn,
.product-thumb button.icon-btn {
  background: transparent;
  border: none;
  color: var(--vt-muted);
  font-size: 1.5rem;
  transition: color var(--vt-ease), transform var(--vt-ease);
}
.product-thumb button.icon-btn:hover {
  color: var(--vt-red);
  transform: scale(1.1);
}
.product-thumb .btn-added-to-wishlist {
  color: var(--vt-red);
}

/* 5. Поиск — возвращён к исходному дизайну (кастомные правки убраны по запросу). */

/* ---------------------------------------------------------------------------
   6. Мелочи: плавность ссылок, тоньше разделитель футера
   --------------------------------------------------------------------------- */
a { transition: color var(--vt-ease); }
.footer hr { border-color: rgba(255, 255, 255, .12); }

/* =============================================================================
   DEEP REFRESH — глубокий редизайн главной (hero, преимущества, секции, шапка)
   ============================================================================= */

/* ---- Sticky-шапка + лёгкая граница (только CSS, разметку не трогаем) ---- */
.main-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: #fff;
  border-bottom: 1px solid transparent;   /* линию-границу делаем невидимой */
}

/* Контактная строка в хедере — чипы-плашки (часы / e-mail / WhatsApp) */
.top-header .top-header-info-content { column-gap: .5rem; }
.top-header-info-content > span {
  display: inline-flex;
  align-items: center;
  font-size: .9rem;
  font-weight: 500;
  line-height: 1;
  white-space: nowrap;
  color: var(--vt-navy);
  background: #F3F4F6;
  border-radius: 10px;
  padding: .45rem .8rem;
  transition: background var(--vt-ease);
}
.top-header-info-content > span:hover { background: #E5E7EB; }
.top-header-info-content > span a { color: var(--vt-navy); text-decoration: none; }
.top-header-info-content > span i { color: var(--vt-navy); }
/* при открытом каталоге контакты остаются на месте, но без светлой плашки — не «светятся», просто тускнеют вместе с шапкой */
.main-menu-open .top-header-info-content > span,
.main-menu-open .top-header-info-content > span:hover { background: transparent; }
/* единый размер всех иконок (перебиваем базовое .veltoo-whatsapp 1.2rem) */
.top-header-info-content > span i,
.top-header-info-content i.veltoo-whatsapp { font-size: 1.1rem; }
/* глиф иконочного шрифта сидит чуть выше текста — опускаем на 1.5px для выравнивания */
.top-header-info-content > span i { position: relative; top: 1.5px; }
/* глиф часов рисуется на 2px ниже остальных — компенсируем, чтобы был на одном уровне */
.top-header-info-content i.veltoo-pace { top: -0.5px; }
/* у почты текст строчный (info@veltoo.az) — оптический центр ниже, опускаем конверт чтобы совпал с текстом */
.top-header-info-content i.veltoo-mail { top: 3px; }

/* Поиск в нижней панели — высота как у кнопки «Каталог» (40px), текст по центру */
@media (min-width: 768px) {
  .bottom-header form.search-form { height: 40px; padding-top: 0; padding-bottom: 0; align-items: center; }
  .bottom-header form.search-form input { height: 38px; line-height: 38px; padding-top: 0; padding-bottom: 0; }
}

/* Переключатель языка — тёмная пилюля с глобусом (как в референсе) */
.main-header .language-selector {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  height: auto;
  background: transparent;      /* без фона — простая строка */
  border: 0;                    /* убираем базовую рамку 2px */
  border-radius: 12px;
  padding: .4rem .6rem;
  font-weight: 600;
  line-height: 1;
  cursor: pointer;
  transition: background var(--vt-ease);
}
.main-header .language-selector:hover { background: #EDEFF2; }   /* серый фон при наведении */
.main-header .language-selector .language-icon {
  font-family: 'Material Symbols Outlined';
  font-weight: normal;
  font-style: normal;
  font-size: 23px;
  line-height: 1;
  display: inline-block;
  direction: ltr;
  white-space: nowrap;
  text-transform: none;
  letter-spacing: normal;
  -webkit-font-feature-settings: 'liga';
  font-feature-settings: 'liga';
  -webkit-font-smoothing: antialiased;
  font-variation-settings: 'FILL' 0, 'wght' 400, 'GRAD' 0, 'opsz' 23;
  color: var(--vt-muted);       /* иконка — приглушённая */
}
.main-header .language-selector .language-selector-text {
  text-transform: uppercase;
  font-size: 1.155rem;
  font-weight: 600;
  line-height: 1;
  color: #111827;               /* название языка — чёрным */
}

/* Иконка корзины — Material Symbols «local_mall» */
.cart-icon .cart-symbol {
  font-family: 'Material Symbols Outlined';
  font-weight: normal;
  font-style: normal;
  font-size: 28px;
  line-height: 1;
  display: inline-block;
  direction: ltr;
  white-space: nowrap;
  text-transform: none;
  letter-spacing: normal;
  -webkit-font-feature-settings: 'liga';
  font-feature-settings: 'liga';
  -webkit-font-smoothing: antialiased;
  font-variation-settings: 'FILL' 0, 'wght' 400, 'GRAD' 0, 'opsz' 28;
  color: var(--vt-navy);
}

/* ---- Контейнер: чуть шире и ровные поля ---- */
.container.mx-auto { max-width: 1240px; }

/* ---- Заголовок секции: акцент-бар слева + ссылка «Hamısı» ---- */
.vt-section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.5rem;
}
.vt-section-head--spaced { margin-top: 2.75rem; }   /* «Məhsullar» чуть ниже */
.vt-section-head h2 {
  position: relative;
  margin: 0;
  padding-left: .9rem;
  color: var(--vt-navy);
  letter-spacing: -0.01em;
}
.vt-section-head h2::before {
  content: "";
  position: absolute;
  left: 0; top: .12em; bottom: .12em;
  width: 5px;
  border-radius: 4px;
  background: var(--vt-red);
}
.vt-section-head__link {
  color: var(--vt-navy);
  font-weight: 600;
  font-size: .95rem;
  white-space: nowrap;
  cursor: pointer;
}
.vt-section-head__link:hover { color: var(--vt-red); }

/* ---------------------------------------------------------------------------
   HERO — брендовый баннер
   --------------------------------------------------------------------------- */
.vt-hero { margin: 1.25rem 0 2.5rem; }
.vt-hero__inner {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  background: linear-gradient(135deg, #15253A 0%, #213a5c 60%, #294a73 100%);
  color: #fff;
  padding: clamp(2rem, 5vw, 4rem);
  min-height: 320px;
  display: flex;
  align-items: center;
}
.vt-hero__track {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  width: 100%;
}
.vt-hero__text { position: relative; z-index: 2; max-width: 620px; }
.vt-hero__eyebrow {
  display: inline-block;
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: #9fb4cf;
  margin-bottom: 1rem;
}
.vt-hero__title {
  font-size: clamp(1.9rem, 4.2vw, 3.1rem);
  line-height: 1.08;
  font-weight: 800;
  color: #fff;
  margin: 0 0 1.1rem;
}
.vt-hero__title span { color: #ff6b6b; }
.vt-hero__subtitle {
  font-size: clamp(1rem, 1.4vw, 1.2rem);
  line-height: 1.6;
  color: #cdd8e6;
  margin: 0 0 2rem;
  max-width: 48ch;
}
.vt-hero__actions { display: flex; gap: 1rem; flex-wrap: wrap; }

.vt-btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .9rem 1.7rem;
  border-radius: 12px;
  font-weight: 600;
  font-size: 1.05rem;
  line-height: 1;
  cursor: pointer;
  border: 1px solid transparent;
  transition: all var(--vt-ease);
}
.vt-btn--primary { background: var(--vt-red); color: #fff; border-color: var(--vt-red); }
.vt-btn--primary:hover { background: #fff; color: var(--vt-navy); border-color: #fff; }
.vt-btn--ghost { background: rgba(255,255,255,.08); color: #fff; border-color: rgba(255,255,255,.28); }
.vt-btn--ghost:hover { background: rgba(255,255,255,.18); color: #fff; }

/* Декоративный glow за карточкой */
.vt-hero__blob {
  position: absolute;
  right: -60px; top: 50%;
  width: 360px; height: 360px;
  transform: translateY(-50%);
  background: radial-gradient(circle at 30% 30%, rgba(220,38,38,.35), transparent 62%);
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}

/* Правая колонка — карточка топ-товара с таймером «временной скидки» */
.vt-hero__inner--split { justify-content: space-between; }
.vt-hero__deal {
  position: relative;
  z-index: 1;
  flex: 0 0 35%;
  max-width: 380px;
  display: flex;
  flex-direction: column;
  gap: .8rem;
  padding: .9rem;
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: 12px;
  backdrop-filter: blur(4px);
}
.vt-hero__deal-media {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 190px;
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
}
.vt-hero__deal-media img { max-height: 168px; max-width: 88%; object-fit: contain; }
.vt-hero__deal-body { display: flex; flex-direction: column; gap: .5rem; }
.vt-hero__deal-label {
  align-self: flex-start;
  background: var(--vt-red);
  color: #fff;
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .05em;
  text-transform: uppercase;
  padding: .22rem .6rem;
  border-radius: 12px;
}
.vt-hero__deal-name {
  color: #fff;
  font-weight: 700;
  font-size: 1.15rem;
  line-height: 1.3;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.vt-hero__deal-name:hover { color: #fff; opacity: .85; }
.vt-hero__deal-price { color: #cdd8e6; font-weight: 700; font-size: 1.15rem; }
.vt-hero__timer {
  margin-top: .15rem;
  display: flex;
  flex-direction: column;
  gap: .1rem;
  padding: .55rem .75rem;
  background: rgba(0, 0, 0, .2);
  border-radius: 12px;
}
.vt-hero__timer-label { color: #9fb4cf; font-size: .7rem; text-transform: uppercase; letter-spacing: .05em; }
.vt-hero__timer-value { color: #fff; font-size: 1.5rem; font-weight: 800; font-variant-numeric: tabular-nums; letter-spacing: .02em; white-space: nowrap; }
.vt-hero__timer.is-ended .vt-hero__timer-value { color: #9fb4cf; }

/* Ряд: таймер + кнопка «İcarələ» рядом */
.vt-hero__deal-bottom { display: flex; align-items: stretch; gap: .55rem; margin-top: .15rem; }
.vt-hero__deal-bottom .vt-hero__timer { flex: 1 1 auto; margin-top: 0; }
.vt-hero__deal-btn {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 1.15rem;
  border-radius: 12px;
  background: var(--vt-red);
  border: 1px solid var(--vt-red);
  color: #fff;
  font-weight: 700;
  font-size: 1rem;
  white-space: nowrap;
  transition: all var(--vt-ease);
}
.vt-hero__deal-btn:hover { background: #fff; color: var(--vt-navy); border-color: #fff; }

/* Точки-пагинация слайдера hero — видны только в моб версии (см. media ≤768) */
.vt-hero__dots { display: none; }

@media (max-width: 991px) {
  .vt-hero__inner { align-items: stretch; }
  .vt-hero__track { flex-direction: column; align-items: stretch; }
  .vt-hero__text { max-width: 100%; }
  .vt-hero__deal { flex-basis: auto; max-width: 100%; }
}

/* ---------------------------------------------------------------------------
   ÜSTÜNLÜKLƏR — полоса преимуществ
   --------------------------------------------------------------------------- */
.vt-adv { margin: 0 0 2.75rem; }
.vt-adv__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}
.vt-adv__item {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: #fff;
  border: 1px solid var(--vt-line);
  border-radius: 12px;
  padding: 1.1rem 1.25rem;
  transition: transform var(--vt-ease), box-shadow var(--vt-ease), border-color var(--vt-ease);
}
.vt-adv__item:hover {
  transform: translateY(-3px);
  box-shadow: var(--vt-shadow-hover);
  border-color: transparent;
}
.vt-adv__item img { width: 40px; height: 40px; flex: 0 0 40px; object-fit: contain; }
.vt-adv__item b { display: block; color: var(--vt-navy); font-size: 1rem; line-height: 1.3; }
.vt-adv__item span { color: var(--vt-muted); font-size: .85rem; }
@media (max-width: 768px) {
  .vt-adv__grid { grid-template-columns: repeat(2, 1fr); gap: .6rem; }
  .vt-adv__item { padding: .85rem; border-radius: 12px; }
  .vt-adv__item img { width: 32px; height: 32px; flex-basis: 32px; }
}


/* ---- Футер: фирменный navy + аккуратные ссылки ---- */
.footer { background: var(--vt-navy); }
.footer a:hover { color: #fff; }
.footer a { transition: color var(--vt-ease); }

/* =============================================================================
   СТРАНИЦА КАТЕГОРИИ / ЛИСТИНГ
   ============================================================================= */

/* Хлебные крошки — спокойные, ховер красный, последний пункт акцентный */
#product-category .breadcrumb {
  margin: 1.25rem 0 .25rem;
}
#product-category .breadcrumb .breadcrumb-item { color: var(--vt-muted); }
#product-category .breadcrumb a.breadcrumb-item:hover { color: var(--vt-red); }
#product-category .breadcrumb .breadcrumb-item:last-child { color: var(--vt-navy); font-weight: 600; }

/* Заголовок */
#product-category .subtitle-header h1 { color: var(--vt-navy); letter-spacing: -0.01em; }

/* Сетка товаров — в один ритм с главной */
#product-list.product-grid { grid-column-gap: 1.75rem; grid-row-gap: 2rem; }

/* ===== Сортировка «Sırala»: кнопка + выпадающее меню (редизайн) ===== */
/* Кнопка */
.sort-selector.language-selector {
  display: inline-flex;
  align-items: center;
  height: 44px;
  background: #fff;
  border: 1px solid var(--vt-line);
  border-radius: 12px;
  padding: 0 .9rem;
  color: var(--vt-navy);
  cursor: pointer;
  transition: border-color var(--vt-ease), box-shadow var(--vt-ease), background var(--vt-ease);
}
.sort-selector.language-selector:hover { border-color: var(--vt-navy); box-shadow: var(--vt-shadow-hover); }
.sort-selector-dropdown.dropdown-open .sort-selector.language-selector { border-color: var(--vt-navy); }

.sort-selector .dropdown-toggle-text {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-size: .98rem;
  font-weight: 600;
  line-height: 1;
  color: var(--vt-navy);
}
.sort-selector .dropdown-toggle-text .sort-ico { flex: none; color: var(--vt-navy); }
/* Шеврон-аффорданс справа, вращается при открытии */
.sort-selector .dropdown-toggle-text::after {
  content: "";
  width: 7px;
  height: 7px;
  margin-left: .1rem;
  border-right: 2px solid var(--vt-muted);
  border-bottom: 2px solid var(--vt-muted);
  transform: rotate(45deg) translateY(-2px);
  transition: transform var(--vt-ease);
}
.sort-selector-dropdown.dropdown-open .sort-selector .dropdown-toggle-text::after {
  transform: rotate(-135deg) translateY(0);
}

/* Панель меню (не трогаем max-height/overflow — на них завязана анимация открытия) */
.sort-selector-dropdown.dropdown-menu > div {
  min-width: 244px;
  max-width: min(86vw, 320px);
  margin-top: .5rem;
  padding: .4rem;
  background: #fff;
  border: 1px solid var(--vt-line);
  border-radius: 14px;
  box-shadow: 0 16px 40px rgba(21, 37, 58, .14);
  text-align: left;
}
.sort-selector-dropdown ul.dropdown-menu-list { row-gap: 2px; }
.sort-selector-dropdown li.dropdown-menu-item { width: 100%; }
.sort-selector-dropdown li.dropdown-menu-item a {
  display: block;
  padding: .62rem .8rem;
  border-radius: 9px;
  font-size: .95rem;
  font-weight: 500;
  line-height: 1.35;
  color: var(--vt-navy);
  white-space: nowrap;
  transition: background var(--vt-ease), color var(--vt-ease);
}
/* убираем кривой scaleX, ставим аккуратную подсветку строки */
.sort-selector-dropdown li.dropdown-menu-item:hover a {
  transform: none;
  background: #F3F4F6;
  color: var(--vt-navy);
}

/* Сайдбар категорий */
.aside-category-list { margin-top: 1.5rem; }
.aside-category-list h2 {
  position: relative;
  padding-left: .85rem;
  margin-bottom: .5rem;
  font-size: 1.4rem;
  color: var(--vt-navy);
  letter-spacing: -0.01em;
}
.aside-category-list h2::before {
  content: "";
  position: absolute;
  left: 0; top: .15em; bottom: .15em;
  width: 5px;
  border-radius: 4px;
  background: var(--vt-red);
}
.aside-category-list-item {
  border: 1px solid var(--vt-line);
  border-radius: 12px;
  padding: 1rem 1.25rem;
  background: #fff;
}
.aside-category-list-item-name > a,
.aside-category-list-item > a { font-size: 1.05rem; }
.aside-category-list-item.active .aside-category-list-item-name > a { color: var(--vt-red); }
/* если выбрана подкатегория — родитель не красный, а тёмный (красный только у активной подкатегории) */
.aside-category-list-item.active:has(.aside-category-list-item-children a.active) .aside-category-list-item-name > a { color: var(--vt-navy); }
.aside-category-list-item-children a { color: var(--vt-navy); transition: color var(--vt-ease); }
.aside-category-list-item-children a:hover { color: var(--Orange); }   /* подкатегории — оранжевый при наведении */
.aside-category-list-item-children a.active { color: var(--vt-red); }  /* текущая — красный (вы здесь) */
.aside-category-list-item-children a::before { background: var(--vt-muted); }


/* =============================================================================
   СТРАНИЦА ТОВАРА
   ============================================================================= */

/* Заголовок + кнопка «Paylaş» */
.product-header-container h1 { color: var(--vt-navy); letter-spacing: -0.01em; }
button.share-button {
  border: 1px solid var(--vt-line);
  border-radius: 12px;
  height: 3rem;
  padding: 0 1rem;
  column-gap: .6rem;
  color: var(--vt-navy);
}
button.share-button span { font-size: 1rem; font-weight: 600; }
button.share-button > i { font-size: 1.25rem; }
button.share-button:hover { background: var(--vt-navy); border-color: var(--vt-navy); color: #fff; }

/* Галерея: hairline-рамка, активный thumbnail — navy */
div#swiper-product-info-left-image-slider {
  border: 1px solid var(--vt-line);
  border-radius: 12px;
}
.product-info-left-image-slider-thumbnails-item {
  border: 1px solid var(--vt-line);
  border-radius: 12px;
  overflow: hidden;
  transition: border-color var(--vt-ease);
}
.swiper-slide-thumb-active .product-info-left-image-slider-thumbnails-item { border-color: var(--vt-navy); }

/* Лейблы «Miqdar» / «Tarixləri seçin» */
span.product-quantity-container-label,
span.product-info-rent-dates-label { color: var(--vt-muted); font-size: 1rem; font-weight: 600; line-height: 1.4; }

/* Степпер количества и поле дат — опрятные поля */
.product-info-right-quantity {
  border: 1px solid var(--vt-line);
  border-radius: 12px;
  background: #fff;
  overflow: hidden;
}
.product-info-rent-dates-container {
  border: 1px solid var(--vt-line);
  border-radius: 12px;
  background: #fff;
  transition: border-color var(--vt-ease);
}
.product-info-rent-dates-container:focus-within { border-color: var(--vt-navy); }

/* Блок цены */
.product-info-price-container {
  background: #F3F4F6;
  border: 1px solid var(--vt-line);
  border-radius: 12px;
}
.product-info-price-container > span { color: var(--vt-muted); }
.product-info-price-container > span.product-info-price-container-price { color: var(--vt-navy); }

/* Кнопки действий: add-to-cart navy, второстепенная outline; hover красный */
button.product-actions-button {
  border: 1px solid var(--vt-line);
  border-radius: 12px;
  padding: .85rem 1.6rem;
}
button.product-actions-button > i { font-size: 1.5rem; }
button.product-actions-button.add-to-cart-button {
  background: var(--vt-navy);
  border-color: var(--vt-navy);
  color: #fff;
}
button.product-actions-button:hover { background: var(--vt-red); border-color: var(--vt-red); color: #fff; }

/* Вкладки — современные подчёркнутые */
ul.product-tabs {
  border-bottom: 1px solid var(--vt-line);
  column-gap: .25rem;
}
li.product-tab-item {
  padding: .75rem 1rem;
  border-radius: 0;
  background: transparent;
  color: var(--vt-muted);
  border-bottom: 2px solid transparent;
  margin-bottom: -1px;
  transition: color var(--vt-ease), border-color var(--vt-ease);
}
li.product-tab-item:hover { color: var(--vt-navy); }
li.product-tab-item.active-tab-link {
  background: transparent;
  color: var(--vt-navy);
  border-bottom-color: var(--vt-red);
}
li.product-tab-item a.product-tab-item-link { color: inherit; font-size: 1.05rem; font-weight: 600; }

/* Описание — читаемый блок */
div#product-description {
  background: var(--Default-gray-50, #F9FAFB);
  border: 1px solid var(--vt-line);
  border-radius: 12px;
  font-size: 1rem;
  line-height: 1.7;
  color: var(--vt-navy);
  padding: 1.25rem 1.5rem;
}

/* =============================================================================
   Плавные дропдауны (sırala, язык, аккаунт)
   Было: дёрганый max-height 0→1000px + transition:all.
   Стало: мягкий fade + лёгкий сдвиг/масштаб (панель и так position:absolute).
   ============================================================================= */
.dropdown-menu > div {
  max-height: none;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px) scale(.985);
  transform-origin: top right;
  transition: opacity .16s ease, transform .2s cubic-bezier(.16, 1, .3, 1), visibility .2s;
}
.dropdown-menu.dropdown-open > div {
  max-height: none;
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
}

/* =============================================================================
   ИНФО-СТРАНИЦЫ (Çatdırılma, Sual-Cavab, Haqqımızda, Məxfilik)
   ============================================================================= */

/* Заголовок страницы (без баннера) */
.information-page .breadcrumb { margin: 1rem 0 0; }
.information-page .vt-page-title {
  color: var(--vt-navy);
  font-weight: 800;
  letter-spacing: -0.01em;
  line-height: 1.1;
  font-size: clamp(1.8rem, 3.4vw, 2.4rem);
  margin: .5rem 0 1.75rem;
}

/* Контент — читаемая статья */
.vt-article { max-width: 880px; }
.vt-article:has(.vt-faq) { max-width: 1080px; }   /* FAQ-аккордеон — шире, чтобы вопрос был в одну строку */
.vt-article,
.vt-article p,
.vt-article li { font-size: 1.05rem; line-height: 1.85; color: #2b3a4d; }
.vt-article p { margin: 0 0 1.1rem; }
.vt-article a { color: var(--vt-red); text-decoration: underline; }
.vt-article strong { color: var(--vt-navy); font-weight: 700; }
/* Фолбэк без JS: вопрос FAQ как жирная строка */
.vt-article p > strong:first-child:has(+ br) { display: block; font-size: 1.15rem; color: var(--vt-navy); margin-bottom: .35rem; }

/* ---- FAQ-аккордеон (строится JS из <p><strong>Вопрос</strong><br>ответ</p>) ---- */
.vt-faq { display: flex; flex-direction: column; gap: 1rem; max-width: 100%; }
.vt-faq__item { background: #F3F4F6; border-radius: 12px; }
.vt-faq__head {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.15rem 1.5rem;
  background: transparent;
  border: 0;
  cursor: pointer;
  text-align: left;
  font: inherit;
}
.vt-faq__q { font-weight: 700; color: var(--vt-navy); font-size: 1.05rem; flex: 0 0 auto; max-width: 60%; }
.vt-faq__preview {
  color: var(--vt-muted);
  font-size: .95rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  flex: 1 1 auto;
  min-width: 0;
}
.vt-faq__chevron {
  margin-left: auto;
  flex: 0 0 2.25rem;
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 50%;
  background: #E5E7EB;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background .2s;
}
.vt-faq__chevron svg { width: 16px; height: 16px; color: var(--vt-navy); transition: transform .25s ease; }
.vt-faq__item.is-open .vt-faq__chevron { background: var(--vt-navy); }
.vt-faq__item.is-open .vt-faq__chevron svg { transform: rotate(180deg); color: #fff; }
.vt-faq__item.is-open .vt-faq__preview { display: none; }
.vt-faq__body { display: grid; grid-template-rows: 0fr; transition: grid-template-rows .28s ease; }
.vt-faq__item.is-open .vt-faq__body { grid-template-rows: 1fr; }
.vt-faq__body-inner { overflow: hidden; }
.vt-faq__answer { padding: 0 1.5rem 1.25rem; color: #2b3a4d; line-height: 1.8; font-size: 1.02rem; }
@media (max-width: 768px) {
  .vt-faq__preview { display: none; }
  .vt-faq__q { font-size: 1rem; }
  .vt-faq__head { padding: 1rem 1.1rem; gap: .75rem; }
  .vt-faq__answer { padding: 0 1.1rem 1.1rem; }
}

/* Компактнее залипающая (scrolled) шапка — нижняя строка чуть короче.
   Меняем только в состоянии .sticky, чтобы вверху страницы шапка осталась прежней. */
.bottom-header,
.bottom-header .menu-item { transition: padding var(--vt-ease); }
header.main-header.sticky .bottom-header { padding-top: .7rem; padding-bottom: .7rem; }
header.main-header.sticky .bottom-header .menu-item { padding-top: 1rem; padding-bottom: 1rem; }

/* =============================================================================
   Точечные правки: мобайл-шапка / преимущества / таймер
   ============================================================================= */

/* 4. ВЕБ: центрируем содержимое таймера в hero-карточке (было слишком влево) */
@media (min-width: 992px) {
  .vt-hero__timer { align-items: center; text-align: center; }
}

@media (max-width: 768px) {
  /* 1. Прячем полосу преимуществ (Geniş çeşid и т.д.) на мобайле */
  .vt-adv { display: none; }

  /* 3. Прячем переключатель языка в шапке — он есть в бургер-меню */
  .main-header .dropdown-menu:has(> .language-selector) { display: none; }

  /* 2. Кнопка İcarələ не вылезает за карточку — ужимаем ряд таймер+кнопка */
  .vt-hero__deal-bottom { gap: .5rem; }
  .vt-hero__deal-bottom .vt-hero__timer { min-width: 0; flex: 1 1 0; }
  .vt-hero__timer-value { font-size: 1.4rem; }
  .vt-hero__deal-btn { padding: 0 .9rem; font-size: .9rem; }
}

/* Плавная прокрутка по якорям + отступ цели под фиксированную шапку
   (кнопка «Məhsullara bax» ведёт на верх секции «Məhsullar») */
html { scroll-behavior: smooth; }
#mehsullar { scroll-margin-top: 100px; }

/* Hero-карточка товара с таймером — шире и крупнее текст (только десктоп),
   но БЕЗ прибавки к высоте hero: медиа/паддинг как раньше, чтобы высота не росла. */
@media (min-width: 992px) {
  .vt-hero__deal { flex: 0 0 40%; max-width: 437px; }
  .vt-hero__deal-media { height: 186px; }
  .vt-hero__deal-media img { max-height: 162px; }
  .vt-hero__deal-label { font-size: .8rem; }
  .vt-hero__deal-name { font-size: 1.3rem; }
  .vt-hero__deal-price { font-size: 1.3rem; }
  .vt-hero__timer-value { font-size: 1.95rem; }
  .vt-hero__deal-btn { font-size: 1.1rem; padding: 0 1.3rem; }
}

/* Поле выбора дат (товар): убрать серый фон внутри + уместить дату на мобайле */
.product-info-rent-dates-container > input { background: transparent; }
@media (max-width: 480px) {
  .product-info-rent-dates-container { max-width: 230px; }
  .product-info-rent-dates-container > input { font-size: .8rem; }
}

/* =============================================================================
   ФУТЕР — редизайн: лого + слоган + контакты + колонки
   ============================================================================= */
.footer { background: var(--vt-navy); color: #cdd8e6; border: 0; }
.footer-main { padding-top: 3rem; padding-bottom: 3rem; }

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1.7fr;
  grid-template-areas:
    "brand    company catalog"
    "contacts company catalog"
    "social   company catalog";
  column-gap: 2.5rem;
  row-gap: 1.3rem;
  align-items: start;
}
.footer-brand        { grid-area: brand; max-width: 380px; }
.footer-contacts     { grid-area: contacts; }
.footer-col--company { grid-area: company; }
.footer-col--catalog { grid-area: catalog; }
.footer-social       { grid-area: social; }

/* Бренд-блок */
.footer-logo { display: inline-block; font-size: 2rem; line-height: 1; margin-bottom: 1rem; }
.footer-logo i, .footer-logo i::before, .footer-logo [class^="path"]::before { color: #fff !important; }
.footer-tagline { color: #9fb4cf; font-size: 1rem; line-height: 1.65; margin: 0; }

/* Контакты */
.footer-contacts { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: .65rem; }
.footer-contacts li, .footer-contacts a { display: inline-flex; align-items: center; gap: .6rem; color: #cdd8e6; font-size: 1rem; }
.footer-contacts a:hover { color: #fff; }
.footer-contacts i { font-size: 1.25rem; color: #9fb4cf; flex: 0 0 auto; }

/* Заголовки колонок */
.footer h4 { color: #fff; font-size: 1.2rem; font-weight: 700; margin: 0 0 1.2rem; }

/* Списки ссылок */
.footer-col ul, .footer-catalog { list-style: none; padding: 0; margin: 0; }
.footer-col li, .footer-catalog li { margin-bottom: .75rem; }
.footer-col a, .footer-catalog a { color: #cdd8e6; font-size: 1rem; }
.footer-col a:hover, .footer-catalog a:hover { color: #fff; }
.footer-catalog { columns: 2; column-gap: 2rem; }
.footer-catalog li { break-inside: avoid; }

/* Соцсети */
.footer .social-links { display: flex; gap: 1rem; margin: 0; }
.footer .social-links a { color: #cdd8e6; font-size: 1.5rem; transition: color var(--vt-ease); }
.footer .social-links a:hover { color: #fff; }

/* Разделитель + нижняя строка */
.footer hr { border: 0; border-top: 1px solid rgba(255, 255, 255, .1); margin: 0; }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; gap: 1rem; padding: 1.4rem 0; color: #9fb4cf; font-size: .95rem; flex-wrap: wrap; }
.footer-bottom a { color: #cdd8e6; }
.footer-bottom a:hover { color: #fff; }

@media (max-width: 768px) {
  /* боковые отступы (базовая тема обнуляет padding контейнера на ≤480px) */
  .footer .container.mx-auto { padding-left: 1rem !important; padding-right: 1rem !important; }
  .footer-main { padding-top: 2rem; padding-bottom: 1.75rem; }
  /* 2 колонки: лого ↔ «Şirkət» в один ряд; контакты ↔ ссылки на одном уровне; соцсети — низ */
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-areas:
      "brand    company"
      "contacts company"
      "social   social";
    column-gap: 1.5rem;
    row-gap: 0;
    align-items: start;
  }
  .footer-brand { max-width: 100%; }
  .footer-tagline { display: none; }                 /* слоган — лишний на телефоне */
  .footer-col--catalog { display: none; }            /* категории есть в меню/бургере */

  /* лого и заголовок «Şirkət» одной высоты → строки ниже совпадают (Haqqımızda ↔ часы) */
  .footer-logo { display: block; font-size: 1.7rem; line-height: 1.7rem; height: 1.7rem; margin: 0 0 1rem; }
  .footer-col--company h4 { font-size: 1.15rem; line-height: 1.7rem; height: 1.7rem; margin: 0 0 1rem; display: flex; align-items: center; }
  .footer-contacts { gap: .8rem; }
  .footer-col--company li { margin-bottom: .8rem; }
  .footer-col--company li:last-child { margin-bottom: 0; }

  /* соцсети — по центру, в самом низу, чуть ниже */
  .footer .footer-social { justify-content: center; margin-top: 3.5rem; }

  /* низ: копирайт на 1-й строке; «Developed by» слева, «Məxfilik» — справа на 2-й строке */
  .footer-bottom { font-size: .8rem; padding: 1rem 0; gap: .35rem 1rem; justify-content: flex-start; }
  .footer-copyright { flex: 1 1 100%; }
  .footer-privacy { margin-left: auto; }
}

/* =============================================================================
   ЕДИНЫЙ РАДИУС 12px — кнопки и поля базовой темы тоже приводим к стандарту
   ============================================================================= */
.btn,
.form-control,
.form-select,
.input-group-text,
.dropdown-menu > div,
.smart-autocomplete-list,
.product-info-right-quantity,
.product-info-rent-dates-container { border-radius: 12px; }

/* обводка попапа результатов поиска (только когда есть результаты) */
.smart-autocomplete-list:not(:empty) {
  border: 1px solid #C8D0DB;
  box-shadow: 0 8px 24px rgba(21, 37, 58, .10);
}
/* пустой контейнер автокомплита не рисуем (иначе виден белый прямоугольник внутри поиска) */
.smart-autocomplete-list:empty { display: none; }
/* поле ввода прозрачное — показывает фон формы. Иначе при открытом каталоге его светлая плашка «всплывала» поверх затемнения белым прямоугольником */
.bottom-header form.search-form input { background: transparent; }
/* при наведении на результат — название оранжевым */
.smart-autocomplete-item > a { transition: color var(--vt-ease); }
.smart-autocomplete-item > a:hover,
.smart-autocomplete-item.active > a { color: var(--Orange); }

/* Страница входа/OTP — единый радиус 12px (была слишком круглой: форма 48px, поля/кнопки 24px) */
.login-form, .otp-form { border-radius: 12px; }
.login-form input, .otp-form input { border-radius: 12px; }
.login-form button.btn.btn-primary, .otp-form button.btn.btn-primary { border-radius: 12px; }
.otp-input-wrapper input { border-radius: 12px; }

/* =============================================================================
   СТРАНИЦЫ АККАУНТА (дашборд, заказы, форма, сайдбар)
   ============================================================================= */

/* Карточки дашборда — единый радиус 12px + лёгкий подъём на hover */
.account-info-block { border-radius: 12px; transition: transform var(--vt-ease), box-shadow var(--vt-ease), border-color var(--vt-ease); }
.account-info-block:hover { transform: translateY(-3px); box-shadow: var(--vt-shadow-hover); border-color: transparent; }
.account-info-block a { border-radius: 12px; }

/* Сайдбар аккаунта — ховер красным, активный пункт — аккуратная рамка-пилюля */
.account-sidebar > a { color: var(--vt-navy); border-radius: 12px; transition: color var(--vt-ease); }
.account-sidebar > a:hover { color: var(--vt-red); }
.account-sidebar > a.current { border: 1px solid var(--vt-line); border-radius: 12px; color: var(--vt-navy); font-weight: 600; }

/* Список заказов — без серого фона-контейнера, строки-карточки с hover */
.order-list-container { background: transparent; padding: 0; row-gap: .85rem; }
.order-item {
  border: 1px solid var(--vt-line);
  border-radius: 12px;
  transition: transform var(--vt-ease), box-shadow var(--vt-ease), border-color var(--vt-ease);
}
.order-item:hover { transform: translateY(-2px); box-shadow: var(--vt-shadow-hover); border-color: transparent; }
.order-item a i { color: var(--vt-navy); transition: color var(--vt-ease); }
.order-item a:hover i { color: var(--vt-red); }

/* Статусы заказов — по смыслу: успех/инфо/в процессе/негатив */
span.order-status {
  font-size: .85rem !important;
  font-weight: 600;
  line-height: 1.4 !important;
  padding: .35rem .85rem;
  border-radius: 12px;
  background: #EEF0F2;
  color: var(--vt-muted);
  white-space: nowrap;
}
.order-status-4.order-status,
.order-status-6.order-status,
.order-status-9.order-status  { background: rgba(22, 163, 74, .12); color: #15803d; }  /* оплачен / завершён / доставлен */
.order-status-1.order-status,
.order-status-2.order-status,
.order-status-5.order-status,
.order-status-10.order-status,
.order-status-13.order-status { background: rgba(37, 99, 235, .10); color: #1d4ed8; }  /* создан / подписан / обработан / готов / в аренде */
.order-status-3.order-status,
.order-status-11.order-status,
.order-status-12.order-status { background: rgba(217, 119, 6, .14); color: #b45309; }   /* оплачивается / доставляется / обрабатывается */
.order-status-7.order-status,
.order-status-8.order-status  { background: rgba(220, 38, 38, .10); color: #b91c1c; }   /* отменён / возврат */

/* Кнопка выхода — особое действие: outline с красным акцентом */
.btn-logout {
  background: transparent;
  border: 1px solid rgba(220, 38, 38, .35);
  border-radius: 12px;
  color: var(--vt-red);
}
.btn-logout:hover { background: var(--vt-red); border-color: var(--vt-red); color: #fff; }

/* =============================================================================
   Кнопка закрытия (offcanvas / модалки) — круглая серая, как в референсе
   ============================================================================= */
.offcanvas-header [data-bs-dismiss],
.modal-header [data-bs-dismiss] {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.4rem;
  height: 2.4rem;
  flex: 0 0 2.4rem;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: #EEF0F2;
  color: var(--vt-muted);
  transition: background var(--vt-ease), color var(--vt-ease);
}
.offcanvas-header [data-bs-dismiss]:hover,
.modal-header [data-bs-dismiss]:hover { background: #E2E5E9; color: var(--vt-navy); }
.offcanvas-header [data-bs-dismiss] i,
.modal-header [data-bs-dismiss] i { font-size: 1.05rem; line-height: 1; }

/* Курсор-рука на кликабельных иконках шапки (а не текстовый I-beam над глифом/текстом) */
.cart-icon, .cart-icon *,
.account-icon, .account-icon *,
.main-header .language-selector, .main-header .language-selector * { cursor: pointer; }

/* =============================================================================
   КОРЗИНА (drawer #cart-offcanvas) — редизайн: компактная карточка товара
   ============================================================================= */
#cart-offcanvas { width: 23rem; max-width: 92vw; }
#cart-offcanvas .offcanvas-body { padding: 0; display: flex; flex-direction: column; }
#cart-offcanvas .cart-list { display: flex; flex-direction: column; flex: 1 1 auto; min-height: 0; }
#cart-offcanvas .cart-list-item { flex: 1 1 auto; overflow-y: auto; padding: .5rem 1.1rem; }

/* карточка товара: фото слева, инфо справа */
#cart-offcanvas .mini-cart-list-item {
  display: flex;
  gap: .8rem;
  padding: .95rem 0;
}
#cart-offcanvas .mini-cart-list-item + .mini-cart-list-item {
  margin-top: 0;
  border-top: 1px solid #EEF1F5;
}
.mcart-thumb {
  flex: 0 0 64px;
  width: 64px; height: 64px;
  display: flex; align-items: center; justify-content: center;
  background: #F7F8FA;
  border: 1px solid #EEF1F5;
  border-radius: 10px;
  overflow: hidden;
}
.mcart-thumb img { width: 100%; height: 100%; object-fit: contain; }
.mcart-info { flex: 1 1 auto; min-width: 0; display: flex; flex-direction: column; gap: .28rem; }
.mcart-head { display: flex; align-items: flex-start; justify-content: space-between; gap: .5rem; }
.mcart-name {
  margin: 0; font-size: .94rem; font-weight: 600; line-height: 1.25;
  color: var(--vt-navy);
}
.mcart-remove {
  flex: 0 0 auto; padding: 2px; background: transparent; border: 0; cursor: pointer;
  color: var(--vt-muted); font-size: 1.15rem; line-height: 1;
  transition: color var(--vt-ease);
}
.mcart-remove:hover { color: var(--vt-red); }
.mcart-price { display: flex; gap: .3rem; font-size: .82rem; color: var(--vt-muted); }
.mcart-price-val { color: var(--vt-navy); font-weight: 500; }
.mcart-bottom {
  display: flex; align-items: center; justify-content: space-between;
  gap: .5rem; margin-top: .35rem;
}
.mcart-total { display: flex; align-items: baseline; gap: .3rem; font-size: .82rem; color: var(--vt-muted); }
.mcart-total-val { color: var(--vt-navy); font-weight: 700; font-size: 1rem; }

/* степпер в корзине — компактный */
#cart-offcanvas .quantity-input-wrapper { padding: .22rem .55rem; column-gap: .35rem; }
#cart-offcanvas .quantity-input-wrapper input { width: 1.7rem; font-size: .95rem; }

/* футер: итог + кнопка оплаты, прижат к низу */
#cart-offcanvas .mini-cart-list-main-actions {
  flex: 0 0 auto;
  margin: 0;
  padding: 1rem 1.1rem 1.1rem;
  border-top: 1px solid #E5E7EB;
  background: #fff;
}
.mcart-summary {
  display: flex; align-items: baseline; justify-content: space-between;
  margin-bottom: .85rem;
}
.mcart-summary-label { font-size: .95rem; color: var(--vt-muted); }
.mcart-summary-val { font-size: 1.35rem; font-weight: 800; color: var(--vt-navy); }
#cart-offcanvas .mini-cart-list-main-actions .btn-primary {
  display: block; width: 100%; text-align: center; margin: 0;
}

/* Моб: компактнее текстовая часть hero (карточку товара с таймером оставляем ~как есть) */
@media (max-width: 768px) {
  .vt-hero { margin: .75rem 0 1.75rem; }
  .vt-hero__inner { padding: 1.35rem 0; min-height: 0; gap: 1rem; }
  .vt-hero__eyebrow { font-size: .68rem; margin-bottom: .5rem; }
  .vt-hero__title { font-size: 1.5rem; line-height: 1.15; margin-bottom: .55rem; }
  .vt-hero__subtitle { font-size: .9rem; line-height: 1.5; margin-bottom: 1rem; }
  .vt-hero__actions .vt-btn { padding: .7rem 1.3rem; font-size: .95rem; }
  /* карточка — чуть меньше */
  .vt-hero__deal-media { height: 165px; }
  .vt-hero__deal-media img { max-height: 145px; }

  /* Убираем «плашку-фон» за товаром — контент лежит прямо на hero, без двойной рамки */
  .vt-hero__deal {
    background: transparent;
    border: 0;
    padding: 0;
    -webkit-backdrop-filter: none;
    backdrop-filter: none;
  }
  /* Часы — по центру своей секции */
  .vt-hero__deal-bottom .vt-hero__timer { align-items: center; text-align: center; }

  /* Слайдер: слайд 1 = текст, слайд 2 = карточка товара с таймером */
  .vt-hero__inner { overflow: hidden; flex-direction: column; align-items: stretch; touch-action: pan-y; }
  .vt-hero__track {
    flex-direction: row;
    align-items: center;
    gap: 0;
    transition: transform .38s cubic-bezier(.22, .61, .36, 1); /* бодрый ease-out на «доводку» */
    will-change: transform;
    touch-action: pan-y;          /* вертикаль — браузеру, горизонталь — нам (без задержки) */
    -webkit-user-select: none;
    user-select: none;
  }
  .vt-hero__slide { flex: 0 0 100%; min-width: 100%; box-sizing: border-box; padding: 0 1.2rem; }
  /* точки выравниваем по тому же отступу */
  .vt-hero__dots { padding: 0 1.2rem; }

  /* Точки-пагинация (как в референсе) — снизу по центру, ничего не перекрывают */
  .vt-hero__dots {
    display: flex;
    justify-content: center;
    gap: .4rem;
    margin-top: 1.1rem;
  }
  .vt-hero__dot {
    width: 26px; height: 4px;
    padding: 0; margin: 0; border: 0;
    border-radius: 999px;
    background: rgba(255, 255, 255, .35);
    cursor: pointer;
    transition: background var(--vt-ease), width var(--vt-ease);
  }
  .vt-hero__dot.is-active { background: #fff; width: 34px; }
}

/* ===========================================================================
   ГЛАВНАЯ HERO: баннеры (слева) + виджет «Günün məhsulları» (справа)
   =========================================================================== */
.vt-hp-hero { margin: 1.25rem 0 2rem; }
.vt-hp-hero__grid { display: flex; gap: .55rem; align-items: stretch; }
.vt-hp-hero__banners { flex: 1 1 auto; min-width: 0; }
.vt-hp-hero__deals { flex: 0 0 376px; min-width: 0; }

/* ── Баннеры ── */
.vt-banner__swiper { position: relative; height: 330px; border-radius: 12px; overflow: hidden; }
.vt-banner__swiper .swiper-wrapper { height: 100%; }
.vt-banner__slide { height: 100%; }
.vt-banner__link { display: block; height: 100%; }
.vt-banner__slide img { display: block; width: 100%; height: 100%; object-fit: cover; border-radius: 12px; }

/* первый слайд — прежний текстовый баннер */
.vt-banner__intro {
  display: flex; align-items: center;
  padding: clamp(1.4rem, 3vw, 2.6rem);
  background: linear-gradient(135deg, #15253A 0%, #213a5c 60%, #294a73 100%);
  color: #fff; border-radius: 12px;
}
.vt-banner__intro-inner { max-width: 600px; }
.vt-banner__eyebrow {
  display: inline-block; font-size: .86rem; font-weight: 600; letter-spacing: .08em;
  text-transform: uppercase; color: #9fb4cf; margin-bottom: .7rem;
}
.vt-banner__title {
  font-size: clamp(1.8rem, 3vw, 2.85rem); line-height: 1.08; font-weight: 800;
  color: #fff; margin: 0 0 .65rem;
}
.vt-banner__title span { color: #ff6b6b; }
.vt-banner__subtitle {
  font-size: clamp(1.05rem, 1.45vw, 1.3rem); line-height: 1.5; color: #cdd8e6;
  margin: 1.2rem 0 0; max-width: 46ch;
}

/* стрелки — только десктоп */
.vt-banner__nav {
  position: absolute; top: 50%; transform: translateY(-50%);
  z-index: 5; width: 2.2rem; height: 2.2rem; padding: 0; margin: 0;
  display: none; align-items: center; justify-content: center;
  border: 1px solid rgba(255, 255, 255, .18); border-radius: 50%;
  background: rgba(255, 255, 255, .1);
  -webkit-backdrop-filter: blur(7px); backdrop-filter: blur(7px);
  color: #fff; opacity: .45;
  box-shadow: none; cursor: pointer;
  transition: background var(--vt-ease), opacity var(--vt-ease);
}
.vt-banner__nav:hover { background: rgba(255, 255, 255, .4); opacity: 1; }
.vt-banner__nav svg { width: 20px; height: 20px; display: block; }
.vt-banner__prev { left: .8rem; right: auto; }
.vt-banner__next { right: .8rem; left: auto; }
@media (min-width: 769px) {
  .vt-banner__nav { display: inline-flex; }
  /* текст правее, чтобы левая стрелка не перекрывала */
  .vt-banner__intro { padding-left: 4.6rem; padding-right: 3.4rem; }
}

/* точки */
.vt-banner__pagination {
  position: absolute; bottom: .7rem; left: 0; right: 0; z-index: 5;
  display: flex; justify-content: center; gap: .4rem;
}
.vt-banner__pagination .swiper-pagination-bullet {
  width: 26px; height: 4px; border-radius: 999px;
  background: rgba(255, 255, 255, .55); opacity: 1; margin: 0 !important;
  transition: background var(--vt-ease), width var(--vt-ease);
}
.vt-banner__pagination .swiper-pagination-bullet-active { background: #fff; width: 34px; }

/* ── Виджет «Günün məhsulları» (правая колонка) ── */
.vt-deals2 {
  position: relative; height: 100%;
  display: flex; flex-direction: column;
  background: #fff; border: 1px solid #C8D0DB; border-radius: 12px;
  box-shadow: 0 1px 6px rgba(21, 37, 58, .05);
  padding: .85rem 1rem;
}
.vt-deals2__head { display: flex; flex-direction: column; align-items: center; gap: .9rem; margin-bottom: .75rem; }
.vt-deals2__title { font-weight: 800; font-size: 1.6rem; color: var(--vt-navy); white-space: nowrap; line-height: 1.1; }
.vt-deals2__timer { display: inline-flex; align-items: center; gap: .12rem; }
.vt-cd {
  display: inline-flex; align-items: center; justify-content: center;
  min-width: 2.3rem; padding: .3rem .42rem;
  background: #EEF1F5; border-radius: 6px;
  font-weight: 800; font-size: 1.1rem; color: var(--vt-navy);
  font-variant-numeric: tabular-nums;
}
.vt-cd__sep { color: var(--vt-muted); font-weight: 700; font-style: normal; font-size: 1.05rem; }
.vt-cd-days {
  display: inline-flex; align-items: center; justify-content: center;
  padding: .3rem .5rem;
  background: #EEF1F5; border-radius: 6px;
  font-weight: 800; font-size: 1.04rem; color: var(--vt-navy);
  margin-right: .18rem; white-space: nowrap;
}
.vt-cd-days:empty { display: none; }

/* таймер «товара дня» — по центру под заголовком «Günün məhsulu», свой у каждого слайда (evergreen) */
.vt-deals2__swiper .swiper-slide { display: flex; flex-direction: column; height: 100%; }
.vt-deals2__swiper .vt-deals2__timer { align-self: center; justify-content: center; margin-bottom: .55rem; }
.vt-deals2__swiper .vt-cd { min-width: 1.9rem; padding: .24rem .34rem; font-size: .98rem; }
.vt-deals2__swiper .vt-cd-days { padding: .24rem .4rem; font-size: .92rem; }

/* контент чуть уже + отступы по бокам, чтобы зоны стрелок были свободны */
.vt-deals2__swiper { flex: 1 1 auto; min-height: 0; width: 100%; padding: 0; }
.vt-deals2__swiper .swiper-wrapper { height: 100%; }
/* внутренний отступ карточки — отодвигает товар от стрелок (раньше стрелки наезжали на товар) */
.vt-deals2__card { display: flex; align-items: center; gap: .7rem; flex: 1 1 auto; min-height: 0; padding: 0 1.5rem; }
.vt-deals2__media { flex: 0 0 48%; display: flex; align-items: center; justify-content: center; min-width: 0; }
.vt-deals2__media img { max-width: 100%; max-height: 175px; object-fit: contain; }
.vt-deals2__info { flex: 1 1 auto; min-width: 0; display: flex; flex-direction: column; gap: .4rem; }
.vt-deals2__price { font-size: 1.65rem; font-weight: 800; color: var(--vt-navy); line-height: 1.1; }
.vt-deals2__name {
  font-size: .9rem; line-height: 1.35; color: var(--vt-navy);
  display: -webkit-box !important; -webkit-line-clamp: 2; line-clamp: 2;
  -webkit-box-orient: vertical; overflow: hidden; text-overflow: ellipsis;
}
.vt-deals2__btn {
  margin-top: .2rem; align-self: flex-start;
  display: inline-flex; align-items: center; justify-content: center;
  padding: .58rem 1.9rem; border-radius: 12px;
  background: var(--vt-red); border: 1px solid var(--vt-red); color: #fff;
  font-weight: 700; font-size: .95rem; white-space: nowrap;
  transition: all var(--vt-ease);
}
.vt-deals2__btn:hover { background: var(--vt-navy); border-color: var(--vt-navy); color: #fff; }

/* стрелки виджета (на всех экранах — это основной способ листать) */
/* тонкие шевроны без фона — выглядят аккуратнее */
.vt-deals2__nav {
  position: absolute; top: 50%; transform: translateY(-50%);
  z-index: 4; width: 1.5rem; height: 2.6rem; padding: 0; margin: 0;
  display: inline-flex; align-items: center; justify-content: center;
  border: 0; border-radius: 0;
  background: none; -webkit-backdrop-filter: none; backdrop-filter: none;
  box-shadow: none; opacity: .45;
  color: var(--vt-navy); cursor: pointer;
  transition: opacity var(--vt-ease), color var(--vt-ease);
}
.vt-deals2__nav:hover { opacity: 1; color: var(--vt-red); }
.vt-deals2__nav svg { width: 26px; height: 26px; display: block; }
.vt-deals2__prev { left: -.05rem; }
.vt-deals2__next { right: -.05rem; }

/* стек на планшете/мобайле: баннеры сверху, виджет снизу */
@media (max-width: 991px) {
  .vt-hp-hero__grid { flex-direction: column; }
  .vt-hp-hero__deals { flex-basis: auto; }
  .vt-deals2 { min-height: 180px; }
  .vt-banner__swiper { height: 220px; }
}
@media (max-width: 575px) {
  .vt-deals2__media { flex-basis: 40%; }
  .vt-deals2__price { font-size: 1.3rem; }
  .vt-deals2__prev { left: -.25rem; }
  .vt-deals2__next { right: -.25rem; }
  .vt-banner__swiper { height: 215px; }
  .vt-banner__intro { padding: 1.1rem 1.25rem; }
  .vt-banner__intro .vt-banner__eyebrow { margin-bottom: .45rem; }
  .vt-banner__intro .vt-banner__subtitle { display: block; font-size: .82rem; line-height: 1.4; margin: .85rem 0 0; max-width: 100%; }
  .vt-banner__title { font-size: 1.3rem; line-height: 1.12; margin-bottom: .55rem; }
  .vt-banner__intro .vt-btn { padding: .6rem 1.2rem; font-size: .92rem; }
}

/* ── Моб-карусель hero: баннер → товар → баннер → товар (только < 768px) ── */
.vt-hp-hero__mobile { display: none; }
@media (max-width: 767px) {
  .vt-hp-hero__grid { display: none; }
  .vt-hp-hero__mobile { display: block; }
}
.vt-hpm__swiper { height: 235px; border-radius: 12px; overflow: hidden; }
.vt-hpm__swiper .swiper-wrapper { height: 100%; }
.vt-hpm__slide { height: 100%; }
.vt-hpm__slide.vt-banner__intro { height: 100%; margin: 0; }
/* оба текстовых баннера на мобайле одного размера (перебиваем h1 !important темы) */
.vt-hpm__slide.vt-banner__intro .vt-banner__title { font-size: 2rem !important; line-height: 1.12 !important; }
.vt-hpm__slide.vt-banner__slide img { width: 100%; height: 100%; object-fit: cover; }
.vt-hpm__deal {
  display: flex; flex-direction: column; height: 100%;
  background: #fff; border: 1px solid var(--vt-line); border-radius: 12px;
  padding: .85rem 1rem;
}
.vt-hpm__deal-head { display: flex; align-items: center; justify-content: space-between; gap: .35rem; margin-bottom: .5rem; }
/* таймер в моб-карточке компактнее, чтобы влезал вместе с секундами */
.vt-hpm__deal-head .vt-deals2__title { font-size: .95rem; font-weight: 700; } /* моб: шрифт заголовка как был */
.vt-hpm__deal-head .vt-cd { min-width: 1.65rem; padding: .22rem .26rem; font-size: .9rem; border-radius: 5px; }
.vt-hpm__deal-head .vt-cd-days { padding: .22rem .34rem; font-size: .86rem; margin-right: .12rem; }
.vt-hpm__deal-head .vt-cd__sep { font-size: .88rem; }
.vt-hpm__deal .vt-deals2__card { flex: 1 1 auto; padding: 0; align-items: flex-start; padding-top: 1.1rem; } /* моб: товар чуть ниже */
.vt-hpm__pagination { display: flex; justify-content: center; gap: .4rem; margin-top: .9rem; }
.vt-hpm__pagination .swiper-pagination-bullet {
  width: 22px; height: 4px; border-radius: 999px;
  background: var(--vt-line); opacity: 1; margin: 0 !important;
  transition: background var(--vt-ease), width var(--vt-ease);
}
.vt-hpm__pagination .swiper-pagination-bullet-active { background: var(--vt-navy); width: 30px; }

/* ===========================================================================
   КАТАЛОГ-МЕГАМЕНЮ
   =========================================================================== */
/* категории — красный при наведении (подкатегории уже оранжевые) */
.menu-list-container a.menu-link:hover,
.menu-list-container a.menu-link:hover > span { color: var(--vt-red); }

/* надпись «Kataloq» — line-height:1, чтобы текст был ровно по центру плашки (а не чуть выше) */
.main-menu-button span { line-height: 1; }

/* кнопка «Каталог»: убираем фикс. min-width 160px (из-за него справа оставалось пустое место) — плашка обнимает контент с равными отступами */
button.main-menu-button { min-width: 0; width: auto; }

/* открытое состояние: иконка menu_open (Material Symbols) вместо крестика */
.main-menu-open button.menu-button i { transform: none; }
.main-menu-open button.menu-button i:before {
  font-family: 'Material Symbols Outlined' !important;
  content: "menu_open";
  font-size: 24px;
  font-weight: normal;
}

/* чуть мягче белая «подсветка» вокруг попапа при открытии каталога */
.main-menu-open .menu-list-container { box-shadow: 0 2px 12px 0 rgba(255, 255, 255, .26); }

/* при открытом каталоге вторичные ссылки (Çatdırılma, Sual-Cavab) неактивны — кликаются только каталог и поиск */
.main-menu-open .main-menu-list { pointer-events: none; }

/* при открытом каталоге прячем hero-блок, чтобы он не вылезал поверх затемнения */
body.main-menu-open .vt-hp-hero { visibility: hidden; }

/* ── Запрет выделения/копирования текста: hero (баннер + товары дня) и полоса преимуществ ── */
.vt-hp-hero,
.vt-adv {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

/* ── Десктоп: степпер количества (−1+) чуть уже ── */
@media (min-width: 769px) {
  .quantity-input-wrapper input { width: 1.9rem; }
  .quantity-input-wrapper { column-gap: .55rem; padding-left: .55rem; padding-right: .55rem; }
}

/* нет в наличии: степпер показывает 0 и заблокирован */
.quantity-input-wrapper.quantity-out-of-stock { opacity: .5; }
.quantity-input-wrapper.quantity-out-of-stock button,
.quantity-input-wrapper.quantity-out-of-stock input { cursor: not-allowed; }

/* хлебные крошки — чуть меньше шрифт (системно) */
.breadcrumb { font-size: 1.05rem; }

/* категория: отступ сайдбар→товары = шагу сетки товаров (1.75rem) вместо 1.5rem — чтобы отступы были равные */
.aside-category-list-content { padding-right: 1.75rem; }

/* категория: чуть меньше верхний отступ (шапка → хлебные крошки) на десктопе */
@media (min-width: 768px) {
  #product-category { padding-top: 1.5rem; }
}

/* «Səbətə əlavə et» когда товар уже в корзине (сток исчерпан) — не кликается */
button.product-actions-button.add-to-cart-button.add-to-cart-button--incart,
button.product-actions-button.add-to-cart-button[disabled] {
  cursor: not-allowed !important;
  pointer-events: none !important;
}

/* Моб: кнопки товара (Səbətə əlavə et / Sürətli sifariş) — в ряд, текст в одну строку (компактнее, чтобы влезли) */
@media (max-width: 767.98px) {
  .product-info-right-container-row .product-actions { flex-direction: row; flex-wrap: nowrap; align-items: stretch; gap: .5rem; width: 100%; }
  .product-info-right-container-row .product-actions .product-actions-button {
    flex: 1 1 0; min-width: 0; white-space: nowrap;
    justify-content: center; column-gap: .35rem;
    padding-left: .5rem; padding-right: .5rem;
    font-size: .82rem;
  }
  .product-info-right-container-row .product-actions .product-actions-button i { font-size: .95rem; }
}

/* модалка быстрого заказа: кнопка «Sifariş et» по центру и чуть шире */
#modal-quick-order .modal-footer { justify-content: center; }
#modal-quick-order .modal-footer .btn-primary { min-width: 55%; }
