/* ===== Promo Slider + Widget ===== */
.promo-section {
  padding: 0 0 32px;
  background: #f8fafc;
}

.promo-container {
  max-width: 1260px;
  width: 100%;
  margin: 0 auto;
}

.promo-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 20px;
  align-items: stretch;
}

/* ----- Slider ----- */
.promo-slider {
  position: relative;
  background: #ffffff;
  border: 1px solid #e8edf3;
  border-radius: 10px;
  box-shadow: 0 2px 14px rgba(15, 23, 42, 0.07);
  overflow: hidden;
  min-height: 280px;
}

.promo-slider-viewport {
  overflow: hidden;
  width: 100%;
  height: 100%;
}

.promo-slider-track {
  display: flex;
  height: 100%;
  transition: transform 0.6s ease-in-out;
  will-change: transform;
}

.promo-slide {
  flex: 0 0 100%;
  width: 100%;
  min-width: 100%;
  display: block;
  line-height: 0;
  min-height: 280px;
}

.promo-slide img {
  width: 100%;
  height: 100%;
  min-height: 280px;
  display: block;
  object-fit: cover;
  object-position: center;
}

.promo-slider-dots {
  position: absolute;
  left: 50%;
  bottom: 14px;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 6px;
  z-index: 2;
}

.promo-slider-dot {
  width: 28px;
  height: 4px;
  padding: 0;
  border: none;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.55);
  cursor: pointer;
  transition: background 0.25s, width 0.25s;
}

.promo-slider-dot.is-active {
  width: 36px;
  background: #92c866;
}

.promo-slider-dot:hover:not(.is-active) {
  background: rgba(255, 255, 255, 0.85);
}

/* ----- Sidebar Widget ----- */
.promo-widget {
  display: flex;
  flex-direction: column;
  background: #ffffff;
  border: 1px solid #e8edf3;
  border-radius: 10px;
  box-shadow: 0 2px 14px rgba(15, 23, 42, 0.07);
  padding: 22px 20px 20px;
}

.promo-widget-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 8px;
}

.promo-widget-title {
  font-size: 0.9375rem;
  font-weight: 800;
  line-height: 1.25;
  letter-spacing: 0.02em;
  color: #1a202c;
  text-transform: uppercase;
}

.promo-widget-icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff3e0;
  border-radius: 10px;
  color: #ff6600;
}

.promo-widget-accent {
  width: 42px;
  height: 3px;
  background: #2d5be3;
  border-radius: 999px;
  margin-bottom: 14px;
}

.promo-widget-text {
  font-size: 0.8125rem;
  line-height: 1.55;
  color: #4a5568;
  margin-bottom: 18px;
  flex: 1;
}

.promo-widget-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 12px 16px;
  font-size: 0.8125rem;
  font-weight: 600;
  border-radius: 8px;
  text-align: center;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}

.promo-widget-btn--primary {
  background: #edf2f7;
  color: #2d3748;
  border: 1px solid #dde4ec;
}

.promo-widget-btn--primary:hover {
  background: #e2e8f0;
  border-color: #cbd5e0;
}

.promo-widget-divider {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 14px 0;
  color: #a0aec0;
  font-size: 0.75rem;
  font-weight: 500;
}

.promo-widget-divider::before,
.promo-widget-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: #e2e8f0;
}

.promo-widget-btn--secondary {
  background: #ebf4ff;
  color: #2d3748;
  border: 1px solid #bee3f8;
}

.promo-widget-btn--secondary:hover {
  background: #dbeafe;
  border-color: #90cdf4;
}

.promo-widget-benefits {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 16px;
}

.promo-widget-benefit {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.75rem;
  font-weight: 500;
  color: #718096;
}

.promo-widget-benefit svg {
  flex-shrink: 0;
  color: #92c866;
}

/* ===== Responsive ===== */
@media (max-width: 1292px) {
  .promo-container {
    padding: 0 16px;
  }
}

@media (max-width: 1024px) {
  .promo-grid {
    grid-template-columns: 1fr;
  }

  .promo-widget {
    order: 2;
  }
}

@media (max-width: 768px) {
  .promo-section {
    padding-bottom: 24px;
  }

  .promo-slide,
  .promo-slide img {
    min-height: 220px;
  }

  .promo-slider {
    min-height: 220px;
  }

  .promo-slider-dot {
    width: 22px;
  }

  .promo-slider-dot.is-active {
    width: 30px;
  }
}
