/* ============================================ */
/*              REWARDS PAGE                    */
/* ============================================ */

/* Breadcrumb */
.breadcrumb-container {
  background: #fafafa;
  border-bottom: 1px solid #f0f0f0;
  padding: 0.6rem 1rem;
}

.breadcrumb-wrapper {
  max-width: var(--max-width);
  margin: auto;
}

.breadcrumb {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  color: var(--text-light);
}

.breadcrumb li + li::before {
  content: "/";
  margin-right: 0.5rem;
  color: #ccc;
}

.breadcrumb a {
  color: var(--primary-color);
  text-decoration: none;
}

.breadcrumb a:hover {
  text-decoration: underline;
}

/* Rewards Hero */
.rewards-hero {
  background: linear-gradient(135deg, #fdf2f2 0%, #fff5f5 50%, #fffafa 100%);
  padding: clamp(10rem, 18vw, 14rem) 1rem clamp(4rem, 8vw, 6rem);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.rewards-hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 20% 50%, rgba(200, 50, 47, 0.06) 0%, transparent 50%),
    radial-gradient(circle at 80% 50%, rgba(200, 50, 47, 0.04) 0%, transparent 50%);
  pointer-events: none;
}

.rewards-hero__content {
  max-width: 700px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.rewards-hero__tagline {
  display: inline-block;
  font-size: 1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.rewards-hero h1 {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 800;
  line-height: 1.2;
  color: var(--text-dark);
  margin-bottom: 1rem;
}

.rewards-hero h1 strong {
  color: var(--primary-color);
}

.rewards-hero__subtitle {
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  color: var(--text-light);
  margin-bottom: 2rem;
  line-height: 1.6;
}

.rewards-hero__cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 2rem;
  background-color: var(--primary-color);
  color: #fff;
  font-size: 1.1rem;
  font-weight: 600;
  border-radius: 10px;
  text-decoration: none;
  transition: 0.3s;
}

.rewards-hero__cta:hover {
  background-color: var(--primary-color-dark);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(200, 50, 47, 0.3);
}

/* How It Works */
.rewards-how {
  text-align: center;
}

.rewards-how__header {
  margin-bottom: 3rem;
}

.rewards-steps {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.rewards-step {
  flex: 1;
  min-width: 200px;
  max-width: 280px;
  padding: 2rem 1.5rem;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  transition: 0.3s;
}

.rewards-step:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.rewards-step__icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #fdf2f2, #ffe8e8);
  border-radius: 50%;
  font-size: 1.8rem;
  color: var(--primary-color);
}

.rewards-step h3 {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 0.5rem;
}

.rewards-step__points {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--primary-color);
  margin-bottom: 0.5rem;
}

.rewards-step__desc {
  font-size: 0.95rem;
  color: var(--text-light);
  line-height: 1.5;
}

.rewards-step__arrow {
  font-size: 1.5rem;
  color: var(--primary-color);
}

/* First Order Example */
.rewards-example {
  background: linear-gradient(135deg, #fdf2f2 0%, #fff5f5 100%);
  padding: 1rem 0;
}

.rewards-calc {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin: 2.5rem 0;
}

.rewards-calc__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 1.25rem 1.5rem;
  border: 2px solid var(--primary-color);
  border-radius: 12px;
  background: #fff;
  min-width: 130px;
}

.rewards-calc__item--highlight {
  background: var(--primary-color);
  border-color: var(--primary-color);
}

.rewards-calc__item--highlight .rewards-calc__number,
.rewards-calc__item--highlight .rewards-calc__label {
  color: #fff;
}

.rewards-calc__number {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--text-dark);
  line-height: 1.2;
}

.rewards-calc__label {
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-light);
  margin-top: 0.25rem;
}

.rewards-calc__operator {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-color);
}

.rewards-example__result {
  text-align: center;
  margin-top: 1rem;
}

.rewards-example__result p {
  font-size: 1.15rem;
  color: var(--text-dark);
  margin-bottom: 0.25rem;
}

/* Reward Details */
.rewards-details__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 2.5rem;
}

.rewards-detail {
  text-align: center;
  padding: 2rem 1.5rem;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.05);
}

.rewards-detail__icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #fdf2f2, #ffe8e8);
  border-radius: 50%;
  font-size: 1.5rem;
  color: var(--primary-color);
}

.rewards-detail h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 0.5rem;
}

.rewards-detail p {
  font-size: 0.95rem;
  color: var(--text-light);
  line-height: 1.5;
}

/* Rewards Signup CTA */
.rewards-signup-cta {
  text-align: center;
}

.rewards-signup-cta__btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 1.5rem;
  padding: 0.9rem 2.2rem;
  background-color: var(--primary-color);
  color: #fff;
  font-size: 1.1rem;
  font-weight: 600;
  border-radius: 10px;
  text-decoration: none;
  transition: 0.3s;
}

.rewards-signup-cta__btn:hover {
  background-color: var(--primary-color-dark);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(200, 50, 47, 0.3);
}

/* Rewards CTA */
.rewards-cta {
  background: linear-gradient(135deg, var(--primary-color-dark) 0%, #2a0a0a 100%);
  padding: clamp(3rem, 7vw, 5rem) 1rem;
  text-align: center;
}

.rewards-cta__container {
  max-width: 700px;
  margin: 0 auto;
}

.rewards-cta h2 {
  font-size: clamp(1.6rem, 4vw, 2.4rem);
  font-weight: 800;
  color: #fff;
  margin-bottom: 0.75rem;
}

.rewards-cta p {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 1.5rem;
}

.rewards-cta__info {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  margin-bottom: 2rem;
}

.rewards-cta__info span {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.95rem;
}

.rewards-cta__info strong {
  color: #fff;
  font-size: 1.1rem;
}

.rewards-cta__btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.9rem 2.2rem;
  background-color: var(--primary-color);
  color: #fff;
  font-size: 1.1rem;
  font-weight: 600;
  border-radius: 10px;
  text-decoration: none;
  transition: 0.3s;
}

.rewards-cta__btn:hover {
  background-color: var(--primary-color-dark);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(200, 50, 47, 0.4);
}

/* Responsive */
@media screen and (max-width: 768px) {
  .rewards-hero {
    padding: clamp(8rem, 14vw, 10rem) 1rem clamp(3rem, 6vw, 4rem);
  }

  .rewards-steps {
    flex-direction: column;
    gap: 1rem;
  }

  .rewards-step {
    max-width: 100%;
    width: 100%;
  }

  .rewards-step__arrow {
    transform: rotate(90deg);
  }

  .rewards-calc {
    gap: 0.75rem;
  }

  .rewards-calc__item {
    min-width: 100px;
    padding: 1rem;
  }

  .rewards-calc__number {
    font-size: 1.3rem;
  }

  .rewards-calc__arrow-op {
    display: block;
    width: 100%;
    text-align: center;
  }

  .rewards-details__grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
}
