/*
  Homepage Styles — Crumble & Co.
  Page-specific styles for index.html.
  All values reference design tokens from tokens.css.
*/

/* ========================================
   Keyframe Animations
   ======================================== */

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInLeft {
  from { opacity: 0; transform: translateX(-40px); }
  to { opacity: 1; transform: translateX(0); }
}

@keyframes fadeInRight {
  from { opacity: 0; transform: translateX(40px); }
  to { opacity: 1; transform: translateX(0); }
}

@keyframes pulse-glow {
  0%, 100% { box-shadow: 0 4px 18px rgba(224, 96, 126, 0.35); }
  50% { box-shadow: 0 4px 28px rgba(224, 96, 126, 0.55); }
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

@keyframes marquee-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ========================================
   Hero Section
   ======================================== */

.hero {
  position: relative;
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  text-align: center;
  color: var(--color-bg);
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url('../../images/hero/hero-main.jpg');
  background-size: cover;
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-position: center center;
  z-index: 0;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(30, 18, 24, 0.55) 0%,
    rgba(30, 18, 24, 0.7) 50%,
    rgba(42, 21, 37, 0.8) 100%
  );
  z-index: 1;
}

/* Pink/purple radial glow */
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 25% 40%, rgba(224, 96, 126, 0.18), transparent 55%),
    radial-gradient(ellipse at 75% 60%, rgba(122, 81, 149, 0.14), transparent 55%);
  z-index: 2;
  pointer-events: none;
}

.hero__inner {
  position: relative;
  z-index: 3;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: var(--space-10) var(--space-4);
}

.hero__content {
  animation: fadeInUp 500ms ease-out both;
}

.hero__badge {
  display: inline-block;
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: 600;
  letter-spacing: var(--tracking-wide);
  text-transform: uppercase;
  color: var(--color-warm);
  margin-bottom: var(--space-4);
  padding: var(--space-2) var(--space-5);
  border: 1px solid rgba(232, 197, 160, 0.4);
  border-radius: var(--radius-full);
  animation: fadeInUp 600ms ease-out both;
}

.hero__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 2.5rem;
  line-height: 1.1;
  color: var(--color-bg);
  margin-bottom: var(--space-4);
  animation: fadeInUp 600ms ease-out 100ms both;
}

.hero__tagline {
  font-size: var(--text-lg);
  color: rgba(255, 255, 255, 0.82);
  max-width: 560px;
  margin: 0 auto var(--space-8);
  line-height: 1.6;
  animation: fadeInUp 600ms ease-out 200ms both;
}

.hero__actions {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  align-items: center;
  animation: fadeInUp 600ms ease-out 300ms both;
}

.hero .btn--primary {
  animation: pulse-glow 3s ease-in-out infinite;
}

.hero__btn-secondary {
  background-color: transparent;
  color: var(--color-bg);
  border-color: rgba(255, 255, 255, 0.4);
}

.hero__btn-secondary:hover {
  background-color: rgba(255, 255, 255, 0.08);
  color: var(--color-bg);
  border-color: var(--color-bg);
}

@media (min-width: 768px) {
  .hero__actions {
    flex-direction: row;
    justify-content: center;
    gap: var(--space-4);
  }

  .hero__inner {
    padding: var(--space-12) var(--gutter);
  }

  .hero__title {
    font-size: var(--text-4xl);
  }
}

@media (min-width: 1024px) {
  .hero {
    min-height: 65vh;
  }

  .hero__title {
    font-size: 4.5rem;
  }

  .hero__tagline {
    font-size: 1.25rem;
  }
}

/* ========================================
   Trust Marquee
   ======================================== */

.trust-marquee {
  background: var(--color-accent);
  color: var(--color-bg);
  padding: var(--space-4) 0;
  overflow: hidden;
}

.trust-marquee__track {
  display: flex;
  width: max-content;
  animation: marquee-scroll 25s linear infinite;
}

.trust-marquee__content {
  display: flex;
  gap: var(--space-10);
  padding-right: var(--space-10);
  flex-shrink: 0;
}

.trust-marquee__item {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: var(--text-sm);
  letter-spacing: var(--tracking-wide);
  text-transform: uppercase;
  white-space: nowrap;
}

.trust-marquee__item i {
  font-size: 1.125rem;
}

@media (prefers-reduced-motion: reduce) {
  .trust-marquee__track {
    animation: none;
    justify-content: center;
    flex-wrap: wrap;
    width: auto;
    gap: var(--space-6);
    padding: var(--space-2) var(--space-4);
  }

  .trust-marquee__content:last-child {
    display: none;
  }

  .trust-marquee__content {
    gap: var(--space-6);
    padding-right: 0;
  }
}

/* ========================================
   Best Sellers — Crumbl Homepage Style
   Full-width hero rows, one product each
   ======================================== */

.bestsellers {
  padding: var(--space-16) var(--space-6);
  background: var(--color-bg);
  display: flex;
  flex-direction: column;
  gap: var(--space-6);
}

.bestsellers__header {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--space-4) var(--space-10);
  text-align: center;
}

.bestsellers__label {
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: var(--space-2);
}

.bestsellers__heading {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: var(--text-2xl);
  color: var(--color-text);
  margin-bottom: var(--space-2);
}

.bestsellers__subtext {
  color: var(--color-text-muted);
  max-width: 520px;
  margin: 0 auto;
}

/* Each product hero row — image left, content right */
.bs-hero {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  min-height: 360px;
  overflow: hidden;
  border-radius: 24px;
  max-width: var(--max-width);
  margin: 0 auto;
}

/* Reversed — image right, content left */
.bs-hero--reversed {
  direction: rtl;
}

.bs-hero--reversed > * {
  direction: ltr;
}

/* Image side */
.bs-hero__image-wrap {
  position: relative;
  overflow: hidden;
}

.bs-hero__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 0;
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.bs-hero:hover .bs-hero__image {
  transform: scale(1.04);
}

/* Content side */
.bs-hero__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: var(--space-10) var(--space-10);
  background: #FDFBFC;
}

.bs-hero--reversed .bs-hero__content {
  background: linear-gradient(135deg, #1E1218, #2A1525);
  color: white;
}

.bs-hero__badge {
  display: inline-block;
  width: fit-content;
  background: var(--color-accent);
  color: white;
  font-size: 0.6875rem;
  font-weight: 700;
  padding: 6px 16px;
  border-radius: 10px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin-bottom: var(--space-4);
  box-shadow: 0 3px 10px rgba(224, 96, 126, 0.3);
}

.bs-hero__name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 2rem;
  line-height: 1.15;
  margin-bottom: var(--space-3);
  color: var(--color-text);
}

.bs-hero--reversed .bs-hero__name {
  color: white;
}

.bs-hero__desc {
  font-size: var(--text-base);
  color: var(--color-text-muted);
  line-height: 1.65;
  margin-bottom: var(--space-6);
  max-width: 400px;
}

.bs-hero--reversed .bs-hero__desc {
  color: rgba(255, 255, 255, 0.7);
}

.bs-hero__actions {
  display: flex;
  align-items: center;
  gap: var(--space-5);
}

.bs-hero__price {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: var(--text-2xl);
  color: var(--color-accent);
}

.bs-hero--reversed .bs-hero__price {
  color: var(--color-warm);
}

.bs-hero__order {
  display: inline-flex;
  align-items: center;
  background: var(--color-accent);
  color: white;
  padding: 14px 36px;
  border-radius: var(--radius-full);
  font-size: var(--text-base);
  font-weight: 700;
  text-decoration: none;
  transition: all 0.25s;
  box-shadow: 0 4px 14px rgba(224, 96, 126, 0.3);
}

.bs-hero__order:hover {
  background: var(--color-accent-hover);
  color: white;
  transform: scale(1.04);
  box-shadow: 0 6px 20px rgba(224, 96, 126, 0.4);
}

.bs-hero--reversed .bs-hero__order {
  background: white;
  color: var(--color-accent);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.15);
}

.bs-hero--reversed .bs-hero__order:hover {
  background: var(--color-bg);
  color: var(--color-accent-hover);
  transform: scale(1.04);
}

@media (max-width: 767px) {
  .bs-hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .bs-hero--reversed {
    direction: ltr;
  }

  .bs-hero__image {
    aspect-ratio: 16 / 10;
  }

  .bs-hero__content {
    padding: var(--space-8) var(--space-6);
  }

  .bs-hero__name {
    font-size: var(--text-2xl);
  }

  .bs-hero__actions {
    flex-direction: column;
    align-items: flex-start;
    gap: var(--space-3);
  }
}

@media (min-width: 768px) {
  .bestsellers__header {
    padding: 0 var(--gutter) var(--space-10);
  }
  .bestsellers__heading {
    font-size: 2rem;
  }
}

@media (min-width: 1024px) {
  .bs-hero {
    min-height: 400px;
  }

  .bs-hero__name {
    font-size: 2.5rem;
  }

  .bs-hero__content {
    padding: var(--space-12) var(--space-12);
  }
}

/* ========================================
   Homepage Product Card (Crumbl-style)
   Shared by Best Sellers and Featured Picks
   ======================================== */

.hp-card {
  border-radius: 24px;
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94), box-shadow 0.3s;
  width: calc(50% - var(--space-3));
  border: 1px solid var(--color-border);
  background: white;
}

.hp-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 48px rgba(30, 18, 24, 0.12);
}

@media (max-width: 767px) {
  .hp-card {
    width: 100%;
  }
}

/* Image area — rectangular, full bleed */
.hp-card__image-area {
  position: relative;
  overflow: hidden;
}

/* Fallback background if image is slow to load */
.hp-card__image-area {
  background: var(--color-border);
}

/* Product image — full bleed, no circle */
.hp-card__image {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  display: block;
  border-radius: 0;
  transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.hp-card:hover .hp-card__image {
  transform: scale(1.06);
}

/* Badge */
.hp-card__badge {
  position: absolute;
  top: 16px;
  left: 16px;
  background: var(--color-accent);
  color: white;
  font-size: 0.625rem;
  font-weight: 700;
  padding: 5px 14px;
  border-radius: 10px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  z-index: 2;
  box-shadow: 0 2px 8px rgba(224, 96, 126, 0.3);
}

/* Card info */
.hp-card__info {
  padding: var(--space-5);
  background: white;
  text-align: center;
}

.hp-card__name {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 1rem;
  color: var(--color-text);
  margin-bottom: var(--space-2);
}

.hp-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.hp-card__price {
  font-weight: 700;
  color: var(--color-accent);
  font-size: var(--text-base);
}

.hp-card__order {
  display: inline-flex;
  align-items: center;
  background: var(--color-accent);
  color: white;
  padding: 8px 22px;
  border-radius: 20px;
  font-size: var(--text-sm);
  font-weight: 700;
  text-decoration: none;
  transition: all 0.2s;
  box-shadow: 0 2px 8px rgba(224, 96, 126, 0.2);
}

.hp-card__order:hover {
  background: var(--color-accent-hover);
  color: white;
  transform: scale(1.05);
}

/* ========================================
   Special Offer — Split Layout
   ======================================== */

.special-offer-wrap {
  padding: 0 var(--space-6);
  margin-bottom: 0;
}

.special-offer {
  background: linear-gradient(135deg, #FDF0F3, #FAE4EB);
  border-radius: 28px;
  max-width: var(--max-width);
  margin: 0 auto;
  position: relative;
  overflow: hidden;
}

.special-offer::before {
  content: '';
  position: absolute;
  top: -60px;
  right: -60px;
  width: 240px;
  height: 240px;
  background: radial-gradient(circle, rgba(224, 96, 126, 0.1), transparent 70%);
  border-radius: 50%;
  animation: float 5s ease-in-out infinite;
}

.special-offer::after {
  content: '';
  position: absolute;
  bottom: -50px;
  left: -50px;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(122, 81, 149, 0.08), transparent 70%);
  border-radius: 50%;
  animation: float 6s ease-in-out 1s infinite;
}

.special-offer__layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: stretch;
  position: relative;
  z-index: 1;
}

.special-offer__content {
  padding: var(--space-12) var(--space-10);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.special-offer__label {
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: var(--space-2);
}

.special-offer__title {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: var(--space-3);
  line-height: 1.2;
}

.special-offer__subtitle {
  font-size: var(--text-base);
  color: var(--color-text-muted);
  line-height: 1.65;
  margin-bottom: var(--space-6);
}

.special-offer__features {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
  margin-bottom: var(--space-8);
}

.special-offer__feature {
  display: flex;
  align-items: flex-start;
  gap: var(--space-3);
}

.special-offer__feature-icon {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  background: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  flex-shrink: 0;
  box-shadow: 0 2px 8px rgba(224, 96, 126, 0.1);
  color: var(--color-accent);
}

.special-offer__feature-title {
  font-weight: 700;
  font-size: var(--text-base);
}

.special-offer__feature-desc {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  line-height: 1.5;
}

.special-offer__product {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: var(--space-10);
  background: linear-gradient(135deg, rgba(224, 96, 126, 0.08), rgba(122, 81, 149, 0.06));
}

.special-offer__product-img {
  width: 400px;
  height: 400px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 16px 48px rgba(224, 96, 126, 0.2);
  transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  animation: float 4s ease-in-out infinite;
}

.special-offer__product-img:hover {
  transform: scale(1.05);
}

.special-offer__product-badge {
  display: inline-block;
  background: var(--color-accent);
  color: white;
  font-size: var(--text-sm);
  font-weight: 700;
  padding: 6px 18px;
  border-radius: 20px;
  margin-top: var(--space-4);
  box-shadow: 0 4px 12px rgba(224, 96, 126, 0.3);
}

.special-offer__product-name {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: var(--text-lg);
  color: var(--color-text);
  margin-top: var(--space-3);
}

.special-offer__product-price {
  font-weight: 700;
  font-size: var(--text-base);
  color: var(--color-accent);
  margin-top: var(--space-1);
}

.special-offer__product-dots {
  display: flex;
  gap: 8px;
  margin-top: var(--space-5);
}

.special-offer__dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(224, 96, 126, 0.25);
}

.special-offer__dot--active {
  background: var(--color-accent);
  width: 28px;
  border-radius: 5px;
}

@media (max-width: 767px) {
  .special-offer__layout {
    grid-template-columns: 1fr;
  }
  .special-offer__content {
    padding: var(--space-10) var(--space-6);
  }
  .special-offer__product {
    padding: var(--space-8) var(--space-6);
  }
  .special-offer__product-img {
    width: 280px;
    height: 280px;
  }
}

@media (min-width: 768px) {
  .special-offer-wrap {
    padding: 0 var(--gutter);
  }
  .special-offer__title {
    font-size: var(--text-3xl);
  }
}

/* ========================================
   Featured Picks — Crumbl-Style Grid
   ======================================== */

.featured-picks {
  padding: var(--space-16) 0;
}

.featured-picks__inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--space-4);
}

.featured-picks__label {
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--color-accent);
  text-align: center;
  margin-bottom: var(--space-2);
}

.featured-picks__heading {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  font-weight: 700;
  text-align: center;
  margin-bottom: var(--space-2);
}

.featured-picks__subtext {
  text-align: center;
  color: var(--color-text-muted);
  max-width: 520px;
  margin: 0 auto var(--space-10);
}

.featured-picks__grid {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-5);
  justify-content: center;
}

.featured-picks__grid .hp-card {
  width: calc(25% - var(--space-5));
}

.featured-picks__cta {
  text-align: center;
  margin-top: var(--space-10);
}

@media (max-width: 767px) {
  .featured-picks__grid .hp-card {
    width: calc(50% - var(--space-3));
  }
}

@media (max-width: 480px) {
  .featured-picks__grid .hp-card {
    width: 100%;
    max-width: 340px;
  }
}

@media (min-width: 768px) {
  .featured-picks__inner {
    padding: 0 var(--gutter);
  }
  .featured-picks__heading {
    font-size: 2rem;
  }
}

/* ========================================
   About / Brand Story Section
   ======================================== */

.about {
  padding: var(--space-16) 0;
  background: #FDFBFC;
}

.about__inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--space-4);
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-8);
  align-items: center;
}

.about__badge {
  display: inline-block;
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: 700;
  letter-spacing: var(--tracking-wide);
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: var(--space-4);
  padding: var(--space-1) var(--space-4);
  border: 1.5px solid var(--color-accent);
  border-radius: var(--radius-full);
}

.about__heading {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  color: var(--color-text);
  margin-bottom: var(--space-4);
}

.about__text {
  color: var(--color-text-muted);
  line-height: 1.7;
  margin-bottom: var(--space-4);
}

.about__text:last-of-type {
  margin-bottom: var(--space-6);
}

.about__highlights {
  display: flex;
  gap: var(--space-8);
  padding-top: var(--space-4);
  border-top: 1px solid var(--color-border);
}

.about__highlight {
  display: flex;
  flex-direction: column;
  gap: var(--space-1);
}

.about__stat {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: var(--text-2xl);
  color: var(--color-accent);
}

.about__label {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
}

.about__image-wrapper {
  border-radius: 24px;
  overflow: hidden;
}

.about__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 4 / 3;
  border-radius: 24px;
  transition: transform 0.4s;
}

.about__image:hover {
  transform: scale(1.02);
}

@media (min-width: 768px) {
  .about__inner {
    padding: 0 var(--gutter);
  }

  .about__heading {
    font-size: 2rem;
  }
}

@media (min-width: 1024px) {
  .about__inner {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-10);
  }

  .about__image {
    aspect-ratio: auto;
    min-height: 400px;
  }
}

/* ========================================
   Customer Testimonials Section
   ======================================== */

.testimonials {
  padding: var(--space-16) 0;
  background: var(--color-bg);
}

.testimonials__inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--space-4);
}

.testimonials__heading {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  text-align: center;
  color: var(--color-text);
  margin-bottom: var(--space-2);
}

.testimonials__subtext {
  text-align: center;
  color: var(--color-text-muted);
  max-width: 520px;
  margin: 0 auto var(--space-8);
}

.testimonials__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-6);
}

.testimonial {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: 22px;
  padding: var(--space-6);
  margin: 0;
  transition: transform var(--transition-base), box-shadow var(--transition-base);
}

.testimonial:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 28px rgba(30, 18, 24, 0.06);
}

.testimonial__stars {
  color: #F5A623;
  font-size: 1.125rem;
  margin-bottom: var(--space-3);
  display: flex;
  gap: var(--space-1);
}

.testimonial__text {
  font-size: var(--text-base);
  color: var(--color-text);
  line-height: 1.7;
  font-style: italic;
  margin-bottom: var(--space-4);
}

.testimonial__author {
  display: flex;
  flex-direction: column;
  gap: var(--space-1);
}

.testimonial__name {
  font-weight: 700;
  font-style: normal;
  color: var(--color-text);
  font-size: var(--text-base);
}

.testimonial__detail {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
}

@media (min-width: 768px) {
  .testimonials__inner {
    padding: 0 var(--gutter);
  }

  .testimonials__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .testimonials__heading {
    font-size: 2rem;
  }
}

@media (min-width: 1024px) {
  .testimonials__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* ========================================
   CTA Banner
   ======================================== */

.cta-banner {
  background: linear-gradient(135deg, var(--color-accent), var(--color-purple));
  color: var(--color-bg);
  text-align: center;
  padding: var(--space-16) var(--space-4);
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.08), transparent 70%);
  border-radius: 50%;
  animation: float 6s ease-in-out infinite;
}

.cta-banner__heading {
  font-family: var(--font-display);
  font-size: var(--text-3xl);
  color: var(--color-bg);
  margin-bottom: var(--space-3);
  position: relative;
}

.cta-banner__text {
  font-size: var(--text-lg);
  opacity: 0.9;
  margin-bottom: var(--space-8);
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
}

.cta-banner__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: white;
  color: var(--color-accent);
  padding: 14px 44px;
  border-radius: var(--radius-full);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: var(--text-base);
  text-decoration: none;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
  transition: all 0.25s;
  position: relative;
}

.cta-banner__btn:hover {
  color: var(--color-accent);
  transform: scale(1.05);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.2);
}

@media (min-width: 768px) {
  .cta-banner__heading {
    font-size: 2.5rem;
  }
}

/* ========================================
   Shared Parallax Sections (kept for other pages)
   ======================================== */

.parallax-section {
  position: relative;
  overflow: hidden;
  color: var(--color-bg);
}

.parallax-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url('../../images/banners/sections-bg.jpg');
  background-size: cover;
  background-repeat: no-repeat;
  background-attachment: fixed;
  z-index: 0;
}

.parallax-section::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(30, 18, 24, 0.8);
  z-index: 0;
}

.parallax--seg1::before { background-position: center 20%; }
.parallax--seg2::before { background-position: center 80%; }

.parallax-section > .container,
.parallax-section > [class*="__inner"] {
  position: relative;
  z-index: 1;
}

@media (prefers-reduced-motion: reduce) {
  .parallax-section::before {
    background-attachment: scroll;
  }
}

/* ========================================
   Reduced Motion — New Animations
   ======================================== */

@media (prefers-reduced-motion: reduce) {
  .hero__badge,
  .hero__title,
  .hero__tagline,
  .hero__actions,
  .hero .btn--primary {
    animation: none;
  }

  .special-offer::before,
  .special-offer::after,
  .special-offer__product-img,
  .cta-banner::before {
    animation: none;
  }

  .hp-card__image,
  .about__image {
    transition: none;
  }
}
