/* -------------------------------------------------------
 * Featured Deals On Combos Section
 * ----------------------------------------------------- */
.combo-deals {
  padding: 80px 0;
  background: var(--combo-deals-bg, linear-gradient(180deg, #063DA2 0%, #02173C 100%));
  overflow: hidden;
  position: relative;
  z-index: 2;
}

.combo-deals__container {
  position: relative;
}

.combo-deals__title {
  text-align: center;
  color: #fff;
  font-size: var(--testimonials-title-font-size, var(--featured-title-font-size, 32px));
  font-family: var(--testimonials-title-font-family, var(--font-heading));
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin: 0 0 32px;
}

.combo-deals__wrapper {
  display: flex;
  align-items: center;
  gap: 16px;
  position: relative;
}

.combo-deals__track {
  display: flex;
  gap: 20px;
  flex: 1;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
}

.combo-deals__track::-webkit-scrollbar {
  height: 6px;
}

.combo-deals__track::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.35);
  border-radius: 3px;
}

.combo-deals__card {
  display: flex;
  flex-direction: row-reverse;
  align-items: stretch;
  justify-content: space-between;
  flex: 0 0 calc(50% - 10px);
  min-width: calc(50% - 10px);
  background: #fff;
  border-radius: 16px;
  padding: 16px 0 16px 24px;
  text-decoration: none;
  overflow: hidden;
}

.combo-deals__content {
  display: flex;
  flex-direction: column;
  gap: 14px;
  flex: 1;
  justify-content: center;
}

.combo-deals__card-title {
  font-size: 28px;
  font-weight: 700;
  color: #1a1a1a;
  margin: 0;
  line-height: 1.25;
}

.combo-deals__subtitle {
  font-size: 19px;
  color: #444;
  margin: 0;
  font-weight: 500;
  line-height: 1.35;
}

.combo-deals__savings {
  font-size: 17px;
  font-weight: 700;
  color: #1a1a1a;
  margin: 0;
  line-height: 1.3;
}

.combo-deals__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--home-primary-cta-gap, 8px);
  box-sizing: border-box;
  min-height: var(--home-primary-cta-min-height, 52px);
  padding: var(--home-primary-cta-padding-y, 16px) var(--home-primary-cta-padding-x, 36px);
  background: var(--color-primary, #1a3264);
  color: #fff;
  border-radius: var(--cta-border-radius, 8px);
  font-size: var(--home-primary-cta-font-size, 16px);
  font-weight: var(--home-primary-cta-font-weight, 600);
  letter-spacing: var(--home-primary-cta-letter-spacing, 0.02em);
  line-height: var(--home-primary-cta-line-height, 1.2);
  margin: 0;
  align-self: flex-start;
}

@media (min-width: 901px) {
  .combo-deals__track {
    overflow: hidden;
    scrollbar-width: none;
  }

  .combo-deals__track::-webkit-scrollbar {
    display: none;
  }
}

.combo-deals__coupon {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--color-primary, #1a3264);
  color: #fff;
  border: none;
  border-radius: 24px;
  padding: 10px 18px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease;
  align-self: flex-start;
}

.combo-deals__coupon:hover {
  background: var(--color-primary-hover, #0f2149);
  transform: scale(1.02);
}

.combo-deals__coupon:active {
  transform: scale(0.98);
}

.combo-deals__coupon.copied {
  background: var(--color-text, #121722);
}

.combo-deals__coupon svg {
  flex-shrink: 0;
}

.combo-deals__image {
  flex: 0 0 260px;
  min-width: 200px;
  display: flex;
  align-items: stretch;
  justify-content: stretch;
  overflow: hidden;
  border-radius: 0 16px 16px 0;
  margin: -16px 0 -16px 0;
}

.combo-deals__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* First card image: match width of second card (content area is narrower in first card) */
.combo-deals__card:first-child .combo-deals__image {
  flex: 0 0 280px;
  min-width: 240px;
}

/* Navigation Arrows — mobile only (desktop shows both cards without scrolling) */
.combo-deals__arrow {
  display: none;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background: rgba(255, 255, 255, 0.15);
  border: none;
  border-radius: 50%;
  color: #fff;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease;
  flex-shrink: 0;
}

.combo-deals__arrow:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: scale(1.05);
}

.combo-deals__arrow:active {
  transform: scale(0.95);
}

.combo-deals__arrow svg {
  width: 20px;
  height: 20px;
}

/* -------------------------------------------------------
 * Responsive
 * ----------------------------------------------------- */
@media (max-width: 900px) {
  .combo-deals__arrow {
    display: none;
  }

  .combo-deals__wrapper {
    align-items: stretch;
  }

  .combo-deals__track {
    flex-direction: column;
    flex: none;
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
    overflow-y: visible;
    gap: 16px;
    padding-bottom: 0;
    scroll-snap-type: none;
  }

  .combo-deals__card {
    flex: 0 0 auto;
    width: 100%;
    max-width: 100%;
    min-width: 0;
    flex-direction: column;
    text-align: center;
    padding: 20px;
  }

  .combo-deals__content {
    align-items: center;
    width: 100%;
  }

  .combo-deals__cta {
    align-self: center;
  }

  .combo-deals__coupon {
    align-self: center;
  }

  .combo-deals__image {
    flex: 0 0 auto;
    align-self: stretch;
    min-width: 0;
    width: calc(100% + 40px);
    max-height: 200px;
    margin: -20px -20px 16px -20px;
    border-radius: 16px 16px 0 0;
  }

  .combo-deals__image img {
    max-height: 200px;
    object-fit: contain;
    object-position: center;
  }

  .combo-deals__card:first-child .combo-deals__image {
    flex: 0 0 auto;
    min-width: 0;
  }

  .combo-deals__card-title {
    font-size: 24px;
  }

  .combo-deals__subtitle {
    font-size: 17px;
  }

  .combo-deals__savings {
    font-size: 16px;
  }
}

@media (max-width: 600px) {
  .combo-deals {
    padding: 50px 0;
  }

  .combo-deals__title {
    margin-bottom: 24px;
  }
}

@media (max-width: 400px) {
  .combo-deals__card-title {
    font-size: 20px;
  }

  .combo-deals__subtitle {
    font-size: 16px;
  }

  .combo-deals__savings {
    font-size: 15px;
  }

  .combo-deals__coupon {
    padding: 8px 14px;
    font-size: 13px;
  }
}