/* =========================
   Promo Landing (Refactored)
   ========================= */
.promo-landing {
  font-family: 'Merriweather', 'Georgia', serif;
}

.promo-landing h1 {
  text-align: center;
  margin-bottom: 10px;
  color: #ff6b6b;
  /* reuse story accent */
}

.intro-text {
  text-align: center;
  color: #bbb;
  margin-bottom: 30px;
  font-size: 1em;
  line-height: 1.6;
}

/* Section headings */
.promo-section h2 {
  margin-bottom: 10px;
  color: #ff6b6b;
}

/* Gallery thumbs (reuse story-image look) */
.promo-thumb img {
  width: 100%;
  border-radius: 6px;
  background-color: #2a2a2a;
  /* match story images */
  border: 2px solid #ff5c8d;
  /* highlight border */
  box-shadow: 0 2px 6px rgba(0, 0, 0, .4);
}

/* CTA buttons (reuse .category-pill palette) */
.cta-button {
  background: #ff5c8d;
  color: #fff;
  padding: 14px 28px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1rem;
  transition: background 0.3s, transform 0.2s;
  display: inline-block;
}

.cta-button:hover {
  background: #e60073;
  transform: scale(1.05);
}

.cta-button.secondary {
  background: #ff6b6b;
}

.cta-button.secondary:hover {
  background: #cc0066;
}

/* =========================
   Bundle Cards
   ========================= */
/* Reuse .story-card look but adapt for wider promo use */
.bundle-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 24px;
}

.bundle-card {
  background: #1f1f1f;
  /* match .story-card */
  border: 1px solid #ff5c8d;
  /* stronger border for promo */
  border-radius: 8px;
  padding: 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  color: #f0e6e6;
  box-shadow: 0 2px 8px rgba(0, 0, 0, .5);
}

.bundle-card h3 {
  margin-top: 0;
  color: #ff9cb5;
  /* softer pink for titles */
  font-size: 1.2em;
  text-align: center;
}

/* =========================
   Carousel
   ========================= */
.slider {
  width: 100%;
  overflow: hidden;
  margin: 16px auto;
  border-radius: 6px;
  position: relative;
}

.slider-track {
  display: flex;
  transition: transform .45s ease-in-out;
}

.slide {
  flex: 0 0 100%;
}

.slide img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 6px;
  border: 2px solid #ff5c8d;
  background-color: #2a2a2a;
  /* same as .story-image */
}

/* arrows overlay */
.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  border: 0;
  padding: 6px 10px;
  border-radius: 50%;
  font-size: 18px;
  color: #fff;
  background: rgba(0, 0, 0, .45);
  cursor: pointer;
  z-index: 2;
}

.carousel-btn:hover {
  background: rgba(0, 0, 0, .75);
}

.carousel-btn.prev {
  left: 10px;
}

.carousel-btn.next {
  right: 10px;
}

/* Buy Now button inside bundles */
.bundle-card .promo-cta .cta-button.secondary {
  width: 100%;
  padding: 14px 0;
  text-align: center;
  font-size: 1rem;
  background: #ff5c8d;
}

.bundle-card .promo-cta .cta-button.secondary:hover {
  background: #e60073;
}

/* Square container */
.promo-thumb,
.slide {
  position: relative;
  width: 100%;
  padding-top: 100%;
  /* ✅ 1:1 aspect ratio via padding hack */
  background-color: #1a1a1a;
  /* dark background */
  border: 2px solid #ff5c8d;
  border-radius: 8px;
  overflow: hidden;
}

/* Place image inside without cropping */
.promo-thumb img,
.slide img {
  position: absolute;
  top: 50%;
  left: 50%;
  max-width: 100%;
  max-height: 100%;
  transform: translate(-50%, -50%);
  object-fit: contain;
  /* ✅ shows whole image */
  border-radius: 6px;
}

/* Strong CTA Buttons */
.cta-button,
.bundle-card .promo-cta .cta-button.secondary {
  display: block;
  width: 100%;
  max-width: 360px;
  /* wider buttons */
  margin: 18px auto 0;
  padding: 18px 0;
  /* taller tap area */
  font-size: 1.25rem;
  /* ~22px text */
  font-weight: 700;
  text-align: center;
  border-radius: 10px;
  background: #ff5c8d;
  color: #fff;
  box-shadow: 0 4px 14px rgba(255, 92, 141, 0.4);
  transition: background 0.3s ease, transform 0.2s ease;
}

.cta-button:hover,
.bundle-card .promo-cta .cta-button.secondary:hover {
  background: #e60073;
  transform: translateY(-2px);
}

/* =========================
   Responsive
   ========================= */
@media (max-width: 768px) {
  .container.promo-landing {
    max-width: 100%;
    margin: 20px auto;
    padding: 15px;
  }

  .bundle-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .cta-button {
    width: 100%;
    text-align: center;
  }

  .slider {
    max-width: 95%;
  }
}