/* Modern hero slider — homepage */
:root {
  --hero-orange: #ff7b00;
  --hero-dark: #0c0c0d;
  --hero-shell: 1500px;
}

.hero-slider {
  position: relative;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  min-height: clamp(460px, 68vh, 600px);
  overflow: hidden;
  background: var(--hero-dark);
  color: #fff;
  font-family: Inter, system-ui, sans-serif;
}

.hero-slider__viewport {
  position: relative;
  min-height: inherit;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.65s ease, visibility 0.65s;
  display: flex;
  align-items: center;
}

.hero-slide--active {
  opacity: 1;
  visibility: visible;
  z-index: 2;
}

.hero-slide__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center 30%;
  transform: scale(1.04);
  transition: transform 8s ease;
}

.hero-slide--active .hero-slide__bg {
  transform: scale(1);
}

.hero-slide__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    95deg,
    rgba(0, 0, 0, 0.9) 0%,
    rgba(0, 0, 0, 0.72) 38%,
    rgba(0, 0, 0, 0.35) 62%,
    rgba(0, 0, 0, 0.12) 100%
  );
  z-index: 1;
}

.hero-slide__inner {
  position: relative;
  z-index: 3;
  width: 100%;
  max-width: var(--hero-shell);
  margin: 0 auto;
  padding: calc(var(--mnd-header-h, 72px) + 28px) 32px 108px;
}

.hero-slide__content {
  max-width: 920px;
}

.hero-promo-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 7px 14px 7px 7px;
  border-radius: 999px;
  background: rgba(255, 123, 0, 0.14);
  border: 1px solid rgba(255, 123, 0, 0.4);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 16px;
}

.hero-promo-badge__flash {
  background: var(--hero-orange);
  color: #fff;
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 10px;
}

.hero-discount-tag {
  display: inline-block;
  margin-right: 10px;
  padding: 2px 12px;
  border-radius: 10px;
  background: var(--hero-orange);
  color: #fff;
  font-size: 0.55em;
  vertical-align: middle;
  letter-spacing: -0.02em;
}

.hero-slide__eyebrow {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(255, 255, 255, 0.6);
  margin: 0 0 12px;
}

.hero-slide__title {
  font-size: clamp(28px, 3.8vw, 46px);
  font-weight: 900;
  line-height: 1.08;
  margin: 0 0 14px;
  text-transform: uppercase;
}

.hero-slide__title span:not(.hero-discount-tag) {
  color: var(--hero-orange);
}

.hero-slide__lead {
  font-size: clamp(14px, 1.5vw, 17px);
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.82);
  margin: 0 0 22px;
}

.hero-slide__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  margin-bottom: 22px;
}

.hero-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 22px;
  border-radius: 12px;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: transform 0.25s, background 0.25s, color 0.25s;
  white-space: nowrap;
}

.hero-btn--primary {
  background: var(--hero-orange);
  color: #fff;
  box-shadow: 0 6px 22px rgba(255, 123, 0, 0.35);
}

.hero-btn--primary:hover {
  transform: translateY(-2px);
  background: #ff9226;
}

.hero-btn--ghost {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.22);
}

.hero-btn--ghost:hover {
  background: rgba(255, 255, 255, 0.16);
  color: var(--hero-orange);
}

.hero-perks {
  list-style: none;
  margin: 0 0 20px;
  padding: 0;
  display: grid;
  gap: 10px;
}

.hero-perks li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.88);
  line-height: 1.4;
}

.hero-perks__icon {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: rgba(255, 123, 0, 0.14);
  color: var(--hero-orange);
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-perks__icon svg {
  width: 16px;
  height: 16px;
}

.hero-cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  max-width: 680px;
}

.hero-card {
  padding: 12px 14px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.hero-card strong {
  display: block;
  font-size: 18px;
  font-weight: 800;
  color: var(--hero-orange);
  margin-bottom: 2px;
  line-height: 1.1;
}

.hero-card span {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.68);
  line-height: 1.3;
}

.hero-slide__aside {
  margin-top: 0;
}

.hero-discount-big {
  display: none;
}

/* Nav arrows — outside content column, aligned to shell edges */
.hero-slider__nav {
  position: absolute;
  inset: 0;
  z-index: 11;
  pointer-events: none;
}

.hero-slider__arrow {
  pointer-events: auto;
  position: absolute;
  top: 50%;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(0, 0, 0, 0.45);
  color: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition: background 0.2s, border-color 0.2s, transform 0.2s;
  transform: translateY(-50%);
}

.hero-slider__arrow--prev {
  left: max(16px, calc(50% - var(--hero-shell) / 2 - 64px));
}

.hero-slider__arrow--next {
  right: max(16px, calc(50% - var(--hero-shell) / 2 - 64px));
}

.hero-slider__arrow:hover {
  background: rgba(255, 123, 0, 0.35);
  border-color: var(--hero-orange);
  transform: translateY(-50%) scale(1.05);
}

.hero-slider__arrow svg {
  width: 18px;
  height: 18px;
}

.hero-slider__footer {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 10;
  padding: 0 0 14px;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
}

.hero-slider__footer-inner {
  max-width: var(--hero-shell);
  margin: 0 auto;
  padding: 12px 32px 0;
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 12px 24px;
}

.hero-slider__cities-label {
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.45);
  margin-bottom: 4px;
}

.hero-slider__cities {
  flex: 1;
  min-width: 200px;
  font-size: 13px;
  line-height: 1.5;
}

.hero-slider__cities a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: color 0.2s;
}

.hero-slider__cities a:hover {
  color: var(--hero-orange);
}

.hero-slider__dots {
  display: flex;
  gap: 8px;
  flex-shrink: 0;
}

.hero-slider__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: none;
  padding: 0;
  background: rgba(255, 255, 255, 0.35);
  cursor: pointer;
  transition: background 0.3s, transform 0.3s;
}

.hero-slider__dot--active {
  background: var(--hero-orange);
  transform: scale(1.25);
}

.hero-slider__social {
  display: none;
}

.hero-slider__progress {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 2px;
  width: 0;
  background: var(--hero-orange);
  z-index: 12;
  transition: width 0.1s linear;
}

.hero-slider__controls {
  display: none;
}

@media (max-width: 900px) {
  .hero-slider {
    min-height: auto;
    height: auto;
    margin-top: calc(-1 * var(--mnd-header-h, 64px));
    display: flex;
    flex-direction: column;
    overflow: hidden;
  }

  .hero-slider__viewport {
    min-height: auto;
    position: relative;
    flex: 1 1 auto;
  }

  .hero-slide {
    position: absolute;
    inset: 0;
    align-items: flex-start;
    height: auto;
    min-height: 100%;
  }

  .hero-slide--active {
    position: relative;
    inset: auto;
    min-height: 0;
    z-index: 2;
  }

  .hero-slide__inner {
    padding: calc(var(--mnd-header-h, 64px) + 16px) 20px 20px;
  }

  .hero-slider__footer {
    position: relative;
    bottom: auto;
    left: auto;
    right: auto;
    flex-shrink: 0;
    padding-bottom: 14px;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.85));
  }

  .hero-slider__nav {
    display: none;
  }

  .hero-slider__footer-inner {
    padding: 12px 20px 0;
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 600px) {
  .hero-cards {
    grid-template-columns: 1fr;
    max-width: 100%;
  }

  .hero-btn {
    width: 100%;
    justify-content: center;
  }

  .hero-slider__dots {
    align-self: center;
  }

  .hero-slide__title {
    font-size: clamp(22px, 6.5vw, 28px);
  }
}
