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

/* ─── КОНТЕЙНЕР ─── */
.container {
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 24px;
}

@media (max-width: 768px) {
  .container { padding: 0 0px; }
}



html, body {
  overflow-x: hidden;
  max-width: 100%;
}

* {
  box-sizing: border-box;
}

body {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  color: #ffffff;
  background: #1a1a1a;
  font-family: Roboto, sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.5;
  margin: 0;
  padding: 0;
  text-rendering: optimizeSpeed;
}

/* ─── НАВБАР ─── */
.navbar-custom {
  background: #0f0f0f;
  height: 64px;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding: 0 2rem;
  width: 100%;
  position: relative;
  z-index: 100;
}

/* ─── ЛОГО ─── */
.navbar-custom .logo {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.6rem;
  letter-spacing: 2px;
  color: #fff;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}

.logo-dot {
  width: 8px;
  height: 8px;
  background: #e85d30;
  border-radius: 50%;
  flex-shrink: 0;
}

/* ─── КНОПКА КАТАЛОГ ─── */
.catalog-btn-wrap {
  position: relative;
  flex-shrink: 0;
}

.catalog-btn {
  background: #e85d30;
  border: none;
  border-radius: 6px;
  color: #fff;
  font-family: 'Manrope', sans-serif;
  font-size: 13px;
  font-weight: 700;
  padding: 0 16px;
  height: 38px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: background 0.2s;
  white-space: nowrap;
}

.catalog-btn:hover { background: #cf4f25; }

.catalog-arrow { transition: transform 0.2s; }
.catalog-btn-wrap:hover .catalog-arrow { transform: rotate(180deg); }

/* ─── МЕГАМЕНЮ ─── */
.mega-menu {
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  background: #161616;
  border: 1px solid #2e2e2e;
  border-radius: 10px;
  padding: 1rem;
  width: 500px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition: opacity 0.2s, transform 0.2s, visibility 0.2s;
  z-index: 200;
}

.catalog-btn-wrap:hover .mega-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.mega-menu-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 12px;
  border-radius: 8px;
  text-decoration: none;
  color: #999;
  font-family: 'Manrope', sans-serif;
  font-size: 13px;
  font-weight: 500;
  border: 1px solid transparent;
  transition: background 0.15s, color 0.15s, border-color 0.15s;
}

.mega-menu-item:hover {
  background: #1e1e1e;
  border-color: #2e2e2e;
  color: #fff;
  text-decoration: none;
}

.mega-menu-icon {
  width: 36px;
  height: 36px;
  background: #1e1e1e;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 17px;
  transition: background 0.15s;
}

.mega-menu-item:hover .mega-menu-icon { background: #e85d30; }

.mega-menu-title {
  font-weight: 600;
  color: inherit;
  display: block;
  margin-bottom: 2px;
  font-size: 13px;
}

.mega-menu-sub {
  font-size: 11px;
  color: #555;
  display: block;
}

.mega-menu-footer {
  grid-column: 1 / -1;
  border-top: 1px solid #2e2e2e;
  margin-top: 4px;
  padding-top: 10px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.mega-menu-footer span {
  font-family: 'Manrope', sans-serif;
  font-size: 12px;
  color: #555;
}

.mega-menu-footer a {
  font-family: 'Manrope', sans-serif;
  font-size: 12px;
  color: #e85d30;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.2s;
}

.mega-menu-footer a:hover { color: #fff; }

/* ─── ПОИСК ─── */
.search-wrap {
  position: relative;
  flex: 1;
  min-width: 0;
  max-width: 380px;
}

.search-wrap input {
  width: 100%;
  height: 38px;
  background: #1e1e1e;
  border: 1px solid #2e2e2e;
  border-radius: 6px;
  color: #fff;
  font-family: 'Manrope', sans-serif;
  font-size: 13px;
  padding: 0 38px 0 14px;
  outline: none;
  transition: border-color 0.2s;
}

.search-wrap input::placeholder { color: #555; }
.search-wrap input:focus { border-color: #e85d30; }

.search-icon-btn {
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  cursor: pointer;
  color: #555;
  display: flex;
  align-items: center;
  padding: 0;
  transition: color 0.2s;
}

.search-icon-btn:hover { color: #e85d30; }

/* ─── НАВИГАЦИЯ ─── */
.nav-links {
  display: flex;
  list-style: none;
  flex-shrink: 0;
  margin-left: auto;
}

.nav-links a {
  color: #999;
  text-decoration: none;
  font-family: 'Manrope', sans-serif;
  font-size: 13px;
  font-weight: 500;
  padding: 0 1rem;
  height: 64px;
  display: flex;
  align-items: center;
  border-bottom: 2px solid transparent;
  white-space: nowrap;
  transition: color 0.2s, border-color 0.2s;
}

.nav-links a:hover {
  color: #fff;
  border-bottom-color: #e85d30;
}

/* ─── КОРЗИНА ─── */
.cart-btn {
  position: relative;
  background: none;
  border: none;
  cursor: pointer;
  color: #999;
  display: flex;
  align-items: center;
  padding: 0;
  flex-shrink: 0;
  transition: color 0.2s;
}

.cart-btn:hover { color: #fff; }

.cart-badge {
  position: absolute;
  top: -8px;
  right: -8px;
  background: #e85d30;
  color: #fff;
  border-radius: 50%;
  width: 17px;
  height: 17px;
  font-size: 10px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Manrope', sans-serif;
}

/* ─── БУРГЕР ─── */
.burger-btn {
  background: none;
  border: none;
  cursor: pointer;
  color: #999;
  display: flex;
  align-items: center;
  padding: 0;
  flex-shrink: 0;
  transition: color 0.2s;
}

.burger-btn:hover { color: #fff; }

/* ─── МОБИЛЬНЫЙ ПОИСК ─── */
.mobile-search-bar {
  background: #1a1a1a;
  padding: 10px 1rem;
  border-bottom: 1px solid #2e2e2e;
  display: none;
}

.mobile-search-bar .search-wrap {
  max-width: 100%;
  flex: none;
  width: 100%;
}

/* ─── ОВЕРЛЕЙ ─── */
.offcanvas-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.65);
  z-index: 1049;
  display: none;
  cursor: pointer;
}

.offcanvas-overlay.open { display: block; }

/* ─── БОКОВОЕ МЕНЮ ─── */
.offcanvas-custom {
  position: fixed;
  top: 0;
  right: -310px;
  width: 300px;
  height: 100%;
  background: #0f0f0f;
  z-index: 1050;
  transition: right 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border-left: 1px solid #2e2e2e;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
}

.offcanvas-custom.open { right: 0; }

.offcanvas-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 1.5rem;
  border-bottom: 1px solid #2e2e2e;
  flex-shrink: 0;
}

.offcanvas-close {
  background: none;
  border: none;
  cursor: pointer;
  color: #666;
  display: flex;
  align-items: center;
  transition: color 0.2s;
}

.offcanvas-close:hover { color: #fff; }

.offcanvas-catalog-toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  background: #1a1a1a;
  border: none;
  border-bottom: 1px solid #2e2e2e;
  color: #fff;
  font-family: 'Manrope', sans-serif;
  font-size: 14px;
  font-weight: 600;
  padding: 1rem 1.5rem;
  cursor: pointer;
  transition: background 0.2s;
}

.offcanvas-catalog-toggle:hover { background: #222; }

.toggle-arrow { transition: transform 0.2s; color: #e85d30; }
.offcanvas-catalog-toggle.active .toggle-arrow { transform: rotate(180deg); }

.offcanvas-catalog-items {
  display: none;
  background: #111;
  border-bottom: 1px solid #2e2e2e;
}

.offcanvas-catalog-items.open { display: block; }

.offcanvas-catalog-items a {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #999;
  text-decoration: none;
  font-family: 'Manrope', sans-serif;
  font-size: 13px;
  font-weight: 500;
  padding: 0.75rem 1.5rem 0.75rem 2rem;
  border-bottom: 1px solid #1a1a1a;
  transition: color 0.2s, padding-left 0.2s;
}

.offcanvas-catalog-items a:hover { color: #fff; padding-left: 2.25rem; }

.offcanvas-custom ul {
  list-style: none;
  padding: 0.5rem 0;
}

.offcanvas-custom ul a {
  display: block;
  color: #999;
  text-decoration: none;
  font-family: 'Manrope', sans-serif;
  font-size: 14px;
  font-weight: 500;
  padding: 1rem 1.5rem;
  border-bottom: 1px solid #1e1e1e;
  transition: color 0.2s, padding-left 0.2s;
}

.offcanvas-custom ul a:hover { color: #fff; padding-left: 2rem; }

/* ─── ДЕСКТОП / МОБАЙЛ ─── */
.mobile-only { display: none !important; }

@media (max-width: 768px) {
  .navbar-custom {
    padding: 0 1rem;
    gap: 0;
    justify-content: space-between;
  }

  .catalog-btn-wrap,
  .nav-links,
  .desktop-only { display: none !important; }

  .mobile-only { display: flex !important; align-items: center; gap: 1rem; }

  .mobile-search-bar { display: block !important; }
}
.categories-section {
    padding: 2.5rem 2rem;
  }

  .categories-section-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 1.25rem;
  }

  .categories-section-header-left {
    display: flex;
    flex-direction: column;
    gap: 4px;
  }

  .categories-section-label {
    font-family: 'Manrope', sans-serif;
    font-size: 12px;
    font-weight: 600;
    color: #e85d30;
    text-transform: uppercase;
    letter-spacing: 1px;
  }

  .categories-section-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2rem;
    letter-spacing: 2px;
    color: #fff;
    line-height: 1;
  }

  .categories-section-link {
    font-family: 'Manrope', sans-serif;
    font-size: 13px;
    color: #e85d30;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.2s;
    white-space: nowrap;
    margin-bottom: 4px;
  }

  .categories-section-link:hover { color: #fff; }

  .categories-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0.75rem;
  }

  /* ─── КАРТОЧКА ─── */
  .category-card {
    background: #161616;
    border: 1px solid #2a2a2a;
    border-radius: 10px;
    overflow: hidden;
    text-decoration: none;
    display: flex;
    flex-direction: column;
    position: relative;
    transition: border-color 0.2s, transform 0.2s;
  }

  .category-card:hover {
    border-color: #e85d30;
    transform: translateY(-3px);
    text-decoration: none;
  }

  .category-card-top {
    position: relative;
    height: 90px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: #1e1e1e;
  }

  .category-card-accent {
    position: absolute;
    bottom: -20px;
    right: -20px;
    width: 80px;
    height: 80px;
    background: radial-gradient(circle, rgba(232,93,48,0.18) 0%, transparent 70%);
    border-radius: 50%;
    opacity: 0;
    transition: opacity 0.2s;
  }

  .category-card:hover .category-card-accent { opacity: 1; }

  .category-card-icon {
    font-size: 2.4rem;
    position: relative;
    z-index: 1;
    line-height: 1;
    transition: transform 0.2s;
  }

  .category-card:hover .category-card-icon { transform: scale(1.12); }

  .category-card-body {
    padding: 0.75rem 1rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-top: 1px solid #2a2a2a;
    gap: 8px;
  }

  .category-card-info { flex: 1; min-width: 0; }

  .category-card-name {
    font-family: 'Manrope', sans-serif;
    font-size: 13px;
    font-weight: 700;
    color: #fff;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .category-card-count {
    font-family: 'Manrope', sans-serif;
    font-size: 11px;
    color: #555;
    margin-top: 2px;
  }

  .category-card-arrow {
    width: 26px;
    height: 26px;
    background: #2a2a2a;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: background 0.2s, transform 0.2s;
    color: #666;
  }

  .category-card:hover .category-card-arrow {
    background: #e85d30;
    color: #fff;
    transform: translateX(2px);
  }

  /* ─── КНОПКА СМОТРЕТЬ ВСЕ ─── */
  .categories-show-all {
    display: flex;
    justify-content: center;
    margin-top: 1.25rem;
  }

  .categories-show-all-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: transparent;
    border: 1px solid #2e2e2e;
    border-radius: 8px;
    color: #999;
    font-family: 'Manrope', sans-serif;
    font-size: 13px;
    font-weight: 600;
    padding: 0 2rem;
    height: 42px;
    text-decoration: none;
    transition: border-color 0.2s, color 0.2s, background 0.2s;
  }

  .categories-show-all-btn:hover {
    border-color: #e85d30;
    color: #e85d30;
    background: rgba(232,93,48,0.05);
    text-decoration: none;
  }

  /* ─── АДАПТИВ ─── */
  @media (max-width: 900px) {
    .categories-grid { grid-template-columns: repeat(2, 1fr); }
  }

  @media (max-width: 768px) {
    .categories-section { padding: 1.5rem 0rem; }
    .categories-section-title { font-size: 1.2rem; letter-spacing: 1px; }
    .categories-grid { grid-template-columns: repeat(2, 1fr); gap: 0.6rem; }
    .category-card-top { height: 75px; }
    .category-card-icon { font-size: 2rem; }
    .category-card-body { padding: 0.6rem 0.75rem; }
    .category-card-name { font-size: 12px; }
    .categories-show-all-btn { width: 100%; justify-content: center; }
  }

/* Главный болка привествие */
.hero {
    background: #0f0f0f;
    padding: 5rem 2rem 4rem;
    position: relative;
    overflow: hidden;
  }

  .hero::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(232, 93, 48, 0.12) 0%, transparent 70%);
    pointer-events: none;
  }

  .hero::after {
    content: '';
    position: absolute;
    bottom: -50px;
    left: -50px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(232, 93, 48, 0.06) 0%, transparent 70%);
    pointer-events: none;
  }

  .hero-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
  }

  .hero-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(232, 93, 48, 0.1);
    border: 1px solid rgba(232, 93, 48, 0.25);
    border-radius: 20px;
    padding: 6px 14px;
    font-family: 'Manrope', sans-serif;
    font-size: 12px;
    font-weight: 600;
    color: #e85d30;
    letter-spacing: 0.5px;
    margin-bottom: 1.5rem;
  }

  .hero-label-dot {
    width: 6px;
    height: 6px;
    background: #e85d30;
    border-radius: 50%;
    animation: pulse 2s infinite;
  }

  @keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.3; }
  }

  .hero-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(2.8rem, 5vw, 4.5rem);
    line-height: 1;
    letter-spacing: 2px;
    color: #fff;
    margin-bottom: 1.25rem;
  }

  .hero-title span {
    color: #e85d30;
  }

  .hero-desc {
    font-family: 'Manrope', sans-serif;
    font-size: 15px;
    color: #888;
    line-height: 1.7;
    margin-bottom: 2.5rem;
    max-width: 420px;
  }

  /* Кнопка звонка */
  .call-block {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
  }

  .btn-call {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #e85d30;
    color: #fff;
    text-decoration: none;
    font-family: 'Manrope', sans-serif;
    font-size: 14px;
    font-weight: 700;
    padding: 0 24px;
    height: 48px;
    border-radius: 8px;
    transition: background 0.2s, transform 0.15s;
    border: none;
    cursor: pointer;
  }

  .btn-call:hover {
    background: #cf4f25;
    transform: translateY(-1px);
    color: #fff;
    text-decoration: none;
  }

  .call-number {
    font-family: 'Manrope', sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: #fff;
    text-decoration: none;
    transition: color 0.2s;
  }

  .call-number:hover { color: #e85d30; text-decoration: none; }

  .call-number-sub {
    font-family: 'Manrope', sans-serif;
    font-size: 11px;
    color: #555;
    margin-top: 2px;
  }

  /* Мессенджеры */
  .messengers-label {
    font-family: 'Manrope', sans-serif;
    font-size: 12px;
    color: #555;
    margin-bottom: 0.75rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
  }

  .messengers {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
  }

  .messenger-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 0 18px;
    height: 44px;
    border-radius: 8px;
    font-family: 'Manrope', sans-serif;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    transition: transform 0.15s, opacity 0.2s;
    border: 1px solid transparent;
  }

  .messenger-btn:hover {
    transform: translateY(-2px);
    opacity: 0.9;
    text-decoration: none;
  }

  .messenger-btn.tg {
    background: #229ED9;
    color: #fff;
  }

  .messenger-btn.wa {
    background: #25D366;
    color: #fff;
  }

  .messenger-btn.vk {
    background: #4C75A3;
    color: #fff;
  }

    .messenger-btn.max {
    background: #771cee;
    color: #fff;
  }

  .messenger-btn svg {
    flex-shrink: 0;
  }

  /* Правая часть — карточка */
  .hero-card {
    background: #161616;
    border: 1px solid #2a2a2a;
    border-radius: 16px;
    padding: 2rem;
  }

  .hero-card-title {
    font-family: 'Manrope', sans-serif;
    font-size: 13px;
    font-weight: 600;
    color: #555;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1.25rem;
  }

  .hero-stat-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1px;
    background: #2a2a2a;
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 1.5rem;
  }

  .hero-stat {
    background: #1a1a1a;
    padding: 1.25rem;
  }

  .hero-stat-num {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2rem;
    color: #e85d30;
    letter-spacing: 1px;
    line-height: 1;
    margin-bottom: 4px;
  }

  .hero-stat-text {
    font-family: 'Manrope', sans-serif;
    font-size: 12px;
    color: #666;
  }

  .hero-divider {
    border: none;
    border-top: 1px solid #2a2a2a;
    margin: 1.25rem 0;
  }

  .hero-contact-row {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 1rem;
  }

  .hero-contact-row:last-child { margin-bottom: 0; }

  .hero-contact-icon {
    width: 38px;
    height: 38px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 17px;
  }

  .hero-contact-label {
    font-family: 'Manrope', sans-serif;
    font-size: 11px;
    color: #555;
    margin-bottom: 2px;
  }

  .hero-contact-value {
    font-family: 'Manrope', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: #fff;
    text-decoration: none;
    transition: color 0.2s;
  }

  .hero-contact-value:hover { color: #e85d30; }

  @media (max-width: 768px) {
    .hero { padding: 3rem 1.25rem; }
    .hero-inner { grid-template-columns: 1fr; gap: 2rem; }
    .hero-card { display: none; }
  }

 /*Карточки*/

 .products-section {
    padding: 2.5rem 2rem;
  }

  .products-section-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1.5rem;
  }

  .products-section-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2rem;
    letter-spacing: 2px;
    color: #fff;
  }

  .products-section-link {
    font-family: 'Manrope', sans-serif;
    font-size: 13px;
    color: #e85d30;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.2s;
  }

  .products-section-link:hover { color: #fff; }

  .products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 1.25rem;
  }

  /* ─── КАРТОЧКА ─── */
  .product-card {
    background: #161616;
    border: 1px solid #2a2a2a;
    border-radius: 12px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: border-color 0.2s, transform 0.2s;
    position: relative;
  }

  .product-card:hover {
    border-color: #3a3a3a;
    transform: translateY(-3px);
  }

  /* Фото */
  .product-card-img {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    background: #1e1e1e;
    display: block;
  }

  .product-card-img-placeholder {
    width: 100%;
    aspect-ratio: 1 / 1;
    background: #1e1e1e;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
  }

  /* Бейдж */
  .product-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    background: #e85d30;
    color: #fff;
    font-family: 'Manrope', sans-serif;
    font-size: 11px;
    font-weight: 700;
    padding: 3px 8px;
    border-radius: 4px;
  }

  /* Контент */
  .product-card-body {
    padding: 1rem;
    display: flex;
    flex-direction: column;
    flex: 1;
    gap: 8px;
  }

  .product-card-name {
    font-family: 'Manrope', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: #fff;
    line-height: 1.4;
  }

  .product-card-price {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.5rem;
    letter-spacing: 1px;
    color: #e85d30;
    margin-top: auto;
  }

  .product-card-price span {
    font-family: 'Manrope', sans-serif;
    font-size: 12px;
    color: #e85d30;
    font-weight: 400;
    letter-spacing: 0;
    margin-left: 2px;
  }

  /* Кнопка */
  .btn-add-cart {
    width: 100%;
    height: 42px;
    background: #e85d30;
    border: none;
    border-radius: 8px;
    color: #fff;
    font-family: 'Manrope', sans-serif;
    font-size: 13px;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: background 0.2s, transform 0.1s;
    margin-top: 4px;
  }

  .btn-add-cart:hover { background: #cf4f25; }
  .btn-add-cart:active { transform: scale(0.98); }

  .btn-add-cart.added {
    background: #2a2a2a;
    color: #4caf50;
    border: 1px solid #4caf50;
    cursor: default;
  }

  /* ─── КОРЗИНА (всплывашка) ─── */
  .cart-toast {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    background: #161616;
    border: 1px solid #2e2e2e;
    border-radius: 12px;
    padding: 1rem 1.25rem;
    display: flex;
    align-items: center;
    gap: 12px;
    z-index: 2000;
    transform: translateY(20px);
    opacity: 0;
    transition: transform 0.3s, opacity 0.3s;
    pointer-events: none;
    max-width: 320px;
  }

  .cart-toast.show {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .cart-toast-icon {
    width: 36px;
    height: 36px;
    background: rgba(76, 175, 80, 0.15);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: #4caf50;
  }

  .cart-toast-text {
    font-family: 'Manrope', sans-serif;
    font-size: 13px;
    color: #fff;
    flex: 1;
  }

  .cart-toast-text strong {
    display: block;
    font-weight: 700;
    margin-bottom: 2px;
  }

  .cart-toast-text small {
    color: #666;
    font-size: 12px;
  }

  .cart-toast-close {
    background: none;
    border: none;
    color: #555;
    cursor: pointer;
    font-size: 18px;
    padding: 0;
    line-height: 1;
    transition: color 0.2s;
    flex-shrink: 0;
  }

  .cart-toast-close:hover { color: #fff; }

  /* ─── МОБИЛЬНАЯ ВЕРСИЯ ─── */
@media (max-width: 768px) {
  .products-section { padding: 1.5rem 0rem; }

  .products-section-title {
    font-size: 1.2rem;
    letter-spacing: 1px;
  }

  .products-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
  }

  .product-card {
    display: flex;
    flex-direction: column;
    border-radius: 10px;
  }

  .product-card-img,
  .product-card-img-placeholder {
    width: 100%;
    aspect-ratio: 1 / 1;
    border-radius: 10px 10px 0 0;
    font-size: 2rem;
  }

  .product-card-body {
    padding: 0.75rem;
    gap: 6px;
  }

  .product-card-name {
    font-size: 12px;
    line-height: 1.3;
  }

  .product-card-price {
    font-size: 1.2rem;
  }

  .btn-add-cart {
    height: 38px;
    font-size: 12px;
    padding: 0 8px;
  }

  .btn-add-cart svg {
    display: none;
  }

  .btn-add-cart::before {
    content: 'В корзину';
  }

  .btn-add-cart.added::before {
    content: 'В корзине ✓';
  }
}
  .products-section-header-left {
    display: flex;
    flex-direction: column;
    gap: 4px;
  }

  .products-section-category-label {
    font-family: 'Manrope', sans-serif;
    font-size: 12px;
    font-weight: 600;
    color: #e85d30;
    text-transform: uppercase;
    letter-spacing: 1px;
  }

  .product-card-meta {
    font-family: 'Manrope', sans-serif;
    font-size: 11px;
    font-weight: 500;
    color: #555;
    text-transform: uppercase;
    letter-spacing: 0.5px;
  }

  .products-show-all-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: transparent;
    border: 1px solid #2e2e2e;
    border-radius: 8px;
    color: #999;
    font-family: 'Manrope', sans-serif;
    font-size: 13px;
    font-weight: 600;
    padding: 0 2rem;
    height: 44px;
    text-decoration: none;
    transition: border-color 0.2s, color 0.2s, background 0.2s;
  }

  .products-show-all-btn:hover {
    border-color: #e85d30;
    color: #e85d30;
    background: rgba(232, 93, 48, 0.05);
  }

  @media (max-width: 768px) {
    .products-section-title { font-size: 1.2rem; letter-spacing: 1px; }
    .products-grid { grid-template-columns: repeat(2, 1fr); gap: 0.75rem; }
    .product-card { display: flex; flex-direction: column; border-radius: 10px; }
    .product-card-img, .product-card-img-placeholder {
      width: 100%;
      aspect-ratio: 16 / 9;
      border-radius: 10px 10px 0 0;
      font-size: 3rem;
    }
    .product-card-body { padding: 1rem; gap: 8px; }
    .product-card-name { font-size: 15px; }
    .product-card-price { font-size: 1.6rem; }
    .btn-add-cart { height: 44px; font-size: 14px; }
    .products-show-all-btn { width: 100%; justify-content: center; }
  }
  .product-card-img-placeholder {
  width: 100%;
  aspect-ratio: 1 / 1;
  background: #222;
  display: flex;
  align-items: center;
  justify-content: center;
}
.products-title-short { display: none; }
.products-title-full { display: inline; }

@media (max-width: 768px) {
  .products-title-short { display: inline; }
  .products-title-full { display: none; }
}

/* ─── ЗАКЛЮЧИТЕЛЬНЫЙ БЛОК ─── */
  .closing-section {
    background: #0f0f0f;
    padding: 4rem 2rem;
    position: relative;

  }

  .closing-section::before {
    content: '';
    position: absolute;
    top: -150px;
    right: -150px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(232,93,48,0.07) 0%, transparent 70%);
    pointer-events: none;
  }

  .closing-inner {
    position: relative;
    z-index: 1;
  }

  /* ─── ПРЕИМУЩЕСТВА ─── */
  .advantages-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    margin-bottom: 4rem;
  }

  .advantage-card {
    background: #161616;
    border: 1px solid #2a2a2a;
    border-radius: 12px;
    padding: 1.5rem 1.25rem;
    display: flex;
    flex-direction: column;
    gap: 10px;
    transition: border-color 0.2s, transform 0.2s;
  }

  .advantage-card:hover {
    border-color: #e85d30;
    transform: translateY(-3px);
  }

  .advantage-icon {
    width: 44px;
    height: 44px;
    background: rgba(232,93,48,0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    flex-shrink: 0;
  }

  .advantage-title {
    font-family: 'Manrope', sans-serif;
    font-size: 14px;
    font-weight: 700;
    color: #fff;
  }

  .advantage-text {
    font-family: 'Manrope', sans-serif;
    font-size: 12px;
    color: #666;
    line-height: 1.6;
  }

  /* ─── ОТЗЫВЫ ─── */
  .reviews-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 1.25rem;
  }

  .reviews-header-left { display: flex; flex-direction: column; gap: 4px; }

  .section-label {
    font-family: 'Manrope', sans-serif;
    font-size: 12px;
    font-weight: 600;
    color: #e85d30;
    text-transform: uppercase;
    letter-spacing: 1px;
  }

  .section-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2rem;
    letter-spacing: 2px;
    color: #fff;
    line-height: 1;
  }

  .reviews-rating-summary {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 4px;
  }

  .reviews-rating-num {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2.5rem;
    color: #e85d30;
    line-height: 1;
  }

  .reviews-rating-stars {
    display: flex;
    flex-direction: column;
    gap: 2px;
  }

  .stars {
    display: flex;
    gap: 2px;
    color: #e85d30;
    font-size: 14px;
  }

  .reviews-rating-count {
    font-family: 'Manrope', sans-serif;
    font-size: 11px;
    color: #555;
  }

  .reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-bottom: 4rem;
  }

  .review-card {
    background: #161616;
    border: 1px solid #2a2a2a;
    border-radius: 12px;
    padding: 1.25rem;
    display: flex;
    flex-direction: column;
    gap: 12px;
  }

  .review-card-header {
    display: flex;
    align-items: center;
    gap: 10px;
  }

  .review-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #2a2a2a;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.1rem;
    color: #e85d30;
    flex-shrink: 0;
  }

  .review-author-name {
    font-family: 'Manrope', sans-serif;
    font-size: 13px;
    font-weight: 700;
    color: #fff;
  }

  .review-author-date {
    font-family: 'Manrope', sans-serif;
    font-size: 11px;
    color: #555;
    margin-top: 1px;
  }

  .review-stars { display: flex; gap: 2px; color: #e85d30; font-size: 12px; }

  .review-text {
    font-family: 'Manrope', sans-serif;
    font-size: 13px;
    color: #888;
    line-height: 1.6;
    flex: 1;
  }

  .review-product {
    font-family: 'Manrope', sans-serif;
    font-size: 11px;
    color: #444;
    border-top: 1px solid #2a2a2a;
    padding-top: 10px;
    display: flex;
    align-items: center;
    gap: 6px;
  }

  .review-product span {
    color: #666;
  }

  /* ─── ГАРАНТИИ ─── */
  .guarantees-wrap {
    background: #161616;
    border: 1px solid #2a2a2a;
    border-radius: 14px;
    padding: 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: center;
    margin-bottom: 4rem;
  }

  .guarantees-left { display: flex; flex-direction: column; gap: 1rem; }

  .guarantees-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.8rem;
    letter-spacing: 2px;
    color: #fff;
    line-height: 1.1;
  }

  .guarantees-title span { color: #e85d30; }

  .guarantees-text {
    font-family: 'Manrope', sans-serif;
    font-size: 13px;
    color: #666;
    line-height: 1.7;
  }

  .guarantees-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
  }

  .guarantee-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'Manrope', sans-serif;
    font-size: 13px;
    color: #999;
  }

  .guarantee-check {
    width: 20px;
    height: 20px;
    background: rgba(232,93,48,0.12);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: #e85d30;
  }

  .guarantees-right {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1px;
    background: #2a2a2a;
    border-radius: 10px;
    overflow: hidden;
  }

  .guarantee-stat {
    background: #1a1a1a;
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 4px;
  }

  .guarantee-stat-num {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2rem;
    color: #e85d30;
    letter-spacing: 1px;
    line-height: 1;
  }

  .guarantee-stat-text {
    font-family: 'Manrope', sans-serif;
    font-size: 12px;
    color: #555;
  }

  /* ─── CTA БЛОК ─── */
  .cta-wrap {
    background: linear-gradient(135deg, #1a1a1a 0%, #161616 100%);
    border: 1px solid #2a2a2a;
    border-radius: 14px;
    padding: 3rem 2.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    position: relative;
    overflow: hidden;
  }

  .cta-wrap::before {
    content: '';
    position: absolute;
    top: -60px;
    right: -60px;
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, rgba(232,93,48,0.12) 0%, transparent 70%);
    pointer-events: none;
  }

  .cta-left { position: relative; z-index: 1; }

  .cta-label {
    font-family: 'Manrope', sans-serif;
    font-size: 12px;
    font-weight: 600;
    color: #e85d30;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
  }

  .cta-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(1.8rem, 3vw, 2.8rem);
    letter-spacing: 2px;
    color: #fff;
    line-height: 1;
    margin-bottom: 12px;
  }

  .cta-title span { color: #e85d30; }

  .cta-text {
    font-family: 'Manrope', sans-serif;
    font-size: 14px;
    color: #666;
    line-height: 1.6;
    max-width: 480px;
  }

  .cta-right {
    display: flex;
    flex-direction: column;
    gap: 12px;
    flex-shrink: 0;
    position: relative;
    z-index: 1;
  }

  .cta-btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: #e85d30;
    color: #fff;
    font-family: 'Manrope', sans-serif;
    font-size: 14px;
    font-weight: 700;
    padding: 0 2rem;
    height: 48px;
    border-radius: 8px;
    text-decoration: none;
    white-space: nowrap;
    transition: background 0.2s, transform 0.15s;
    border: none;
    cursor: pointer;
  }

  .cta-btn-primary:hover {
    background: #cf4f25;
    transform: translateY(-1px);
    text-decoration: none;
    color: #fff;
  }

  .cta-btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: transparent;
    color: #999;
    font-family: 'Manrope', sans-serif;
    font-size: 13px;
    font-weight: 600;
    padding: 0 2rem;
    height: 44px;
    border-radius: 8px;
    border: 1px solid #2e2e2e;
    text-decoration: none;
    white-space: nowrap;
    transition: border-color 0.2s, color 0.2s;
  }

  .cta-btn-secondary:hover {
    border-color: #e85d30;
    color: #e85d30;
    text-decoration: none;
  }

  .cta-messengers {
    display: flex;
    align-items: center;
    gap: 8px;
    justify-content: center;
  }

  .cta-messengers-label {
    font-family: 'Manrope', sans-serif;
    font-size: 11px;
    color: #444;
  }

  .cta-messenger-icon {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 16px;
    transition: transform 0.15s, opacity 0.15s;
  }

  .cta-messenger-icon:hover { transform: scale(1.1); opacity: 0.85; }
  .cta-messenger-icon.tg { background: #229ED9; }
  .cta-messenger-icon.wa { background: #25D366; }
  .cta-messenger-icon.vk { background: #4C75A3; }

  /* ─── АДАПТИВ ─── */
  @media (max-width: 1024px) {
    .advantages-grid { grid-template-columns: repeat(2, 1fr); }
    .reviews-grid { grid-template-columns: repeat(2, 1fr); }
  }

  @media (max-width: 768px) {
    .closing-section { padding: 2.5rem 0rem; }
    .section-title { font-size: 1.2rem; letter-spacing: 1px; }
    .advantages-grid { grid-template-columns: repeat(2, 1fr); gap: 0.75rem; }
    .advantage-card { padding: 1rem; }
    .reviews-grid { grid-template-columns: 1fr; }
    .guarantees-wrap { grid-template-columns: 1fr; gap: 1.5rem; }
    .guarantees-right { grid-template-columns: repeat(2, 1fr); }
    .cta-wrap { flex-direction: column; padding: 2rem 1.25rem; text-align: center; }
    .cta-text { max-width: 100%; }
    .cta-right { width: 100%; }
    .cta-btn-primary, .cta-btn-secondary { width: 100%; }
  }

  @media (max-width: 480px) {
    .advantages-grid { grid-template-columns: 1fr; }
  }


    /* ─── ФУТЕР ─── */
  .footer {
    background: #0a0a0a;
    border-top: 1px solid #1e1e1e;
    padding: 3rem 2rem 0;
  }

  .footer-inner {
    padding-left: 2rem;
    padding-right: 2rem;
  }

  /* ─── ВЕРХНЯЯ ЧАСТЬ ─── */
  .footer-top {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 2.5rem;
    padding-bottom: 2.5rem;
    border-bottom: 1px solid #1e1e1e;
  }

  /* Колонка о компании */
  .footer-brand .logo {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.6rem;
    letter-spacing: 2px;
    color: #fff;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 1rem;
  }

  .footer-brand-text {
    font-family: 'Manrope', sans-serif;
    font-size: 13px;
    color: #555;
    line-height: 1.7;
    margin-bottom: 1.25rem;
  }

  .footer-socials {
    display: flex;
    gap: 8px;
  }

  .footer-social-btn {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 16px;
    transition: transform 0.15s, opacity 0.15s;
    flex-shrink: 0;
  }

  .footer-social-btn:hover { transform: scale(1.08); opacity: 0.85; }
  .footer-social-btn.tg { background: #229ED9; }
  .footer-social-btn.wa { background: #25D366; }
  .footer-social-btn.vk { background: #4C75A3; }

  /* Колонки навигации */
  .footer-col-title {
    font-family: 'Manrope', sans-serif;
    font-size: 12px;
    font-weight: 700;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
  }

  .footer-nav {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
  }

  .footer-nav a {
    font-family: 'Manrope', sans-serif;
    font-size: 13px;
    color: #555;
    text-decoration: none;
    transition: color 0.2s;
    display: flex;
    align-items: center;
    gap: 6px;
  }

  .footer-nav a:hover { color: #e85d30; }

  .footer-nav a::before {
    content: '';
    width: 4px;
    height: 4px;
    background: #2e2e2e;
    border-radius: 50%;
    flex-shrink: 0;
    transition: background 0.2s;
  }

  .footer-nav a:hover::before { background: #e85d30; }

  /* Контакты */
  .footer-contacts {
    display: flex;
    flex-direction: column;
    gap: 12px;
  }

  .footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
  }

  .footer-contact-icon {
    width: 32px;
    height: 32px;
    background: #161616;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    flex-shrink: 0;
    border: 1px solid #2a2a2a;
  }

  .footer-contact-label {
    font-family: 'Manrope', sans-serif;
    font-size: 11px;
    color: #444;
    margin-bottom: 2px;
  }

  .footer-contact-value {
    font-family: 'Manrope', sans-serif;
    font-size: 13px;
    font-weight: 600;
    color: #ccc;
    text-decoration: none;
    transition: color 0.2s;
  }

  .footer-contact-value:hover { color: #e85d30; }

  /* ─── СРЕДНЯЯ ЧАСТЬ — ПРЕИМУЩЕСТВА ─── */
  .footer-middle {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    border-bottom: 1px solid #1e1e1e;
  }

  .footer-feature {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 1.25rem 1.5rem;
    border-right: 1px solid #1e1e1e;
  }

  .footer-feature:last-child { border-right: none; }

  .footer-feature-icon {
    font-size: 1.4rem;
    flex-shrink: 0;
  }

  .footer-feature-title {
    font-family: 'Manrope', sans-serif;
    font-size: 13px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 2px;
  }

  .footer-feature-text {
    font-family: 'Manrope', sans-serif;
    font-size: 11px;
    color: #444;
  }

  /* ─── НИЖНЯЯ ЧАСТЬ ─── */
  .footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.25rem 0;
    gap: 1rem;
    flex-wrap: wrap;
  }

  .footer-copy {
    font-family: 'Manrope', sans-serif;
    font-size: 12px;
    color: #333;
  }

  .footer-copy span { color: #e85d30; }

  .footer-bottom-links {
    display: flex;
    gap: 1.5rem;
  }

  .footer-bottom-links a {
    font-family: 'Manrope', sans-serif;
    font-size: 12px;
    color: #333;
    text-decoration: none;
    transition: color 0.2s;
  }

  .footer-bottom-links a:hover { color: #999; }

  /* ─── АДАПТИВ ─── */
  @media (max-width: 1024px) {
    .footer-top { grid-template-columns: 1fr 1fr; gap: 2rem; }
    .footer-middle { grid-template-columns: repeat(2, 1fr); }
    .footer-feature:nth-child(2) { border-right: none; }
    .footer-feature:nth-child(3) { border-top: 1px solid #1e1e1e; }
    .footer-feature:nth-child(4) { border-top: 1px solid #1e1e1e; border-right: none; }
  }

  @media (max-width: 768px) {
    .footer { padding: 2rem 1rem 0; }
    .footer-top { grid-template-columns: 1fr; gap: 1.5rem; }
    .footer-middle { grid-template-columns: 1fr 1fr; }
    .footer-feature { padding: 1rem; }
    .footer-feature:nth-child(2) { border-right: none; }
    .footer-feature:nth-child(3) { border-top: 1px solid #1e1e1e; border-right: 1px solid #1e1e1e; }
    .footer-feature:nth-child(4) { border-top: 1px solid #1e1e1e; border-right: none; }
    .footer-bottom { flex-direction: column; align-items: flex-start; gap: 0.75rem; }
    .footer-bottom-links { flex-wrap: wrap; gap: 1rem; }
  }

    /* ─── СТРАНИЦА ТОВАРА ─── */
  .product-page {
    padding: 2rem 2rem;
  }

  /* ─── ХЛЕБНЫЕ КРОШКИ ─── */
  .breadcrumbs {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 2rem;
    flex-wrap: wrap;
  }

  .breadcrumbs a {
    font-family: 'Manrope', sans-serif;
    font-size: 13px;
    color: #555;
    text-decoration: none;
    transition: color 0.2s;
  }

  .breadcrumbs a:hover { color: #e85d30; }

  .breadcrumbs-sep {
    color: #333;
    font-size: 12px;
  }

  .breadcrumbs-current {
    font-family: 'Manrope', sans-serif;
    font-size: 13px;
    color: #888;
  }

  /* ─── ОСНОВНОЙ БЛОК ─── */
  .product-main {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
  }

  /* ─── ГАЛЕРЕЯ ─── */
  .product-gallery {
    display: flex;
    flex-direction: column;
    gap: 12px;
  }

  .product-gallery-main {
    width: 100%;
    aspect-ratio: 1 / 1;
    background: #161616;
    border: 1px solid #2a2a2a;
    border-radius: 14px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
  }

  .product-gallery-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    cursor: zoom-in;
  }

  .product-gallery-main-placeholder {
    font-size: 6rem;
    color: #2a2a2a;
  }

  .product-gallery-badge {
    position: absolute;
    top: 14px;
    left: 14px;
    background: #e85d30;
    color: #fff;
    font-family: 'Manrope', sans-serif;
    font-size: 12px;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 6px;
  }

  .product-gallery-thumbs {
    display: flex;
    gap: 8px;
  }

  .product-thumb {
    width: 72px;
    height: 72px;
    border-radius: 8px;
    background: #161616;
    border: 1px solid #2a2a2a;
    overflow: hidden;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    transition: border-color 0.2s;
    flex-shrink: 0;
  }

  .product-thumb.active { border-color: #e85d30; }
  .product-thumb:hover { border-color: #555; }

  .product-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  /* ─── ИНФО ─── */
  .product-info {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
  }

  .product-info-meta {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
  }

  .product-info-brand {
    font-family: 'Manrope', sans-serif;
    font-size: 12px;
    font-weight: 600;
    color: #e85d30;
    text-transform: uppercase;
    letter-spacing: 1px;
  }

  .product-info-cat {
    font-family: 'Manrope', sans-serif;
    font-size: 12px;
    color: #444;
    background: #1e1e1e;
    padding: 3px 10px;
    border-radius: 20px;
    border: 1px solid #2a2a2a;
  }

  .product-info-sku {
    font-family: 'Manrope', sans-serif;
    font-size: 12px;
    color: #444;
    margin-left: auto;
  }

  .product-info-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2.2rem;
    letter-spacing: 2px;
    color: #fff;
    line-height: 1.1;
  }

  /* Рейтинг */
  .product-info-rating {
    display: flex;
    align-items: center;
    gap: 10px;
  }

  .product-stars { color: #e85d30; font-size: 15px; }

  .product-rating-num {
    font-family: 'Manrope', sans-serif;
    font-size: 13px;
    font-weight: 700;
    color: #fff;
  }

  .product-rating-count {
    font-family: 'Manrope', sans-serif;
    font-size: 12px;
    color: #555;
  }

  /* Цена */
  .product-price-wrap {
    display: flex;
    align-items: baseline;
    gap: 12px;
  }

  .product-price {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2.8rem;
    letter-spacing: 1px;
    color: #e85d30;
    line-height: 1;
  }

  .product-price-currency {
    font-family: 'Manrope', sans-serif;
    font-size: 16px;
    color: #e85d30;
    font-weight: 400;
  }

  .product-price-old {
    font-family: 'Manrope', sans-serif;
    font-size: 16px;
    color: #444;
    text-decoration: line-through;
  }

  /* Наличие */
  .product-stock {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: 'Manrope', sans-serif;
    font-size: 13px;
  }

  .product-stock-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #4caf50;
    flex-shrink: 0;
  }

  .product-stock-dot.out { background: #f44336; }
  .product-stock-text { color: #4caf50; font-weight: 600; }
  .product-stock-text.out { color: #f44336; }
  .product-stock-sub { color: #444; }

  /* Кнопки */
  .product-actions {
    display: flex;
    gap: 10px;
  }

  .product-btn-cart {
    height: 52px;
    background: #e85d30;
    border: none;
    border-radius: 10px;
    color: #fff;
    font-family: 'Manrope', sans-serif;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: background 0.2s, transform 0.15s;
    text-decoration: none;
  }

  .product-btn-cart:hover {
    background: #cf4f25;
    transform: translateY(-1px);
    color: #fff;
  }

  .product-btn-cart.added {
    background: #2a2a2a;
    color: #4caf50;
    border: 1px solid #4caf50;
  }

  .product-btn-call {
    height: 52px;
    padding: 0 1.25rem;
    background: transparent;
    border: 1px solid #2e2e2e;
    border-radius: 10px;
    color: #999;
    font-family: 'Manrope', sans-serif;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: border-color 0.2s, color 0.2s;
    text-decoration: none;
    white-space: nowrap;
  }

  .product-btn-call:hover {
    border-color: #e85d30;
    color: #e85d30;
  }

  /* Быстрые факты */
  .product-quick-facts {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
  }

  .product-quick-fact {
    background: #161616;
    border: 1px solid #2a2a2a;
    border-radius: 10px;
    padding: 0.875rem;
    display: flex;
    flex-direction: column;
    gap: 4px;
  }

  .product-quick-fact-icon { font-size: 1.2rem; }

  .product-quick-fact-title {
    font-family: 'Manrope', sans-serif;
    font-size: 12px;
    font-weight: 700;
    color: #fff;
  }

  .product-quick-fact-text {
    font-family: 'Manrope', sans-serif;
    font-size: 11px;
    color: #555;
  }

  /* ─── ТАБЫ ─── */
  .product-tabs {
    margin-bottom: 3rem;
  }

  .product-tabs-nav {
    display: flex;
    border-bottom: 1px solid #2a2a2a;
    margin-bottom: 1.5rem;
    gap: 0;
  }

  .product-tab-btn {
    font-family: 'Manrope', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: #555;
    padding: 0.875rem 1.5rem;
    background: none;
    border: none;
    border-bottom: 2px solid transparent;
    cursor: pointer;
    transition: color 0.2s, border-color 0.2s;
    margin-bottom: -1px;
    white-space: nowrap;
  }

  .product-tab-btn:hover { color: #fff; }
  .product-tab-btn.active { color: #fff; border-bottom-color: #e85d30; }

  .product-tab-content { display: none; }
  .product-tab-content.active { display: block; }

  /* Описание */
  .product-description {
    font-family: 'Manrope', sans-serif;
    font-size: 14px;
    color: #777;
    line-height: 1.8;
    max-width: 800px;
  }

  .product-description p { margin-bottom: 1rem; }
  .product-description p:last-child { margin-bottom: 0; }

  /* Характеристики */
  .product-specs {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1px;
    background: #2a2a2a;
    border-radius: 10px;
    overflow: hidden;
    max-width: 800px;
  }

  .product-spec-row {
    display: flex;
    background: #161616;
    padding: 0.875rem 1.25rem;
    gap: 1rem;
  }

  .product-spec-label {
    font-family: 'Manrope', sans-serif;
    font-size: 13px;
    color: #555;
    min-width: 160px;
    flex-shrink: 0;
  }

  .product-spec-value {
    font-family: 'Manrope', sans-serif;
    font-size: 13px;
    color: #ccc;
    font-weight: 600;
  }

  /* ─── ПОХОЖИЕ ТОВАРЫ ─── */
  .product-related-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.8rem;
    letter-spacing: 2px;
    color: #fff;
    margin-bottom: 1.25rem;
  }

  /* ─── АДАПТИВ ─── */
  @media (max-width: 900px) {
    .product-main { grid-template-columns: 1fr; gap: 2rem; }
    .product-specs { grid-template-columns: 1fr; }
  }

  @media (max-width: 768px) {
    .product-page { padding: 1rem; }
    .product-info-title { font-size: 1.6rem; }
    .product-price { font-size: 2.2rem; }
    .product-quick-facts { grid-template-columns: repeat(3, 1fr); }
    .product-actions { flex-direction: column; }
    .product-btn-call { justify-content: center; }
    .product-tabs-nav { overflow-x: auto; }
    .product-tab-btn { padding: 0.75rem 1rem; font-size: 13px; }
  }
@media (max-width: 768px) {
  .product-actions .product-btn-cart,
  .product-actions .product-btn-call {
    height: 52px;
  }
}
  .product-btn-cart,
  .product-btn-call {
    width: 100%;
    justify-content: center;
  }
  /* ─── СТРАНИЦА КОНТАКТОВ ─── */
  .contacts-page {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem 2rem;
  }

  /* ─── ХЛЕБНЫЕ КРОШКИ ─── */
  .contacts-hero {
    margin-bottom: 2.5rem;
  }

  .contacts-hero-label {
    font-family: 'Manrope', sans-serif;
    font-size: 12px;
    font-weight: 600;
    color: #e85d30;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 6px;
  }

  .contacts-hero-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 3rem;
    letter-spacing: 3px;
    color: #fff;
    line-height: 1;
    margin-bottom: 0.75rem;
  }

  .contacts-hero-text {
    font-family: 'Manrope', sans-serif;
    font-size: 14px;
    color: #555;
    line-height: 1.7;
    max-width: 500px;
  }

  /* ─── ОСНОВНАЯ СЕТКА ─── */
  .contacts-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
  }

  /* ─── КАРТОЧКИ КОНТАКТОВ ─── */
  .contacts-cards {
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }

  .contact-card {
    background: #161616;
    border: 1px solid #2a2a2a;
    border-radius: 12px;
    padding: 1.25rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    text-decoration: none;
    transition: border-color 0.2s, transform 0.2s;
  }

  .contact-card:hover {
    border-color: #e85d30;
    transform: translateX(4px);
    text-decoration: none;
  }

  .contact-card-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    flex-shrink: 0;
    background: rgba(232,93,48,0.1);
    border: 1px solid rgba(232,93,48,0.2);
  }

  .contact-card-body { flex: 1; }

  .contact-card-label {
    font-family: 'Manrope', sans-serif;
    font-size: 11px;
    color: #444;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 4px;
  }

  .contact-card-value {
    font-family: 'Manrope', sans-serif;
    font-size: 15px;
    font-weight: 700;
    color: #fff;
  }

  .contact-card-sub {
    font-family: 'Manrope', sans-serif;
    font-size: 12px;
    color: #555;
    margin-top: 2px;
  }

  .contact-card-arrow {
    color: #333;
    transition: color 0.2s;
    flex-shrink: 0;
  }

  .contact-card:hover .contact-card-arrow { color: #e85d30; }

  /* ─── КАРТА ─── */
  .contacts-map-wrap {
    background: #161616;
    border: 1px solid #2a2a2a;
    border-radius: 12px;
    overflow: hidden;
    min-height: 400px;
    position: relative;
  }

  .contacts-map-wrap iframe {
    width: 100%;
    height: 100%;
    min-height: 400px;
    border: none;
    display: block;
  }

  .contacts-map-badge {
    position: absolute;
    bottom: 16px;
    left: 16px;
    background: #0f0f0f;
    border: 1px solid #2a2a2a;
    border-radius: 8px;
    padding: 10px 14px;
    display: flex;
    align-items: center;
    gap: 8px;
    z-index: 10;
  }

  .contacts-map-badge-icon { font-size: 1.2rem; }

  .contacts-map-badge-title {
    font-family: 'Manrope', sans-serif;
    font-size: 13px;
    font-weight: 700;
    color: #fff;
  }

  .contacts-map-badge-sub {
    font-family: 'Manrope', sans-serif;
    font-size: 11px;
    color: #555;
  }

  /* ─── МЕССЕНДЖЕРЫ ─── */
  .contacts-messengers {
    background: #161616;
    border: 1px solid #2a2a2a;
    border-radius: 12px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
  }

  .contacts-messengers-title {
    font-family: 'Manrope', sans-serif;
    font-size: 13px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 1rem;
  }

  .contacts-messengers-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
  }

  .messenger-card {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 0.875rem 1rem;
    border-radius: 10px;
    text-decoration: none;
    font-family: 'Manrope', sans-serif;
    font-size: 14px;
    font-weight: 700;
    color: #fff;
    transition: transform 0.15s, opacity 0.15s;
  }

  .messenger-card:hover {
    transform: translateY(-2px);
    opacity: 0.9;
    text-decoration: none;
    color: #fff;
  }

  .messenger-card.tg { background: #229ED9; }
  .messenger-card.wa { background: #25D366; }
  .messenger-card.vk { background: #4C75A3; }

  .messenger-card-sub {
    font-size: 11px;
    font-weight: 400;
    opacity: 0.8;
    display: block;
    margin-top: 1px;
  }

  /* ─── ФОРМА ОБРАТНОЙ СВЯЗИ ─── */
  .contacts-form-wrap {
    background: #161616;
    border: 1px solid #2a2a2a;
    border-radius: 12px;
    padding: 2rem;
    margin-bottom: 1.5rem;
  }

  .contacts-form-header {
    margin-bottom: 1.5rem;
  }

  .contacts-form-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.6rem;
    letter-spacing: 2px;
    color: #fff;
    margin-bottom: 4px;
  }

  .contacts-form-sub {
    font-family: 'Manrope', sans-serif;
    font-size: 13px;
    color: #555;
  }

  .contacts-form {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
  }

  .form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
  }

  .form-group.full { grid-column: 1 / -1; }

  .form-label {
    font-family: 'Manrope', sans-serif;
    font-size: 12px;
    font-weight: 600;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 0.5px;
  }

  .form-input,
  .form-textarea {
    width: 100%;
    background: #1e1e1e;
    border: 1px solid #2e2e2e;
    border-radius: 8px;
    color: #fff;
    font-family: 'Manrope', sans-serif;
    font-size: 14px;
    padding: 0.75rem 1rem;
    outline: none;
    transition: border-color 0.2s;
    box-sizing: border-box;
  }

  .form-input { height: 46px; }

  .form-input::placeholder,
  .form-textarea::placeholder { color: #444; }

  .form-input:focus,
  .form-textarea:focus { border-color: #e85d30; }

  .form-textarea {
    height: 120px;
    resize: vertical;
    line-height: 1.6;
  }

  .form-submit {
    grid-column: 1 / -1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    flex-wrap: wrap;
  }

  .form-submit-note {
    font-family: 'Manrope', sans-serif;
    font-size: 12px;
    color: #444;
    flex: 1;
  }

  .form-btn {
    height: 48px;
    padding: 0 2rem;
    background: #e85d30;
    border: none;
    border-radius: 8px;
    color: #fff;
    font-family: 'Manrope', sans-serif;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: background 0.2s, transform 0.15s;
    white-space: nowrap;
  }

  .form-btn:hover {
    background: #cf4f25;
    transform: translateY(-1px);
  }

 /* ─── РАСПИСАНИЕ ─── */
.contacts-schedule {
  background: #161616;
  border: 1px solid #2a2a2a;
  border-radius: 12px;
  padding: 1.5rem;
  min-width: 0;
}

.schedule-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.6rem 0;
  border-bottom: 1px solid #1e1e1e;
  font-family: 'Manrope', sans-serif;
  font-size: 13px;
  gap: 8px;
}

.schedule-row:last-child { border-bottom: none; }

.schedule-day {
  color: #666;
  white-space: nowrap;
}

.schedule-time {
  font-weight: 600;
  color: #fff;
  white-space: nowrap;
  text-align: right;
}

.schedule-time.closed { color: #444; }
.schedule-today .schedule-day { color: #e85d30; font-weight: 600; }
.schedule-today .schedule-time { color: #e85d30; }

/* ─── ФОРМА — КНОПКА ─── */
.form-submit {
  grid-column: 1 / -1;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.form-btn {
  width: 100%;
  height: 48px;
  padding: 0 2rem;
  background: #e85d30;
  border: none;
  border-radius: 8px;
  color: #fff;
  font-family: 'Manrope', sans-serif;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: background 0.2s, transform 0.15s;
}

.form-btn:hover {
  background: #cf4f25;
  transform: translateY(-1px);
}
  /* ─── НИЖНЯЯ СЕТКА ─── */
  .contacts-bottom-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 1.5rem;
  }

  /* ─── АДАПТИВ ─── */
  @media (max-width: 900px) {
    .contacts-grid { grid-template-columns: 1fr; }
    .contacts-map-wrap { min-height: 300px; }
    .contacts-map-wrap iframe { min-height: 300px; }
    .contacts-bottom-grid { grid-template-columns: 1fr; }
  }

  @media (max-width: 768px) {
    .contacts-page { padding: 1rem; }
    .contacts-hero-title { font-size: 2rem; }
    .contacts-messengers-grid { grid-template-columns: 1fr; }
    .contacts-form { grid-template-columns: 1fr; }
    .form-group.full { grid-column: 1; }
    .form-submit { flex-direction: column; align-items: stretch; }
    .form-btn { justify-content: center; }
  }

  .about-page {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem 2rem;
  }

  /* ─── HERO ─── */
  .about-hero {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    margin-bottom: 4rem;
    background: #161616;
    border: 1px solid #2a2a2a;
    border-radius: 16px;
    padding: 3rem;
    position: relative;
    overflow: hidden;
    overflow: hidden;
    max-width: 100%;
  }

  .about-hero::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(232,93,48,0.08) 0%, transparent 70%);
    pointer-events: none;
  }

  .about-hero-label {
    font-family: 'Manrope', sans-serif;
    font-size: 12px;
    font-weight: 600;
    color: #e85d30;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
  }

  .about-hero-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(2.5rem, 4vw, 3.5rem);
    letter-spacing: 2px;
    color: #fff;
    line-height: 1;
    margin-bottom: 1.25rem;
  }

  .about-hero-title span { color: #e85d30; }

  .about-hero-text {
    font-family: 'Manrope', sans-serif;
    font-size: 14px;
    color: #666;
    line-height: 1.8;
    margin-bottom: 1.5rem;
  }

  .about-hero-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
  }

  .about-hero-tag {
    font-family: 'Manrope', sans-serif;
    font-size: 12px;
    font-weight: 600;
    color: #e85d30;
    background: rgba(232,93,48,0.1);
    border: 1px solid rgba(232,93,48,0.2);
    padding: 4px 12px;
    border-radius: 20px;
  }

  .about-hero-right {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1px;
    background: #2a2a2a;
    border-radius: 12px;
    overflow: hidden;
  }

  .about-hero,
.about-cta {
  overflow: hidden;
}


  .about-stat {
    background: #1a1a1a;
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 4px;
  }

  .about-stat-num {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2.2rem;
    color: #e85d30;
    letter-spacing: 1px;
    line-height: 1;
  }

  .about-stat-text {
    font-family: 'Manrope', sans-serif;
    font-size: 12px;
    color: #555;
    line-height: 1.4;
  }

  /* ─── ИСТОРИЯ ─── */
  .about-section {
    margin-bottom: 4rem;
  }

  .about-section-label {
    font-family: 'Manrope', sans-serif;
    font-size: 12px;
    font-weight: 600;
    color: #e85d30;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 6px;
  }

  .about-section-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2rem;
    letter-spacing: 2px;
    color: #fff;
    line-height: 1;
    margin-bottom: 1.5rem;
  }

  .about-history-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    align-items: start;
  }

  .about-history-text {
    font-family: 'Manrope', sans-serif;
    font-size: 14px;
    color: #666;
    line-height: 1.8;
  }

  .about-history-text p { margin-bottom: 1rem; }
  .about-history-text p:last-child { margin-bottom: 0; }

  /* Таймлайн */
  .about-timeline {
    display: flex;
    flex-direction: column;
    gap: 0;
  }

  .timeline-item {
    display: flex;
    gap: 1rem;
    position: relative;
  }

  .timeline-left {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex-shrink: 0;
  }

  .timeline-dot {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(232,93,48,0.1);
    border: 2px solid #e85d30;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 11px;
    color: #e85d30;
    flex-shrink: 0;
    letter-spacing: 0;
  }

  .timeline-line {
    width: 2px;
    flex: 1;
    background: #2a2a2a;
    margin: 4px 0;
    min-height: 24px;
  }

  .timeline-item:last-child .timeline-line { display: none; }

  .timeline-content {
    padding-bottom: 1.5rem;
    flex: 1;
  }

  .timeline-year {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.1rem;
    color: #e85d30;
    letter-spacing: 1px;
    margin-bottom: 4px;
  }

  .timeline-title {
    font-family: 'Manrope', sans-serif;
    font-size: 14px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 4px;
  }

  .timeline-text {
    font-family: 'Manrope', sans-serif;
    font-size: 13px;
    color: #555;
    line-height: 1.6;
  }

  /* ─── КОМАНДА ─── */
  .team-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
  }

  .team-card {
    background: #161616;
    border: 1px solid #2a2a2a;
    border-radius: 12px;
    overflow: hidden;
    transition: border-color 0.2s, transform 0.2s;
  }

  .team-card:hover {
    border-color: #e85d30;
    transform: translateY(-3px);
  }

  .team-card-photo {
    width: 100%;
    aspect-ratio: 1 / 1;
    background: #1e1e1e;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3.5rem;
    position: relative;
    overflow: hidden;
  }

  .team-card-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .team-card-body {
    padding: 1rem;
    border-top: 1px solid #2a2a2a;
  }

  .team-card-name {
    font-family: 'Manrope', sans-serif;
    font-size: 14px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 4px;
  }

  .team-card-role {
    font-family: 'Manrope', sans-serif;
    font-size: 12px;
    color: #e85d30;
    font-weight: 600;
    margin-bottom: 6px;
  }

  .team-card-text {
    font-family: 'Manrope', sans-serif;
    font-size: 12px;
    color: #555;
    line-height: 1.5;
  }

  /* ─── ЦЕННОСТИ ─── */
  .values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
  }

  .value-card {
    background: #161616;
    border: 1px solid #2a2a2a;
    border-radius: 12px;
    padding: 1.5rem;
    transition: border-color 0.2s;
  }

  .value-card:hover { border-color: #e85d30; }

  .value-icon {
    width: 48px;
    height: 48px;
    background: rgba(232,93,48,0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    margin-bottom: 1rem;
    border: 1px solid rgba(232,93,48,0.2);
  }

  .value-title {
    font-family: 'Manrope', sans-serif;
    font-size: 15px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 8px;
  }

  .value-text {
    font-family: 'Manrope', sans-serif;
    font-size: 13px;
    color: #555;
    line-height: 1.6;
  }

  /* ─── CTA ─── */
  .about-cta {
    background: #161616;
    border: 1px solid #2a2a2a;
    border-radius: 16px;
    padding: 3rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    position: relative;
    overflow: hidden;
  }

  .about-cta::before {
    content: '';
    position: absolute;
    bottom: -80px;
    right: -80px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(232,93,48,0.1) 0%, transparent 70%);
    pointer-events: none;
  }

  .about-cta-left { position: relative; z-index: 1; }

  .about-cta-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2rem;
    letter-spacing: 2px;
    color: #fff;
    line-height: 1;
    margin-bottom: 8px;
  }

  .about-cta-title span { color: #e85d30; }

  .about-cta-text {
    font-family: 'Manrope', sans-serif;
    font-size: 14px;
    color: #555;
    max-width: 500px;
    line-height: 1.6;
  }

  .about-cta-right {
    display: flex;
    gap: 10px;
    flex-shrink: 0;
    position: relative;
    z-index: 1;
  }

  .about-cta-btn-primary {
    height: 48px;
    padding: 0 1.75rem;
    background: #e85d30;
    border: none;
    border-radius: 8px;
    color: #fff;
    font-family: 'Manrope', sans-serif;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    white-space: nowrap;
    transition: background 0.2s, transform 0.15s;
  }

  .about-cta-btn-primary:hover {
    background: #cf4f25;
    transform: translateY(-1px);
    color: #fff;
    text-decoration: none;
  }

  .about-cta-btn-secondary {
    height: 48px;
    padding: 0 1.75rem;
    background: transparent;
    border: 1px solid #2e2e2e;
    border-radius: 8px;
    color: #999;
    font-family: 'Manrope', sans-serif;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    white-space: nowrap;
    transition: border-color 0.2s, color 0.2s;
  }

  .about-cta-btn-secondary:hover {
    border-color: #e85d30;
    color: #e85d30;
    text-decoration: none;
  }

  /* ─── АДАПТИВ ─── */
  @media (max-width: 1024px) {
    .team-grid { grid-template-columns: repeat(2, 1fr); }
  }

  @media (max-width: 900px) {
    .about-hero { grid-template-columns: 1fr; }
    .about-history-grid { grid-template-columns: 1fr; }
    .values-grid { grid-template-columns: repeat(2, 1fr); }
    .about-cta { flex-direction: column; }
    .about-cta-right { width: 100%; flex-direction: column; }
    .about-cta-btn-primary,
    .about-cta-btn-secondary { justify-content: center; width: 100%; }
  }

  @media (max-width: 768px) {
    .about-page { padding: 1rem; }
    .about-hero { padding: 1.5rem; }
    .about-hero-title { font-size: 2rem; }
    .about-section-title { font-size: 1.4rem; }
    .team-grid { grid-template-columns: repeat(2, 1fr); }
    .values-grid { grid-template-columns: 1fr; }
    .about-cta { padding: 1.5rem; }
    .about-cta-title { font-size: 1.5rem; }
  }
   /* ─── СТРАНИЦА FAQ ─── */
  .faq-page {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem 2rem;
  }

  /* ─── HERO ─── */
  .faq-hero {
    margin-bottom: 3rem;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 2rem;
    flex-wrap: wrap;
  }

  .faq-hero-left { max-width: 600px; }

  .faq-hero-label {
    font-family: 'Manrope', sans-serif;
    font-size: 12px;
    font-weight: 600;
    color: #e85d30;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 6px;
  }

  .faq-hero-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 3rem;
    letter-spacing: 3px;
    color: #fff;
    line-height: 1;
    margin-bottom: 0.75rem;
  }

  .faq-hero-text {
    font-family: 'Manrope', sans-serif;
    font-size: 14px;
    color: #555;
    line-height: 1.7;
  }

  .faq-hero-stats {
    display: flex;
    gap: 1.5rem;
    flex-shrink: 0;
  }

  .faq-hero-stat {
    text-align: center;
  }

  .faq-hero-stat-num {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2rem;
    color: #e85d30;
    letter-spacing: 1px;
    line-height: 1;
  }

  .faq-hero-stat-text {
    font-family: 'Manrope', sans-serif;
    font-size: 11px;
    color: #444;
    margin-top: 2px;
  }

  /* ─── ПОИСК ─── */
  .faq-search-wrap {
    position: relative;
    margin-bottom: 2.5rem;
    max-width: 600px;
  }

  .faq-search-input {
    width: 100%;
    height: 52px;
    background: #161616;
    border: 1px solid #2e2e2e;
    border-radius: 10px;
    color: #fff;
    font-family: 'Manrope', sans-serif;
    font-size: 14px;
    padding: 0 52px 0 1.25rem;
    outline: none;
    transition: border-color 0.2s;
    box-sizing: border-box;
  }

  .faq-search-input::placeholder { color: #444; }
  .faq-search-input:focus { border-color: #e85d30; }

  .faq-search-btn {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    cursor: pointer;
    color: #555;
    display: flex;
    align-items: center;
    padding: 0;
    transition: color 0.2s;
  }

  .faq-search-btn:hover { color: #e85d30; }

  /* ─── ОСНОВНАЯ СЕТКА ─── */
  .faq-layout {
    display: grid;
    grid-template-columns: 240px 1fr;
    gap: 2rem;
    align-items: start;
  }

  /* ─── КАТЕГОРИИ (САЙДБАР) ─── */
  .faq-categories {
    position: sticky;
    top: 1rem;
    display: flex;
    flex-direction: column;
    gap: 4px;
  }

  .faq-cat-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 0.75rem 1rem;
    border-radius: 8px;
    background: none;
    border: 1px solid transparent;
    cursor: pointer;
    font-family: 'Manrope', sans-serif;
    font-size: 13px;
    font-weight: 500;
    color: #555;
    text-align: left;
    transition: background 0.2s, color 0.2s, border-color 0.2s;
    width: 100%;
  }

  .faq-cat-btn:hover {
    background: #161616;
    color: #fff;
    border-color: #2a2a2a;
  }

  .faq-cat-btn.active {
    background: #161616;
    color: #fff;
    border-color: #e85d30;
  }

  .faq-cat-icon { font-size: 1rem; flex-shrink: 0; }

  .faq-cat-count {
    margin-left: auto;
    font-size: 11px;
    color: #444;
    background: #1e1e1e;
    padding: 2px 7px;
    border-radius: 10px;
    flex-shrink: 0;
  }

  .faq-cat-btn.active .faq-cat-count {
    background: rgba(232,93,48,0.15);
    color: #e85d30;
  }

  /* ─── АККОРДЕОН ─── */
  .faq-content { min-width: 0; }

  .faq-group {
    margin-bottom: 2rem;
  }

  .faq-group-title {
    font-family: 'Manrope', sans-serif;
    font-size: 12px;
    font-weight: 700;
    color: #444;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
    gap: 8px;
  }

  .faq-group-title::after {
    content: '';
    flex: 1;
    height: 1px;
    background: #2a2a2a;
  }

  .faq-item {
    background: #161616;
    border: 1px solid #2a2a2a;
    border-radius: 10px;
    margin-bottom: 8px;
    overflow: hidden;
    transition: border-color 0.2s;
  }

  .faq-item.open { border-color: #e85d30; }

  .faq-question {
    width: 100%;
    background: none;
    border: none;
    padding: 1.1rem 1.25rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    cursor: pointer;
    text-align: left;
  }

  .faq-question-text {
    font-family: 'Manrope', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: #fff;
    line-height: 1.4;
    flex: 1;
  }

  .faq-item.open .faq-question-text { color: #e85d30; }

  .faq-question-icon {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: #2a2a2a;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: #666;
    transition: background 0.2s, color 0.2s, transform 0.2s;
  }

  .faq-item.open .faq-question-icon {
    background: rgba(232,93,48,0.15);
    color: #e85d30;
    transform: rotate(45deg);
  }

  .faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
  }

  .faq-answer.open {
    max-height: 500px;
  }

  .faq-answer-inner {
    padding: 0 1.25rem 1.25rem;
    font-family: 'Manrope', sans-serif;
    font-size: 13px;
    color: #777;
    line-height: 1.7;
    border-top: 1px solid #2a2a2a;
    padding-top: 1rem;
  }

  .faq-answer-inner a {
    color: #e85d30;
    text-decoration: none;
  }

  .faq-answer-inner a:hover { text-decoration: underline; }

  /* ─── НЕ НАШЛИ ОТВЕТ ─── */
  .faq-cta {
    background: #161616;
    border: 1px solid #2a2a2a;
    border-radius: 12px;
    padding: 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    margin-top: 2rem;
    flex-wrap: wrap;
  }

  .faq-cta-left { flex: 1; }

  .faq-cta-title {
    font-family: 'Manrope', sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 4px;
  }

  .faq-cta-text {
    font-family: 'Manrope', sans-serif;
    font-size: 13px;
    color: #555;
  }

  .faq-cta-btns {
    display: flex;
    gap: 8px;
    flex-shrink: 0;
    flex-wrap: wrap;
  }

  .faq-cta-btn-primary {
    height: 44px;
    padding: 0 1.5rem;
    background: #e85d30;
    border: none;
    border-radius: 8px;
    color: #fff;
    font-family: 'Manrope', sans-serif;
    font-size: 13px;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    white-space: nowrap;
    transition: background 0.2s;
  }

  .faq-cta-btn-primary:hover { background: #cf4f25; color: #fff; text-decoration: none; }

  .faq-cta-btn-secondary {
    height: 44px;
    padding: 0 1.5rem;
    background: transparent;
    border: 1px solid #2e2e2e;
    border-radius: 8px;
    color: #999;
    font-family: 'Manrope', sans-serif;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    white-space: nowrap;
    transition: border-color 0.2s, color 0.2s;
  }

  .faq-cta-btn-secondary:hover { border-color: #e85d30; color: #e85d30; text-decoration: none; }

  /* ─── АДАПТИВ ─── */
  @media (max-width: 900px) {
    .faq-layout { grid-template-columns: 1fr; }
    .faq-categories {
      position: static;
      flex-direction: row;
      flex-wrap: wrap;
      gap: 6px;
    }
    .faq-cat-btn { width: auto; }
    .faq-cat-count { display: none; }
  }

  @media (max-width: 768px) {
    .faq-page { padding: 1rem; }
    .faq-hero { flex-direction: column; align-items: flex-start; gap: 1rem; }
    .faq-hero-title { font-size: 2rem; }
    .faq-hero-stats { gap: 1rem; }
    .faq-cta { flex-direction: column; }
    .faq-cta-btns { width: 100%; flex-direction: column; }
    .faq-cta-btn-primary,
    .faq-cta-btn-secondary { justify-content: center; width: 100%; }
  }
    /* ─── 404 ─── */
  .page-404 {
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
  }

  .page-404-inner {
    max-width: 600px;
    width: 100%;
    text-align: center;
    position: relative;
  }

  /* Большой номер */
  .page-404-number {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(8rem, 20vw, 14rem);
    letter-spacing: 8px;
    line-height: 1;
    color: #1a1a1a;
    position: relative;
    user-select: none;
    margin-bottom: -1rem;
  }

  .page-404-number span {
    color: #e85d30;
  }

  /* Иконка внутри нуля */
  .page-404-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -55%);
    font-size: clamp(2.5rem, 6vw, 4rem);
    animation: float 3s ease-in-out infinite;
  }

  @keyframes float {
    0%, 100% { transform: translate(-50%, -55%); }
    50% { transform: translate(-50%, -65%); }
  }

  .page-404-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(1.5rem, 4vw, 2.2rem);
    letter-spacing: 2px;
    color: #fff;
    margin-bottom: 1rem;
    position: relative;
  }

  .page-404-text {
    font-family: 'Manrope', sans-serif;
    font-size: 14px;
    color: #555;
    line-height: 1.7;
    margin-bottom: 2rem;
    position: relative;
  }

  /* Кнопки */
  .page-404-actions {
    display: flex;
    gap: 10px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 3rem;
    position: relative;
  }

  .btn-404-primary {
    height: 48px;
    padding: 0 1.75rem;
    background: #e85d30;
    border: none;
    border-radius: 8px;
    color: #fff;
    font-family: 'Manrope', sans-serif;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    transition: background 0.2s, transform 0.15s;
    white-space: nowrap;
  }

  .btn-404-primary:hover {
    background: #cf4f25;
    transform: translateY(-2px);
    color: #fff;
    text-decoration: none;
  }

  .btn-404-secondary {
    height: 48px;
    padding: 0 1.75rem;
    background: transparent;
    border: 1px solid #2e2e2e;
    border-radius: 8px;
    color: #999;
    font-family: 'Manrope', sans-serif;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    transition: border-color 0.2s, color 0.2s;
    white-space: nowrap;
  }

  .btn-404-secondary:hover {
    border-color: #e85d30;
    color: #e85d30;
    text-decoration: none;
  }

  /* Популярные разделы */
  .page-404-links-title {
    font-family: 'Manrope', sans-serif;
    font-size: 12px;
    font-weight: 600;
    color: #333;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
    position: relative;
  }

  .page-404-links {
    display: flex;
    gap: 8px;
    justify-content: center;
    flex-wrap: wrap;
    position: relative;
  }

  .page-404-link {
    font-family: 'Manrope', sans-serif;
    font-size: 13px;
    font-weight: 600;
    color: #555;
    text-decoration: none;
    background: #161616;
    border: 1px solid #2a2a2a;
    border-radius: 8px;
    padding: 8px 16px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: border-color 0.2s, color 0.2s;
  }

  .page-404-link:hover {
    border-color: #e85d30;
    color: #e85d30;
    text-decoration: none;
  }

  /* Декоративные частицы */
  .page-404-particle {
    position: absolute;
    border-radius: 50%;
    background: rgba(232,93,48,0.08);
    pointer-events: none;
  }

  .page-404-particle:nth-child(1) {
    width: 300px;
    height: 300px;
    top: -100px;
    left: -150px;
  }

  .page-404-particle:nth-child(2) {
    width: 200px;
    height: 200px;
    bottom: -50px;
    right: -100px;
  }

  @media (max-width: 768px) {
    .page-404-actions { flex-direction: column; align-items: center; }
    .btn-404-primary, .btn-404-secondary { width: 100%; justify-content: center; }
  }

    /* ─── СТРАНИЦА КОРЗИНЫ ─── */
  .cart-page {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem 2rem;
  }

  .cart-hero {
    margin-bottom: 2rem;
  }

  .cart-hero-label {
    font-family: 'Manrope', sans-serif;
    font-size: 12px;
    font-weight: 600;
    color: #e85d30;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 6px;
  }

  .cart-hero-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2.5rem;
    letter-spacing: 2px;
    color: #fff;
    line-height: 1;
  }

  /* ─── ОСНОВНАЯ СЕТКА ─── */
  .cart-grid {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 1.5rem;
    align-items: start;
  }

  /* ─── СПИСОК ТОВАРОВ ─── */
  .cart-items {
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }

  .cart-item {
    background: #161616;
    border: 1px solid #2a2a2a;
    border-radius: 12px;
    padding: 1.25rem;
    display: grid;
    grid-template-columns: 90px 1fr auto;
    gap: 1.25rem;
    align-items: center;
    transition: border-color 0.2s;
  }

  .cart-item:hover { border-color: #3a3a3a; }

  /* Фото */
  .cart-item-img {
    width: 90px;
    height: 90px;
    border-radius: 8px;
    background: #1e1e1e;
    border: 1px solid #2a2a2a;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
  }

  .cart-item-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .cart-item-img-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #222;
  }

  /* Инфо */
  .cart-item-info { min-width: 0; }

  .cart-item-meta {
    font-family: 'Manrope', sans-serif;
    font-size: 11px;
    font-weight: 600;
    color: #555;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 4px;
  }

  .cart-item-name {
    font-family: 'Manrope', sans-serif;
    font-size: 15px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 6px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .cart-item-price-row {
    display: flex;
    align-items: center;
    gap: 10px;
  }

  .cart-item-price {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.3rem;
    color: #e85d30;
    letter-spacing: 1px;
  }

  .cart-item-price-each {
    font-family: 'Manrope', sans-serif;
    font-size: 11px;
    color: #444;
  }

  /* Правая часть */
  .cart-item-right {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 12px;
    flex-shrink: 0;
  }

  /* Счётчик */
  .cart-item-qty {
    display: flex;
    align-items: center;
    gap: 0;
    background: #1e1e1e;
    border: 1px solid #2e2e2e;
    border-radius: 8px;
    overflow: hidden;
  }

  .cart-qty-btn {
    width: 34px;
    height: 34px;
    background: none;
    border: none;
    color: #999;
    font-size: 18px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color 0.2s, background 0.2s;
    flex-shrink: 0;
  }

  .cart-qty-btn:hover {
    color: #fff;
    background: #2a2a2a;
  }

  .cart-qty-num {
    font-family: 'Manrope', sans-serif;
    font-size: 14px;
    font-weight: 700;
    color: #fff;
    min-width: 32px;
    text-align: center;
    padding: 0 4px;
  }

  /* Удалить */
  .cart-item-delete {
    background: none;
    border: none;
    cursor: pointer;
    color: #333;
    display: flex;
    align-items: center;
    gap: 6px;
    font-family: 'Manrope', sans-serif;
    font-size: 12px;
    padding: 0;
    transition: color 0.2s;
  }

  .cart-item-delete:hover { color: #e85d30; }

  /* ─── ПУСТАЯ КОРЗИНА ─── */
  .cart-empty {
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 4rem 2rem;
    text-align: center;
    background: #161616;
    border: 1px solid #2a2a2a;
    border-radius: 12px;
  }

  .cart-empty.show { display: flex; }

  .cart-empty-icon {
    width: 80px;
    height: 80px;
    background: #1e1e1e;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: #333;
  }

  .cart-empty-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.8rem;
    letter-spacing: 2px;
    color: #fff;
    margin-bottom: 8px;
  }

  .cart-empty-text {
    font-family: 'Manrope', sans-serif;
    font-size: 14px;
    color: #555;
    margin-bottom: 1.5rem;
  }

  .cart-empty-btn {
    height: 46px;
    padding: 0 2rem;
    background: #e85d30;
    border: none;
    border-radius: 8px;
    color: #fff;
    font-family: 'Manrope', sans-serif;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: background 0.2s;
  }

  .cart-empty-btn:hover { background: #cf4f25; color: #fff; text-decoration: none; }

  /* ─── ИТОГ ─── */
  .cart-summary {
    background: #161616;
    border: 1px solid #2a2a2a;
    border-radius: 12px;
    padding: 1.5rem;
    position: sticky;
    top: 80px;
  }

  .cart-summary-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.4rem;
    letter-spacing: 2px;
    color: #fff;
    margin-bottom: 1.25rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #2a2a2a;
  }

  .cart-summary-rows {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 1.25rem;
  }

  .cart-summary-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: 'Manrope', sans-serif;
    font-size: 13px;
  }

  .cart-summary-label { color: #555; }
  .cart-summary-value { color: #fff; font-weight: 600; }

  .cart-summary-divider {
    border: none;
    border-top: 1px solid #2a2a2a;
    margin: 1rem 0;
  }

  .cart-summary-total {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: 1.5rem;
  }

  .cart-summary-total-label {
    font-family: 'Manrope', sans-serif;
    font-size: 14px;
    font-weight: 700;
    color: #fff;
  }

  .cart-summary-total-price {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2rem;
    color: #e85d30;
    letter-spacing: 1px;
  }

  .cart-summary-total-currency {
    font-family: 'Manrope', sans-serif;
    font-size: 14px;
    color: #e85d30;
  }

  .cart-checkout-btn {
    width: 100%;
    height: 50px;
    background: #e85d30;
    border: none;
    border-radius: 10px;
    color: #fff;
    font-family: 'Manrope', sans-serif;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: background 0.2s, transform 0.15s;
    margin-bottom: 10px;
    text-decoration: none;
  }

  .cart-checkout-btn:hover {
    background: #cf4f25;
    transform: translateY(-1px);
    color: #fff;
    text-decoration: none;
  }

  .cart-continue-btn {
    width: 100%;
    height: 44px;
    background: transparent;
    border: 1px solid #2e2e2e;
    border-radius: 10px;
    color: #999;
    font-family: 'Manrope', sans-serif;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: border-color 0.2s, color 0.2s;
    text-decoration: none;
  }

  .cart-continue-btn:hover {
    border-color: #e85d30;
    color: #e85d30;
    text-decoration: none;
  }

  .cart-summary-note {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid #2a2a2a;
    font-family: 'Manrope', sans-serif;
    font-size: 12px;
    color: #444;
  }

  /* ─── ПРОМОКОД ─── */
  .cart-promo {
    margin-bottom: 1.25rem;
  }

  .cart-promo-title {
    font-family: 'Manrope', sans-serif;
    font-size: 12px;
    font-weight: 600;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 8px;
  }

  .cart-promo-wrap {
    display: flex;
    gap: 8px;
  }

  .cart-promo-input {
    flex: 1;
    height: 40px;
    background: #1e1e1e;
    border: 1px solid #2e2e2e;
    border-radius: 8px;
    color: #fff;
    font-family: 'Manrope', sans-serif;
    font-size: 13px;
    padding: 0 12px;
    outline: none;
    transition: border-color 0.2s;
  }

  .cart-promo-input::placeholder { color: #444; }
  .cart-promo-input:focus { border-color: #e85d30; }

  .cart-promo-btn {
    height: 40px;
    padding: 0 1rem;
    background: #2a2a2a;
    border: 1px solid #3a3a3a;
    border-radius: 8px;
    color: #999;
    font-family: 'Manrope', sans-serif;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    white-space: nowrap;
    transition: background 0.2s, color 0.2s;
  }

  .cart-promo-btn:hover { background: #333; color: #fff; }

  /* ─── АДАПТИВ ─── */
  @media (max-width: 900px) {
    .cart-grid { grid-template-columns: 1fr; }
    .cart-summary { position: static; }
  }

  @media (max-width: 768px) {
    .cart-page { padding: 1rem; }
    .cart-hero-title { font-size: 1.8rem; }
    .cart-item { grid-template-columns: 70px 1fr; gap: 1rem; }
    .cart-item-right { flex-direction: row; align-items: center; grid-column: 1 / -1; justify-content: space-between; }
  }

  @media (max-width: 480px) {
    .cart-item { grid-template-columns: 60px 1fr; }
    .cart-item-name { font-size: 13px; }
  }
  @media (max-width: 768px) {
  .cart-item {
    grid-template-columns: 70px 1fr;
    grid-template-rows: auto auto;
    gap: 0.75rem;
  }

  .cart-item-img {
    width: 70px;
    height: 70px;
    grid-row: 1;
    grid-column: 1;
  }

  .cart-item-info {
    grid-row: 1;
    grid-column: 2;
  }

  .cart-item-right {
    grid-row: 2;
    grid-column: 1 / -1;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding-top: 0.75rem;
    border-top: 1px solid #2a2a2a;
  }
}

@media (max-width: 480px) {
  .cart-item {
    grid-template-columns: 60px 1fr;
  }

  .cart-item-img {
    width: 60px;
    height: 60px;
  }

  .cart-item-name { font-size: 13px; }
  .cart-item-price { font-size: 1.1rem; }
}


  /* ─── СТРАНИЦА КАТЕГОРИЙ ─── */

  .catalog-page {
    padding: 2rem 2rem;
  }

  /* ─── HERO ─── */
  .catalog-hero {
    margin-bottom: 2rem;
  }

  .catalog-hero-label {
    font-family: 'Manrope', sans-serif;
    font-size: 12px;
    font-weight: 600;
    color: #e85d30;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 6px;
  }

  .catalog-hero-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2.5rem;
    letter-spacing: 2px;
    color: #fff;
    line-height: 1;
    margin-bottom: 0.5rem;
  }

  .catalog-hero-text {
    font-family: 'Manrope', sans-serif;
    font-size: 14px;
    color: #555;
  }

  /* ─── ОСНОВНАЯ СЕТКА ─── */
  .catalog-layout {
    display: grid;
    grid-template-columns: 260px 1fr;
    gap: 1.5rem;
    align-items: start;
  }

  /* ─── БОКОВАЯ ПАНЕЛЬ ─── */
  .catalog-sidebar {
    position: sticky;
    top: 80px;
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }

  .sidebar-block {
    background: #161616;
    border: 1px solid #2a2a2a;
    border-radius: 12px;
    overflow: hidden;
  }

  .sidebar-block-title {
    font-family: 'Manrope', sans-serif;
    font-size: 12px;
    font-weight: 700;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 1rem 1.25rem;
    border-bottom: 1px solid #2a2a2a;
  }

  /* Категории в сайдбаре */
  .sidebar-categories { padding: 0.5rem 0; }

  .sidebar-cat-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.6rem 1.25rem;
    text-decoration: none;
    font-family: 'Manrope', sans-serif;
    font-size: 13px;
    color: #666;
    transition: color 0.2s, background 0.2s;
    cursor: pointer;
    border: none;
    background: none;
    width: 100%;
    text-align: left;
  }

  .sidebar-cat-item:hover { color: #fff; background: #1e1e1e; }
  .sidebar-cat-item.active { color: #e85d30; background: rgba(232,93,48,0.05); }

  .sidebar-cat-item-left {
    display: flex;
    align-items: center;
    gap: 8px;
  }

  .sidebar-cat-icon { font-size: 14px; }

  .sidebar-cat-count {
    font-family: 'Manrope', sans-serif;
    font-size: 11px;
    color: #444;
    background: #1e1e1e;
    padding: 2px 7px;
    border-radius: 10px;
  }

  .sidebar-cat-item.active .sidebar-cat-count {
    background: rgba(232,93,48,0.15);
    color: #e85d30;
  }

  /* Фильтр цены */
  .sidebar-price { padding: 1rem 1.25rem; }

  .price-inputs {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    margin-bottom: 1rem;
  }

  .price-input {
    width: 100%;
    height: 36px;
    background: #1e1e1e;
    border: 1px solid #2e2e2e;
    border-radius: 6px;
    color: #fff;
    font-family: 'Manrope', sans-serif;
    font-size: 13px;
    padding: 0 10px;
    outline: none;
    transition: border-color 0.2s;
  }

  .price-input::placeholder { color: #444; }
  .price-input:focus { border-color: #e85d30; }

  .price-apply-btn {
    width: 100%;
    height: 36px;
    background: #2a2a2a;
    border: 1px solid #3a3a3a;
    border-radius: 6px;
    color: #999;
    font-family: 'Manrope', sans-serif;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s, color 0.2s;
  }

  .price-apply-btn:hover { background: #e85d30; color: #fff; border-color: #e85d30; }

  /* Бренды */
  .sidebar-brands { padding: 0.75rem 1.25rem; }

  .brand-item {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 0.4rem 0;
    cursor: pointer;
  }

  .brand-checkbox {
    width: 16px;
    height: 16px;
    border: 1px solid #3a3a3a;
    border-radius: 4px;
    background: #1e1e1e;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: background 0.2s, border-color 0.2s;
  }

  .brand-item.checked .brand-checkbox {
    background: #e85d30;
    border-color: #e85d30;
  }

  .brand-item.checked .brand-checkbox::after {
    content: '';
    width: 8px;
    height: 5px;
    border-left: 2px solid #fff;
    border-bottom: 2px solid #fff;
    transform: rotate(-45deg) translateY(-1px);
    display: block;
  }

  .brand-label {
    font-family: 'Manrope', sans-serif;
    font-size: 13px;
    color: #666;
    transition: color 0.2s;
  }

  .brand-item.checked .brand-label { color: #fff; }
  .brand-item:hover .brand-label { color: #999; }

  /* ─── ОСНОВНОЙ КОНТЕНТ ─── */
  .catalog-main { min-width: 0; }

  /* Топбар */
  .catalog-topbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1.25rem;
    gap: 1rem;
    flex-wrap: wrap;
  }

  .catalog-topbar-left {
    font-family: 'Manrope', sans-serif;
    font-size: 13px;
    color: #555;
  }

  .catalog-topbar-left span { color: #fff; font-weight: 600; }

  .catalog-topbar-right {
    display: flex;
    align-items: center;
    gap: 10px;
  }

  .catalog-sort {
    height: 36px;
    background: #161616;
    border: 1px solid #2a2a2a;
    border-radius: 6px;
    color: #999;
    font-family: 'Manrope', sans-serif;
    font-size: 13px;
    padding: 0 10px;
    outline: none;
    cursor: pointer;
    transition: border-color 0.2s;
  }

  .catalog-sort:focus { border-color: #e85d30; }

  .catalog-view-btns {
    display: flex;
    gap: 4px;
  }

  .catalog-view-btn {
    width: 36px;
    height: 36px;
    background: #161616;
    border: 1px solid #2a2a2a;
    border-radius: 6px;
    color: #555;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: border-color 0.2s, color 0.2s;
  }

  .catalog-view-btn.active,
  .catalog-view-btn:hover { border-color: #e85d30; color: #e85d30; }

  /* Сетка товаров */
  .catalog-products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
  }

  .products-grid.list-view {
    grid-template-columns: 1fr;
  }

  .products-grid.list-view .product-card {
    display: grid;
    grid-template-columns: 140px 1fr auto;
    align-items: center;
  }

  .products-grid.list-view .product-card-img,
  .products-grid.list-view .product-card-img-placeholder {
    width: 140px;
    height: 140px;
    aspect-ratio: unset;
    border-radius: 10px 0 0 10px;
  }

  .products-grid.list-view .product-card-body {
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    gap: 1rem;
    padding: 1.25rem;
  }

  .products-grid.list-view .btn-add-cart {
    width: auto;
    padding: 0 1.5rem;
  }

  /* Пагинация */
  .catalog-pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    margin-top: 2rem;
  }

  .pagination-btn {
    width: 38px;
    height: 38px;
    background: #161616;
    border: 1px solid #2a2a2a;
    border-radius: 8px;
    color: #666;
    font-family: 'Manrope', sans-serif;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: border-color 0.2s, color 0.2s, background 0.2s;
    text-decoration: none;
  }

  .pagination-btn:hover { border-color: #e85d30; color: #e85d30; }
  .pagination-btn.active { background: #e85d30; border-color: #e85d30; color: #fff; }
  .pagination-btn.disabled { opacity: 0.3; cursor: default; pointer-events: none; }

  /* Мобильная кнопка фильтра */
  .catalog-filter-toggle {
    display: none;
    align-items: center;
    gap: 8px;
    height: 40px;
    padding: 0 1.25rem;
    background: #161616;
    border: 1px solid #2a2a2a;
    border-radius: 8px;
    color: #999;
    font-family: 'Manrope', sans-serif;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: border-color 0.2s, color 0.2s;
  }

  .catalog-filter-toggle:hover { border-color: #e85d30; color: #e85d30; }

  /* Оверлей сайдбара на мобильном */
  .sidebar-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.65);
    z-index: 500;
    display: none;
    cursor: pointer;
  }

  .sidebar-overlay.open { display: block; }

  /* ─── АДАПТИВ ─── */
  @media (max-width: 1024px) {
    .catalog-products-grid { grid-template-columns: repeat(2, 1fr); }
  }

  @media (max-width: 768px) {
    .catalog-page { padding: 1rem; }
    .catalog-hero-title { font-size: 1.8rem; }

    .catalog-layout { grid-template-columns: 1fr; }

    .catalog-sidebar {
      position: fixed;
      top: 0;
      left: -280px;
      width: 280px;
      height: 100%;
      background: #0f0f0f;
      z-index: 501;
      overflow-y: auto;
      transition: left 0.3s cubic-bezier(0.4,0,0.2,1);
      border-right: 1px solid #2a2a2a;
      padding: 1rem;
    }

    .catalog-sidebar.open { left: 0; }

    .catalog-filter-toggle { display: flex; }

    .catalog-products-grid { grid-template-columns: repeat(2, 1fr); }

    .products-grid.list-view { grid-template-columns: 1fr; }
    .products-grid.list-view .product-card {
      grid-template-columns: 90px 1fr;
    }
    .products-grid.list-view .product-card-img,
    .products-grid.list-view .product-card-img-placeholder {
      width: 90px;
      height: 90px;
    }
    .products-grid.list-view .product-card-body {
      grid-template-columns: 1fr;
    }
    .products-grid.list-view .btn-add-cart {
      width: 100%;
    }
  }

  @media (max-width: 480px) {
    .catalog-products-grid { grid-template-columns: 1fr; }
  }
/* ─── МОБИЛЬНЫЕ КАРТОЧКИ 2 В РЯД ─── */
@media (max-width: 768px) {
  .products-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 0.75rem !important;
  }

  .product-card-img,
  .product-card-img-placeholder {
    aspect-ratio: 1 / 1 !important;
  }

  .product-card-body {
    padding: 0.6rem !important;
    gap: 5px !important;
  }

  .product-card-name {
    font-size: 11px !important;
    line-height: 1.3 !important;
  }

  .product-card-price {
    font-size: 1.1rem !important;
  }

  .btn-add-cart {
    height: 36px !important;
    font-size: 0 !important;
    gap: 0 !important;
  }

  .btn-add-cart svg {
    display: none !important;
  }

  .btn-add-cart::after {
    content: 'Добавить';
    font-size: 12px;
    font-family: 'Manrope', sans-serif;
    font-weight: 700;
  }

  .btn-add-cart.added::after {
    content: 'В корзине ✓';
  }
}

/* ─── НИЖНЕЕ МОБИЛЬНОЕ МЕНЮ ─── */
.mobile-bottom-nav {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #0a0a0a;
  border-top: 1px solid #2a2a2a;
  z-index: 500;
  padding: 6px 0 8px;
  padding-bottom: calc(6px + env(safe-area-inset-bottom));
}

.mobile-bottom-nav-items {
  display: flex;
  align-items: center;
  justify-content: space-around;
}

.mobile-bottom-nav-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
  text-decoration: none;
  color: #555;
  font-family: 'Manrope', sans-serif;
  font-size: 10px;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 8px;
  transition: color 0.2s;
  position: relative;
  min-width: 56px;
}

.mobile-bottom-nav-item.active,
.mobile-bottom-nav-item:hover {
  color: #e85d30;
}

.mobile-bottom-nav-item svg {
  width: 22px;
  height: 22px;
}

.mobile-bottom-nav-badge {
  position: absolute;
  top: 2px;
  right: 8px;
  background: #e85d30;
  color: #fff;
  font-size: 9px;
  font-weight: 700;
  min-width: 16px;
  height: 16px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 3px;
}

@media (max-width: 768px) {
  .mobile-bottom-nav { display: block; }
  body { padding-bottom: 60px; }
}

/* ─── ЗАКРЕПЛЁННЫЙ ПОИСК НА МОБИЛЬНОМ ─── */
@media (max-width: 768px) {
  .mobile-search-bar {
    background: #0a0a0a;
    border-bottom: 1px solid #1e1e1e;
    padding: 8px 1rem;
  }
}

/* ─── WRAPPER ─── */
.wrapper {
  box-sizing: border-box;
  margin: 0 auto;
  max-width: 1440px;
  padding: 0 0px;
  width: 100%;
}

@media (max-width: 768px) {
  .wrapper { padding: 0 0px; }
}

@media (max-width: 768px) {
  .navbar-custom .container {
    padding: 0 0rem;
    gap: 0.5rem;
  }
}

@media (max-width: 768px) {
  .navbar-custom .container {
    max-width: 100%;
    padding: 0;
    margin: 0;
    width: 100%;
  }
}

.navbar-container {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  height: 100%;
}

@media (max-width: 768px) {
  .navbar-container {
    max-width: 100%;
    padding: 0 1rem;
    margin: 0;
    width: 100%;
    justify-content: space-between;
  }
}

/* ─── ТОПБАР ─── */
.topbar {
  background: #080808;
  height: 36px;
  border-bottom: 1px solid #1a1a1a;
}

.topbar-links {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  list-style: none;
}

.topbar-links a {
  font-family: 'Manrope', sans-serif;
  font-size: 12px;
  color: #555;
  text-decoration: none;
  transition: color 0.2s;
}

.topbar-links a:hover {
  color: #fff;
}

/* ─── ИЗБРАННОЕ ─── */
.wishlist-btn {
  position: absolute;
  top: 8px;
  right: 8px;
  width: 32px;
  height: 32px;
  background: rgba(22,22,22,0.9);
  border: 1px solid #2a2a2a;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  padding-top: 2px;
  transition: all 0.2s;
  z-index: 5;
  color: #555;
}

.wishlist-btn:hover {
  border-color: #3a3a3a;
  color: #777;
}

.wishlist-btn.in-wishlist {
  background: rgba(232,93,48,0.15);
  border-color: #e85d30;
  color: #e85d30;
}

.wishlist-btn svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
}

/* ─── ПРЕДОТВРАЩЕНИЕ ГОРИЗОНТАЛЬНОГО СКРОЛЛА ─── */
body { overflow-x: hidden; }
img { max-width: 100%; }

@media (max-width: 768px) {
  .product-gallery { max-width: 100%; overflow: hidden; }
  .product-gallery-main { max-width: 100%; }
  .product-gallery-main img { max-width: 100%; height: auto; }
}

/* ─── ОТКЛЮЧЕНИЕ ЗУМА НА ИНПУТАХ (МОБИЛЬНАЯ) ─── */
@media (max-width: 768px) {
  input, textarea, select {
    font-size: 16px !important;
  }
}



@media (min-width: 769px) {
  .product-card-body {
    align-items: flex-start;
  }
}

@media (min-width: 769px) {
  #productsGrid.list-view .product-card-body {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
  #productsGrid.list-view .btn-add-cart {
    width: auto !important;
    padding: 0 1.25rem !important;
    white-space: nowrap;
    flex-shrink: 0;
  }
}

/* ─── ОБРЕЗКА ТЕКСТА В КОРЗИНЕ ─── */
.cart-item-name {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 100%;
  display: block;
}
.cart-item-info {
  min-width: 0;
  overflow: hidden;
}

@media (max-width: 768px) {
  .cart-page { padding: 1rem; overflow-x: hidden; }
  .cart-grid { grid-template-columns: 1fr; }
  .cart-item { gap: 10px; }
  .cart-item-img { width: 80px; height: 80px; flex-shrink: 0; }
  .cart-item-info { min-width: 0; flex: 1; overflow: hidden; }
  .cart-item-right { flex-direction: row; align-items: center; gap: 8px; }
  .cart-summary { width: 100%; }
}

@media (max-width: 768px) {
  .cart-promo-wrap { flex-direction: column; gap: 8px; }
  .cart-promo-input { width: 100%; }
  .cart-promo-btn { width: 100%; }
}
