/* ══════════════════════════════
   БАННЕРЫ НА ГЛАВНОЙ (карусель + товарный баннер)
══════════════════════════════ */
.promo-banners {
  display: grid;
  grid-template-columns: 1fr 260px;
  gap: 16px;
  margin-bottom: 24px;
}
.promo-carousel {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  background: #0b2545;
  min-height: 220px;
}
.promo-carousel-track {
  display: flex;
  height: 100%;
  transition: transform 0.4s ease;
}
.promo-slide {
  position: relative;
  flex: 0 0 100%;
  min-height: 220px;
  display: flex;
  align-items: center;
  color: #fff;
  text-decoration: none;
  overflow: hidden;
}
.promo-slide img.promo-slide-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: right;
  z-index: 0;
}
.promo-slide .img-placeholder {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  min-height: 0;
}
.promo-slide-content {
  position: relative;
  z-index: 1;
  padding: 32px 40px;
  max-width: 60%;
}
.promo-slide-subtitle {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  opacity: 0.85;
  margin-bottom: 8px;
}
.promo-slide-title {
  font-size: 24px;
  font-weight: 700;
  line-height: 1.25;
  margin-bottom: 12px;
}
.promo-slide-desc {
  font-size: 14px;
  opacity: 0.9;
}
.promo-slide-badge {
  position: absolute;
  top: 50%;
  right: 40px;
  transform: translateY(-50%);
  background: #e05a00;
  color: #fff;
  border-radius: 10px;
  padding: 14px 20px;
  text-align: center;
  font-weight: 700;
  font-size: 22px;
  line-height: 1.1;
  z-index: 1;
}
.promo-carousel-dots {
  position: absolute;
  bottom: 14px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 6px;
  z-index: 2;
}
.promo-carousel-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
  border: none;
  cursor: pointer;
  padding: 0;
}
.promo-carousel-dot.active {
  background: #fff;
}
.promo-carousel-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  border: none;
  color: #fff;
  cursor: pointer;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
}
.promo-carousel-arrow:hover {
  background: rgba(255, 255, 255, 0.3);
}
.promo-carousel-arrow.prev {
  left: 12px;
}
.promo-carousel-arrow.next {
  right: 12px;
}
.promo-featured {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  background: #0b2545;
  height: 260px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: #fff;
  text-align: center;
}
.promo-featured img.promo-slide-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 0;
}
.promo-featured .img-placeholder {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  min-height: 0;
}
.promo-featured-content {
  position: relative;
  z-index: 1;
  padding: 24px;
}
.promo-featured-subtitle {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  opacity: 0.85;
  margin-bottom: 8px;
}
.promo-featured-title {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 6px;
}
.promo-featured-badge {
  font-size: 13px;
  opacity: 0.9;
  margin-bottom: 14px;
}
.promo-featured-cta {
  display: inline-block;
  background: #e05a00;
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  padding: 8px 16px;
  border-radius: 6px;
}

@media (max-width: 900px) {
  .promo-banners {
    grid-template-columns: 1fr;
  }
  .promo-featured {
    height: 200px;
  }
}
@media (max-width: 700px) {
  .promo-carousel,
  .promo-slide {
    min-height: 190px;
  }
  .promo-slide-content {
    max-width: 70%;
    padding: 22px 24px;
  }
  .promo-slide-title {
    font-size: 19px;
  }
  .promo-slide-badge {
    right: 20px;
    font-size: 17px;
    padding: 10px 14px;
  }
}
@media (max-width: 480px) {
  .promo-carousel,
  .promo-slide {
    min-height: 170px;
  }
  .promo-slide-content {
    max-width: 100%;
    padding: 16px 18px;
  }
  .promo-slide-desc {
    display: none;
  }
  .promo-slide-badge {
    top: auto;
    bottom: 14px;
    right: 14px;
    transform: none;
    font-size: 14px;
    padding: 8px 12px;
  }
  .promo-featured {
    height: 170px;
  }
  .promo-featured-title {
    font-size: 18px;
  }
}

/* ══════════════════════════════
   СПИСОК АКЦИЙ (/promotions)
══════════════════════════════ */
.promo-list-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
  margin-top: 24px;
}
.promo-list-card {
  display: block;
  text-decoration: none;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid var(--gray1);
  background: #fff;
  transition: transform 0.15s ease, box-shadow 0.15s ease, border-color 0.15s ease;
}
.promo-list-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  border-color: var(--pc-border-hover);
}
.promo-list-img {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: var(--gray1);
}
.promo-list-img img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: right;
}
.promo-list-img .img-placeholder {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  min-height: 0;
}
.promo-list-body {
  padding: 16px;
}
.promo-list-subtitle {
  font-size: 12px;
  color: var(--gray3);
  text-transform: uppercase;
  margin-bottom: 4px;
}
.promo-list-title {
  font-size: 16px;
  font-weight: 600;
  color: var(--text);
}