/** Shopify CDN: Minification failed

Line 171:0 Unexpected "}"

**/
/* Rewards Page Styles */
.rewards-page {
  --rewards-background: #fcf9f0;
  --rewards-primary: #5d1e26;
  --rewards-secondary: #ad9b8d;
  --rewards-tertiary: #c2a58c;
  --rewards-dark: #40201d;
  --rewards-card: #f2e4d7;
  --rewards-shadow: 0 18px 38px rgba(64, 32, 29, 0.08);
  --rewards-item-bg: #a09585;
  background-color: var(--rewards-background);
  color: var(--rewards-dark);
  font-family: var(--font-body-family);
}

/* Hero Section */
.rewards-hero {
  text-align: center;
  padding: 3.5rem 1.5rem 3rem;
  max-width: 520px;
  margin: 0 auto 4rem;
  position: relative;
}
.rewards-hero__logo {
  text-align: center;
  margin-bottom: 3rem;
}

.rewards-hero__logo img {
  max-width: 200px; /* desktop width */
  width: 300px; /* ensures it scales down */
  height: auto;
  display: inline-block;
}

/* Mobile adjustments */
@media screen and (max-width: 749px) {
  .rewards-hero__logo img {
    max-width: 200px; /* smaller logo on mobile */
  }
}
.rewards-hero__intro {
  font-size: 1rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
  font-weight: 700;
  color: var(--rewards-primary);
}

.rewards-hero__title {
  font-size: 3.5rem;
  line-height: 1.05;
  margin-bottom: 1.25rem;
  font-family: var(--font-heading-family);
  font-style: italic;
  font-weight: 400;
  color: var(--rewards-dark);
}

/* Utility: italic text using the rewards primary color */
.rewards-italic {
  color: var(--rewards-primary);
  font-family: geographica-script, sans-serif;
  font-size: 3.5rem;
  margin: 1rem 0 0 0;
  text-align: center;
}

/* Utility: flexbox centering (horizontal and vertical) */
.flex-center {
  display: flex;
  justify-content: center;
  align-items: center;
}


/* Utility: secondary color, uppercase label text */
.rewards-label-secondary {
  color: var(--rewards-secondary);
  text-transform: uppercase;
  font-size: 1.6rem;
  letter-spacing: 0;
  font-weight: 600;
}

.flex-column {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

/* Triangle icon (pointing down) — supports inlined SVG from assets.
   Usage (inline asset):
     <span class="rewards-triangle rewards-triangle--primary">{{ 'triangle-down.svg' | inline_asset_content }}</span>

   The SVG is forced to use currentColor so modifier classes control the fill.
*/
.rewards-triangle {
  display: inline-block;
  width: var(--rewards-triangle-size, 40px);
  height: var(--rewards-triangle-size, 40px);
  vertical-align: middle;
}

/* Ensure any inlined SVG inside the wrapper scales and adopts currentColor */
.rewards-triangle svg {
  width: 100%;
  height: 100%;
  display: block;
  vector-effect: non-scaling-stroke;
}

/* Force fill/stroke to currentColor even if the SVG contains hardcoded values */
.rewards-triangle--primary {
  color: var(--rewards-primary);
}

.rewards-triangle--secondary {
  color: var(--rewards-secondary);
}

.rewards-hero__subtitle {
  font-size: 1.4rem;
  font-weight: 600;
  text-transform: uppercase;
  line-height: 130%;
  margin-bottom: 0px;
  max-width: 460px;
  margin-left: auto;
  margin-bottom: 1.5rem;
  margin-right: auto;
  color: #ac9b8c;
}

.rewards-hero__subtitle-logged-in{
  font-size: 1.4rem;
  font-weight: 600;
  text-transform: uppercase;
  line-height: 130%;
  margin-bottom: 0px;
  max-width: 460px;
  margin-left: auto;
  margin-right: auto;
  color: #FFFFFF;
}

.rewards-hero__points {
    padding: 3rem 0 3rem 0 !important;
    font-size: 3rem !important;
    border-radius: 2rem !important;
    align-content: center;
    font-family: Montserrat;
    text-transform: uppercase;
    font-weight: 600;
    color: #ffffff !important;
    background: #703A3F !important;
}

.rewards-points-count {
  font-size: 3rem !important;
  margin-top: 1rem;
  margin-bottom: 1rem;
}
}

.rewards-hero__actions {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  align-items: center;
}

.rewards-button {
  min-width: 60%;
  padding: 0.9rem 1.25rem;
  margin-bottom: 8px;
  font-size: 0.95rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 600;
  border: none;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #703A3F;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    background-color 0.2s ease,
    color 0.2s ease;
  color: #ffffff;
}

.rewards-button.button--primary {
  background-color: #703a3f !important;
  color: #fff;
  border: 1px solid var(--rewards-primary);
}

.rewards-button.button--secondary {
  background-color: #ac9b8c !important;
  color: var(--rewards-primary);
  box-shadow: 0 12px 25px rgba(64, 32, 29, 0.08);
  border: 1px solid var(--rewards-primary);
}

.rewards-button:hover,
.rewards-button:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 16px 30px rgba(64, 32, 29, 0.2);
}

.rewards-button:active {
  transform: translateY(0);
  box-shadow: 0 10px 18px rgba(64, 32, 29, 0.18);
}

.rewards-benefits {
  padding: 3.75rem 1.5rem;
  position: relative;
}

.rewards-benefits::before {
  content: "";
  position: absolute;
  top: -1.6rem;
  left: 50%;
  transform: translateX(-50%) rotate(45deg);
  width: 22px;
  height: 22px;
  border-right: 2px solid var(--rewards-primary);
  border-bottom: 2px solid var(--rewards-primary);
  border-radius: 4px;
  background-color: var(--rewards-background);
}

.rewards-benefits__title {
  text-align: center;
  font-size: 2.35rem;
  margin-bottom: 2.5rem;
  font-family: var(--font-heading-family);
  font-style: italic;
  font-weight: 400;
  color: var(--rewards-dark);
}

.rewards-benefits__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(150px, 1fr));
  gap: 1.25rem;
  max-width: 640px;
  margin: 0 auto;
}

.rewards-benefit-card {
  position: relative;
}

.rewards-benefit-card__inner {
  background-color: var(--rewards-card);
  border-radius: 1.75rem;
  padding: 2rem 1.75rem;
  text-align: center;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
  border: 1px solid rgba(64, 32, 29, 0.08);
  /* box-shadow: 0 12px 28px rgba(64, 32, 29, 0.06); */
  transition: transform 0.3s ease;
  /* box-shadow 0.3s ease; */
  color: var(--rewards-primary);
}

.rewards-benefit-card__inner:hover {
  /* transform: translateY(-6px); */
  /* box-shadow: 0 18px 38px rgba(64, 32, 29, 0.14); */
}

.rewards-benefit-card__label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  margin-bottom: 0.5rem;
  font-weight: 600;
  color: rgba(64, 32, 29, 0.7);
}

.rewards-benefit-card__icon {
  width: 56px;
  height: 56px;
  color: var(--rewards-primary);
}

.rewards-benefit-card__icon svg {
  width: 100%;
  height: 100%;
}

.rewards-benefit-card__title {
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.rewards-benefit-card__action {
  font-size: 0.85rem;
  margin-top: 0.25rem;
  text-decoration: underline;
  cursor: pointer;
  color: var(--rewards-dark);
}

/* How It Works Section */
.rewards-how-it-works {
  padding: 3.75rem 1.5rem;
  background: linear-gradient(
    180deg,
    rgba(93, 30, 38, 0.04) 0%,
    rgba(93, 30, 38, 0.02) 100%
  );
  position: relative;
}

.rewards-how-it-works::before {
  content: "";
  position: absolute;
  top: -1.6rem;
  left: 50%;
  transform: translateX(-50%) rotate(45deg);
  width: 22px;
  height: 22px;
  border-right: 2px solid var(--rewards-primary);
  border-bottom: 2px solid var(--rewards-primary);
  border-radius: 4px;
  background-color: var(--rewards-background);
}

.rewards-section__title {
  text-align: center;
  font-size: 2.35rem;
  margin-bottom: 2.5rem;
  font-family: var(--font-heading-family);
  font-style: italic;
  font-weight: 400;
  color: var(--rewards-dark);
  position: relative;
}

.rewards-steps {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  max-width: 640px;
  margin: 0 auto;
}

.rewards-step {
  text-align: center;
}

.rewards-step__content {
  padding: 1.85rem 1.5rem;
  background-color: var(--rewards-card);
  border-radius: 1.75rem;
  border: 1px solid rgba(64, 32, 29, 0.08);
  /* box-shadow: 0 12px 26px rgba(64, 32, 29, 0.06); */
}

.rewards-step__title {
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
  color: var(--rewards-primary);
}

.rewards-step__description {
  font-size: 1rem;
  line-height: 1.65;
  color: rgba(64, 32, 29, 0.72);
}

/* Membership Tiers Section */
.rewards-tiers {
  padding: 3.75rem 1.5rem;
  position: relative;
}

.rewards-tiers::before {
  content: "";
  position: absolute;
  top: -1.6rem;
  left: 50%;
  transform: translateX(-50%) rotate(45deg);
  width: 22px;
  height: 22px;
  border-right: 2px solid var(--rewards-primary);
  border-bottom: 2px solid var(--rewards-primary);
  border-radius: 4px;
  background-color: var(--rewards-background);
}

.rewards-tiers__list {
  /* display: flex;
  flex-direction: column;
  gap: 1.25rem;
  max-width: 520px;
  margin: 0 auto; */
}

.rewards-tier {
  position: relative;
}

.rewards-tier__inner {
  position: relative;
  background-color: #f9f1e7;
  color: var(--rewards-primary);
  padding: 1.35rem 2rem;
  border-radius: 56px;
  text-align: center;
  border: 1px solid rgba(64, 32, 29, 0.1);
  /* box-shadow: 0 12px 26px rgba(64, 32, 29, 0.08); */
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: transform 0.3s ease;
  /* box-shadow 0.3s ease; */
}

.rewards-tier__inner:hover {
  transform: translateY(-4px);
  /* box-shadow: 0 18px 38px rgba(64, 32, 29, 0.15); */
}

.rewards-tier:first-child .rewards-tier__inner {
  background-color: var(--rewards-primary);
  color: var(--rewards-background);
  border: none;
  /* box-shadow: 0 18px 42px rgba(93, 30, 38, 0.25); */
}

.rewards-tier:first-child .rewards-tier__inner::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -12px;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 12px solid transparent;
  border-right: 12px solid transparent;
  border-top: 12px solid var(--rewards-primary);
}

.rewards-tier__name {
  font-size: 1rem;
  margin-bottom: 0.35rem;
}

.rewards-tier__requirement {
  font-size: 0.9rem;
  text-transform: none;
  letter-spacing: 0.04em;
  opacity: 0.85;
}

/* Earn Points Section */
.rewards-earn-points {
  padding: 3.75rem 1.5rem;
  background: linear-gradient(
    180deg,
    rgba(93, 30, 38, 0.04) 0%,
    rgba(93, 30, 38, 0.02) 100%
  );
  position: relative;
}

.rewards-earn-points::before {
  content: "";
  position: absolute;
  top: -1.6rem;
  left: 50%;
  transform: translateX(-50%) rotate(45deg);
  width: 22px;
  height: 22px;
  border-right: 2px solid var(--rewards-primary);
  border-bottom: 2px solid var(--rewards-primary);
  border-radius: 4px;
  background-color: var(--rewards-background);
}

.rewards-earn-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(150px, 1fr));
  gap: 1.25rem;
  max-width: 640px;
  margin: 0 auto;
}

.rewards-earn-card {
  position: relative;
}

.rewards-earn-card__inner {
  background-color: var(--rewards-card);
  border-radius: 2rem;
  padding: 2rem 1.25rem;
  text-align: center;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(64, 32, 29, 0.08);
  /* box-shadow: 0 12px 28px rgba(64, 32, 29, 0.06); */
  transition: transform 0.3s ease;
  aspect-ratio: 1 / 1;
  color: var(--rewards-primary);
}

/* Horizontal scroll container for rewards list */
.rewards-page .rewards-list-wrapper {
  width: 100%;
  overflow: visible;
  padding: 0 1.5rem;
  margin: 3rem 0;
}

@media screen and (min-width: 990px) {
  .rewards-page .rewards-list-wrapper {
    max-width: 1140px;
    margin: 3rem auto;
    padding: 0;
  }
}

/* LoyaltyLion Rewards List - Horizontal Scroll */
.rewards-page [data-lion-rewards-list] {
  width: 100%;
  overflow-x: auto;
  overflow-y: visible;
  -webkit-overflow-scrolling: touch;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  scrollbar-width: none; /* Firefox */
  -ms-overflow-style: none; /* IE and Edge */
}

/* Hide scrollbar for Chrome, Safari and Opera */
.rewards-page [data-lion-rewards-list]::-webkit-scrollbar {
  display: none;
}

/* Rewards list layout */
.rewards-page #loyaltylion .lion-rewards-list {
  display: flex;
  gap: 1rem;
  padding: 1rem 0;
  width: max-content;
  min-width: 100%;
}

/* Individual reward item scroll snap and styling */
.rewards-page #loyaltylion .lion-reward-item {
  scroll-snap-align: start;
  flex: 0 0 280px;
  width: 280px;
  background-color: #ac9b8c;
  border-radius: 2.5rem;
  padding: 2.25rem 2rem;
  color: var(--ll-reward-text, #ffffff);
  /* box-shadow: 0 18px 38px rgba(64, 32, 29, 0.18); */
  border: 1px solid rgba(255, 255, 255, 0.12);
  position: relative;
  overflow: hidden;
}

@media screen and (min-width: 750px) {
  .rewards-page #loyaltylion .lion-reward-item {
    flex: 0 0 300px;
    width: 300px;
  }
}

@media screen and (min-width: 990px) {
  .rewards-page #loyaltylion .lion-reward-item {
    flex: 0 0 320px;
    width: 320px;
  }
}

.rewards-page #loyaltylion .lion-reward-item__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  text-align: center;
  color: inherit;
  background-color: #ac9b8c;
  margin-top: 20px;
}

.rewards-page #loyaltylion .lion-reward-item__title {
  font-family: var(--font-heading-family);
  font-size: 3rem;
  line-height: 100%;
  letter-spacing: 0;
  text-transform: uppercase;
  text-align: left;
  font-weight: 700;
  color: inherit;
  margin-left: 4px;
  width: 100%;
}

.rewards-page #loyaltylion .lion-reward-item,
#loyaltylion .lion-rule-item {
  display: flex;
  justify-content: left;
}

.rewards-page #loyaltylion .lion-reward-item__content {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-direction: column;
  text-align: left;
  box-sizing: border-box;
  color: var(--ll-reward-text);
  border-radius: 8px;
  min-width: 120px;
  max-width: 100% !important;
  gap: 0;
  padding: 0;
}

.rewards-earn-card__inner:hover {
  transform: translateY(-6px);
  /* box-shadow: 0 18px 38px rgba(64, 32, 29, 0.12); */
}

.rewards-earn-card__points {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
  color: rgba(64, 32, 29, 0.7);
}

.rewards-earn-card__title {
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  line-height: 1.35;
}

/* FAQ Section */

.rewards-faq {
  padding: 3.75rem 1.5rem;
  position: relative;
}

.rewards-faq::before {
  content: "";
  position: absolute;
  top: -1.6rem;
  left: 50%;
  transform: translateX(-50%) rotate(45deg);
  width: 22px;
  height: 22px;
  border-right: 2px solid var(--rewards-primary);
  border-bottom: 2px solid var(--rewards-primary);
  border-radius: 4px;
  background-color: var(--rewards-background);
}

.rewards-faq__subtitle {
  text-align: center;
  font-size: 1.05rem;
  margin-bottom: 2.5rem;
  color: rgba(64, 32, 29, 0.7);
}

.rewards-faq__list {
  display: flex;
  flex-direction: column;
  gap: 0;
  background: var(--rewards-card);
  border-radius: 1.75rem;
  border: 1px solid rgba(64, 32, 29, 0.1);
  overflow: hidden;
  /* box-shadow: 0 12px 26px rgba(64, 32, 29, 0.06); */
}

.rewards-faq__item {
  border-bottom: 1px solid rgba(64, 32, 29, 0.08);
  padding: 1.5rem 1.75rem;
  cursor: pointer;
}

.rewards-faq__item:last-child {
  border-bottom: none;
}

.rewards-faq__question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  list-style: none;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--rewards-primary);
}

.rewards-faq__question::-webkit-details-marker {
  display: none;
}

.rewards-faq__question .icon-caret {
  width: 18px;
  height: 18px;
  transition: transform 0.3s ease;
  flex-shrink: 0;
  margin-left: 1.5rem;
}

.rewards-faq__item[open] .icon-caret {
  transform: rotate(180deg);
}

.rewards-faq__answer {
  overflow: hidden;
}

.rewards-faq__answer-content {
  padding-top: 1rem;
  font-size: 0.95rem;
  line-height: 1.8;
  color: rgba(64, 32, 29, 0.75);
}

/* CTA Section */
.rewards-cta {
  padding: 3.75rem 1.5rem 4.5rem;
  text-align: center;
  background: linear-gradient(
    180deg,
    rgba(93, 30, 38, 0.03) 0%,
    rgba(93, 30, 38, 0.08) 100%
  );
}

.rewards-cta__inner {
  max-width: 840px;
  margin: 0 auto;
  background-color: var(--rewards-card);
  border-radius: 2.5rem;
  padding: 2.75rem 2.25rem;
  border: 1px solid rgba(64, 32, 29, 0.08);
  box-shadow: 0 20px 45px rgba(64, 32, 29, 0.12);
  display: flex;
  flex-direction: column;
  gap: 2.25rem;
  align-items: center;
}

.rewards-cta__content {
  max-width: 420px;
}

.rewards-cta__title {
  font-size: 2.8rem;
  margin-bottom: 1rem;
  font-family: loretta-display, serif;
  font-weight: 300;
  font-style: normal;
  color: var(--rewards-primary);
  text-transform: normal;
}

.rewards-cta-title {
  color: var(--rewards-primary);
  font-size: clamp(2.5rem, 8vw, 4rem);
  font-family: loretta-display, serif !important;
  text-align: center;
  font-weight: 300;
  margin-bottom: 0;
  text-transform: none;
}

.rewards-cta__text {
  font-size: 1.1rem;
  line-height: 1.7;
  color: rgba(64, 32, 29, 0.75);
}

.rewards-cta__media {
  width: min(320px, 80vw);
  overflow: hidden;
  margin-top: -24px;
}

.rewards-cta__image {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}

.rewards-cta-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}

.rewards-cta-image {
  max-width: 320px;
  width: 100%;
  height: auto;
  margin-top: -24px;
}

/* FAQ Accordion List */
.rewards-faq-list {
  max-width: 520px;
  margin: 2rem auto 4rem;
  padding: 0 1.5rem;
}

.rewards-faq-label {
  max-width: 300px;
  text-align: center;
}

.rewards-faq-item {
  border-bottom: 1px solid rgba(93, 30, 38, 0.15);
  transition: border-color 0.3s ease;
}

.rewards-faq-item:last-child {
  border-bottom: none;
}

.rewards-faq-item__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 0;
  cursor: pointer;
  gap: 1.5rem;
}

.rewards-faq-item__header:hover {
  opacity: 0.8;
}

.rewards-faq-item__title {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--rewards-primary);
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  flex: 1;
}

.rewards-faq-item__icon {
  transition: transform 0.3s ease;
  flex-shrink: 0;
  width: 24px;
  height: 24px;
}

.rewards-faq-item.is-active .rewards-faq-item__icon {
  transform: rotate(180deg);
}

.rewards-faq-item__content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.rewards-faq-item__description {
  padding-bottom: 1.5rem;
  color: rgba(64, 32, 29, 0.75);
  line-height: 1.7;
  font-size: 1rem;
  margin: 0;
}

/* Responsive */

@media screen and (max-width: 749px) {
  .rewards-hero {
    padding: 3rem 1.25rem 2.75rem;
    margin-bottom: 3.25rem;
  }

  .rewards-hero__title {
    font-size: 2.75rem;
  }

  .rewards-benefits,
  .rewards-how-it-works,
  .rewards-tiers,
  .rewards-earn-points,
  .rewards-faq,
  .rewards-cta {
    padding: 3.25rem 1.25rem;
  }

  .rewards-benefits::before,
  .rewards-how-it-works::before,
  .rewards-tiers::before,
  .rewards-earn-points::before,
  .rewards-faq::before {
    top: -1.3rem;
  }

  .rewards-cta {
    padding-bottom: 4rem;
  }

  .rewards-cta__inner {
    padding: 2.25rem 1.75rem;
  }

  .rewards-cta__title {
    font-size: 2.35rem;
  }

  .rewards-faq-list {
    padding: 0 1.25rem;
  }

  .rewards-faq-item__title {
    font-size: 1.2rem;
  }
}

@media screen and (min-width: 750px) {
  .rewards-hero {
    padding: 4rem 2.5rem 3.5rem;
    margin-bottom: 5rem;
  }

  .rewards-hero__title {
    font-size: 4rem;
  }

  .rewards-hero__actions {
    flex-direction: row;
    justify-content: center;
    gap: 1rem;
  }

  .rewards-button {
    min-width: 180px;
  }

  .rewards-benefits__grid,
  .rewards-earn-grid {
    max-width: 760px;
  }
}

@media screen and (min-width: 990px) {
  .rewards-benefits__grid {
    grid-template-columns: repeat(3, minmax(180px, 1fr));
  }

  .rewards-earn-grid {
    grid-template-columns: repeat(4, minmax(160px, 1fr));
    max-width: 920px;
  }

  .rewards-cta__inner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    text-align: left;
  }

  .rewards-cta__content {
    max-width: 420px;
  }
}

/* Animation delays for staggered effect */
.scroll-trigger:nth-child(1) {
  animation-delay: 0.1s;
}

.scroll-trigger:nth-child(2) {
  animation-delay: 0.2s;
}

.scroll-trigger:nth-child(3) {
  animation-delay: 0.3s;
}

.scroll-trigger:nth-child(4) {
  animation-delay: 0.4s;
}

.scroll-trigger:nth-child(5) {
  animation-delay: 0.5s;
}

/* Color scheme variations */
.color-scheme-1 .rewards-page {
  --rewards-background: rgba(var(--color-background), 0.95);
  --rewards-primary: rgb(var(--color-foreground));
  --rewards-secondary: rgba(var(--color-foreground), 0.15);
  --rewards-tertiary: rgba(var(--color-foreground), 0.25);
  --rewards-dark: rgb(var(--color-foreground));
  --rewards-card: rgba(var(--color-background), 0.85);
}

.color-scheme-2 .rewards-page {
  --rewards-background: rgba(var(--color-foreground), 0.08);
  --rewards-primary: rgb(var(--color-foreground));
  --rewards-secondary: rgba(var(--color-background), 0.65);
  --rewards-tertiary: rgba(var(--color-background), 0.5);
  --rewards-dark: rgb(var(--color-foreground));
  --rewards-card: rgba(var(--color-background), 0.75);
}

/* LoyaltyLion Rewards List Styling */
#loyaltylion .lion-reward-item {
  background-color: var(--rewards-item-bg);
  border-radius: 1.75rem;
  padding: 2rem 1.5rem;
  text-align: center;
  border: 1px solid rgba(64, 32, 29, 0.08);
  box-shadow: 0 12px 28px rgba(64, 32, 29, 0.06);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  height: auto !important;
  min-height: auto !important;
  max-height: none !important;
}

#loyaltylion .lion-reward-item__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  width: 100%;
  height: auto !important;
  min-height: auto !important;
  max-height: none !important;
  flex: 1;
}

/* Icon styling */
#loyaltylion .lion-reward-item__icon {
  order: -1;
  margin: 0;
  align-self: flex-start;
}

/* --- Tier overview height fixes and layout overrides (strong specificity, late in cascade) --- */
#loyaltylion .lion-tier-overview {
  /* Force away from any grid equal-height behavior */
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: flex-start;
  align-content: flex-start;
  /* If LL sets grid somewhere, neutralize row sizing */
  grid-auto-rows: auto;
  background-color: transparent;
}

#loyaltylion .lion-tier-box {
  /* Ensure item doesn’t stretch to row height */
  align-self: flex-start;
  justify-self: start;
  height: auto;
  min-height: 0;
  max-height: none;
  overflow: visible;
}

/* Current/next variations shouldn’t reintroduce fixed heights */
#loyaltylion .lion-tier-box.lion-tier-box--current,
#loyaltylion .lion-tier-box.lion-tier-box--next {
  height: auto;
  min-height: 0;
  max-height: none;
}

#loyaltylion .lion-tier-box__header {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 0.25rem;
  height: auto;
  min-height: 0;
  max-height: none;
}

#loyaltylion .lion-tier-box__title {
  margin: 0 0 2px 0;
}

#loyaltylion .lion-tier-box__sub-title {
  margin: 0;
}

/* --- Tier compact sizing tweaks (final overrides) --- */
.rewards-page #loyaltylion .lion-tier-box {
  width: 80%;
  padding: 2px 0;
  border-radius: 0;
  aspect-ratio: auto;
}

@media screen and (min-width: 750px) {
  .rewards-page #loyaltylion .lion-tier-box {
    width: 50%;
  }
}

.rewards-page #loyaltylion .lion-tier-box__header {
  padding: 0;
}

.rewards-page #loyaltylion .lion-tier-box__title {
  font-size: 1.2rem;
  line-height: 1.15;
  letter-spacing: 0;
}

.rewards-page #loyaltylion .lion-tier-box__sub-title {
  font-size: 0.85rem;
  line-height: 1.15;
}

/* LoyaltyLion Tier Overview Styling */
#loyaltylion .lion-tier-overview {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  margin: 3rem auto;
  padding: 0 1.5rem;
}

#loyaltylion .lion-tier-box {
  background-color: var(--rewards-primary);
  border-radius: 56px;
  padding: 1.5rem 2rem;
  text-align: center;
  min-width: 200px;
  /* box-shadow: 0 12px 28px rgba(93, 30, 38, 0.25); */
  height: auto !important;
  min-height: auto !important;
  max-height: none !important;
}

/* Show only title and subtitle */
#loyaltylion .lion-tier-box__header {
  display: flex;
  flex-direction: row;
  gap: 0.5rem;
  align-items: center;
  background-color: transparent;
  height: auto !important;
  min-height: auto !important;
  max-height: none !important;
}

#loyaltylion .lion-tier-box__title {
  font-size: 1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #fefaf1;
  margin: 0;
}

#loyaltylion .lion-tier-box__sub-title {
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #fefaf1;
  opacity: 0.85;
  margin: 0;
}

/* Hide all other tier box elements */
#loyaltylion .lion-tier-box__position,
#loyaltylion .lion-tier-box__accent,
#loyaltylion .lion-tier-box__purchase-rule,
#loyaltylion .lion-tier-box__benefits-list,
#loyaltylion .lion-tier-benefits-list,
#loyaltylion .lion-tier-box__footer {
  display: none !important;
  visibility: hidden !important;
  opacity: 0 !important;
  height: 0 !important;
  min-height: 0 !important;
  max-height: 0 !important;
  padding: 0 !important;
  margin: 0 !important;
  overflow: hidden !important;
}

/* Additional specificity for benefits list items */
#loyaltylion .lion-tier-box__benefit,
#loyaltylion .lion-tier-benefits-list__item {
  display: none !important;
}

/* Ensure the tier box only contains the header */
#loyaltylion .lion-tier-box > *:not(.lion-tier-box__header) {
  display: none !important;
  height: 0 !important;
  margin: 0 !important;
  padding: 0 !important;
}

/* Make sure header only shows title and subtitle */
#loyaltylion
  .lion-tier-box__header
  > *:not(.lion-tier-box__title):not(.lion-tier-box__sub-title) {
  display: none !important;
  width: 0 !important;
  height: 0 !important;
  margin: 0 !important;
  padding: 0 !important;
  overflow: hidden !important;
}

#loyaltylion .lion-rules-list {
  background-color: transparent;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.8rem;
  max-width: 520px;
}

@media and screen (min-width:750px){
  #loyaltylion .lion-rules-list{
    display: flex !important;
  }
}
#loyaltylion
  .lion-rules-list
  .lion-rule-item__content
  .lion-rule-item__icon-wrap {
  display: none;
}

#loyaltylion .lion-rules-list .lion-rule-item__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  background-color: #ac9b8c;
  padding: 2.25rem 2rem;
  border-radius: 2.5rem;
  max-width: 190px;
}
#loyaltylion .lion-rules-list .lion-rule-item__content .lion-rule-item__title {
  order: ;
  align-self: flex-start;
  font-size: 2rem;
  letter-spacing: 0;
  text-transform: uppercase;
  font-weight: 700;
  color: white;
  margin-left: 4px;
  word-break: break-word;
  text-align: left;
  max-width: 100%;
  line-height: 100%;
  margin-top: 0;
}
#loyaltylion .lion-rules-list .lion-rule-item__content .lion-rule-item__points {
  order: 0;
  color: var(--rewards-primary);
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 0;
  font-size: 1.2rem;
}

/* Removed old Swiper-related styles */

/* Override LoyaltyLion disabled button text color */
#loyaltylion .lion-action-button--disabled span,
#loyaltylion
  .lion-action-button--disabled
  .lion-reward-item__redeem-button-text {
  color: white !important;
}


/* Rewards Table Section */

.rewards-table {
    padding-left: 12px;
    padding-right: 12px;
    margin: 2rem 0 2rem 0;
}

#loyaltylion .lion-history-table__row:nth-child(even) {
    background-color: #EEE8E1!important;
}

#loyaltylion .lion-history-table__row {
    background-color: #EEE8E1 !important;
}

@media (max-width: 480px) {
    #loyaltylion .lion-history-table__header-cell {
        padding: 8px 5px;
        font-size: 80%;
        text-align: center;
        background: #703A3F !important;
    }
}

#loyaltylion .lion-history-table__header-cell {
    background: #f8f8f8;
    color: #ffffff !important;
    text-align: left;
    text-transform: uppercase;
    font-size: .8em;
    font-weight: 700;
    padding: 10px 0 10px 14px;
    border-bottom: 1px solid #f1f1f1;
}

#loyaltylion .lion-action-button--tile.lion-action-button--completed, #loyaltylion .lion-action-button--tile.lion-action-button--disabled {
    background: 0 0;
    box-shadow: none;
    border: 1px solid rgba(187, 187, 187, .5);
    color: #FFFFFF!important;
}

#loyaltylion .lion-tier-progress__cta-reach, #loyaltylion .lion-tier-progress__cta-stay {
    color: var(--lion-tier-progress-text-tier-cta-color);
    font-size: 1rem !important;
}

.claimed-rewards-list {
  padding: 12px;
}

#loyaltylion .lion-claimed-rewards-list--empty {
    display: block;
    font-size: 1.1em;
    background: #EEE8E1 !important;
    color: #444;
    border: 0px !important;
    padding: 24px !important;
    text-align: center;
}

@media (max-width: 480px) {
    #loyaltylion .lion-tier-progress__tier-bound, #loyaltylion .lion-tier-progress__tier-name, #loyaltylion .lion-tier-progress__tier-value {
        font-size: .9rem;
    }
}

/* --- Rewards Custom Tiers --- */
.rewards-custom-tiers {
  display: flex;
  flex-direction: column;
  gap: 8px;
  width: 100%;
  max-width: 80%; /* optional container width */
  margin: 0 auto;
  margin-bottom: 2rem;
}

@media screen and (max-width: 750px){
  .rewards-custom-tiers{
    max-width: 400px;
  }
}

.rewards-custom-tier {
  background-color: #703A3F; /* burgundy background */
  border: 1px solid #A28375; /* subtle accent border */
  border-radius: 0px;
  padding: 16px 20px;
  transition: all 0.2s ease;
}


.rewards-custom-tier__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.rewards-custom-tier__text-large {
  font-size: 1.2rem;
  font-weight: 700;
  text-transform: uppercase;
  color: #FFFFFF;
  margin: 0;
}

.rewards-custom-tier__text-small {
  font-size: .9rem;
  font-weight: 600;
  color: #fefaf1;
  text-transform: uppercase;
  margin: 0;
}

@media screen and (min-width: 750px) {
  .rewards-custom-tier {
    padding: 20px 24px;
  }

  .rewards-custom-tier__text-large {
    font-size: 1.4rem;
  }

  .rewards-custom-tier__text-small {
    font-size: 1rem;
  }
}
