/* =============================================
   Admiria Customer Club – Loyalty Stylesheet
   Class naming convention: loyalty-*
   ============================================= */

/* ---------- CSS Custom Properties ---------- */
:root {
  --loyalty-color-teal: #5CB9BB;
  --loyalty-color-pink: #E783B5;
  --loyalty-color-bg-start: #e0f8f7;
  --loyalty-color-bg-end: #fff;
  --loyalty-color-bubble-bg: #b8e8ea;
  --loyalty-color-text-body: #5a6470;
  --loyalty-color-white: #ffffff;

  --loyalty-font-logo: 'Dancing Script', cursive;
  --loyalty-font-body: 'Diodrum, sans-serif;

  --loyalty-radius-bubble: 50% 50% 50% 50% / 60% 60% 40% 40%;
  --loyalty-radius-btn: 50px;

  --loyalty-shadow-bubble: 0 20px 60px rgba(61, 189, 184, 0.18);
  --loyalty-shadow-btn: 0 8px 24px rgba(233, 111, 160, 0.35);

  --loyalty-transition-base: 0.3s ease;
}
html.rtl.lang-ar * {
    font-family: 'YekanBakh' !important;
}
/* ---------- Reset & Base ---------- */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}

body {
  font-family: var(--loyalty-font-body);
  background: var(--loyalty-color-white);

}
.admirian-ramadan-lang.loy {
    left: 0;
    right: auto;
    top: 12px;
}
.admirian-ramadan-lang.loy .admirian-ramadan-lang-item a {
    color: #2d2d2d;
}
/* ---------- Page Wrapper ---------- */
.loyalty-page {

  background: linear-gradient(180deg,
      var(--loyalty-color-bg-start) 0%,
      var(--loyalty-color-bg-end) 55%,
      var(--loyalty-color-white) 100%);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* ---------- Logo Badge ---------- */
.loyalty-logo-badge {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  background: var(--loyalty-color-white);
  border-radius: 0 0 60px 60px;
  padding: 18px 44px 22px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  box-shadow: 0 4px 20px rgba(61, 189, 184, 0.10);
  z-index: 10;
  animation: loyalty-fadeDown 0.7s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.loyalty-logo-wordmark {
  font-family: var(--loyalty-font-logo);
  font-size: 2.1rem;
  color: #444;
  letter-spacing: 0.01em;
  line-height: 1;
}

.loyalty-logo-swoosh {
  width: 90px;
  height: auto;
  display: block;
}

/* ---------- Hero Section ---------- */
.loyalty-hero {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 1200px;
  padding: 60px 40px 60px;
  gap: 80px;
}

/* ---------- Image Column ---------- */
.loyalty-hero-image-col {
  flex: 0 0 auto;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  animation: loyalty-fadeLeft 0.8s cubic-bezier(0.22, 1, 0.36, 1) 0.15s both;
}
html.rtl.lang-ar h1.loyalty-heading {
    text-align: right;
}

.loyalty-image-bubble {
  position: relative;
  width: clamp(280px, 35vw, 440px);
  aspect-ratio: 0.78 / 1;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

.loyalty-flower-deco {
  position: absolute;
  top: 4%;
  left: -16%;
  width: 38%;
  height: auto;
  z-index: 1;
  pointer-events: none;
  opacity: 0.85;
}

.loyalty-avatar-wrap {
  position: relative;
  z-index: 2;
  width: 88%;
  height: 96%;
  overflow: hidden;
  border-radius: var(--loyalty-radius-bubble);
}

.loyalty-avatar-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}

/* ---------- Content Column ---------- */
.loyalty-hero-content-col {
  flex: 1 1 0;
  max-width: 560px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 28px;
  animation: loyalty-fadeRight 0.8s cubic-bezier(0.22, 1, 0.36, 1) 0.25s both;
}

/* ---------- Heading ---------- */
.loyalty-heading {
  font-family: var(--loyalty-font-body);
  font-weight: 700;
  font-size: clamp(2rem, 4vw, 3.1rem);
  line-height: 1.2;
  letter-spacing: -0.01em;
  text-align: left;
}

.loyalty-heading-teal {
  color: var(--loyalty-color-teal);
}

.loyalty-heading-pink {
  color: var(--loyalty-color-pink);
}

/* ---------- Subtext ---------- */
.loyalty-subtext {
  font-size: clamp(0.95rem, 1.5vw, 1.08rem);
  color: var(--loyalty-color-text-body);
  line-height: 1.75;
  max-width: 460px;
}

/* ---------- CTA Button ---------- */
.loyalty-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 12px 36px;
  background: var(--loyalty-color-pink);
  color: var(--loyalty-color-white);
  font-family: var(--loyalty-font-body);
  font-size: 1.05rem;
  font-weight: 600;
  text-decoration: none;
  border-radius: var(--loyalty-radius-btn);
  box-shadow: var(--loyalty-shadow-btn);
  transition:
    background var(--loyalty-transition-base),
    box-shadow var(--loyalty-transition-base),
    transform var(--loyalty-transition-base);
  letter-spacing: 0.01em;
  margin-top: 32px;
}

.loyalty-cta-btn:hover,
.loyalty-cta-btn:focus-visible {
  background: #d45a8a;
  box-shadow: 0 12px 32px rgba(233, 111, 160, 0.45);
  transform: translateY(-2px);
  color:#fff;
}

.loyalty-cta-btn:active {
  transform: translateY(0);
  box-shadow: var(--loyalty-shadow-btn);
}

.loyalty-cta-arrow {
  font-size: 1.3rem;
  line-height: 1;
  margin-top: -1px;
}

.loyalty-page-logo {
  width: 200px;
}

/* ---------- Keyframe Animations ---------- */
@keyframes loyalty-fadeDown {
  from {
    opacity: 0;
    transform: translate(-50%, -24px);
  }

  to {
    opacity: 1;
    transform: translate(-50%, 0);
  }
}

@keyframes loyalty-fadeLeft {
  from {
    opacity: 0;
    transform: translateX(-32px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes loyalty-fadeRight {
  from {
    opacity: 0;
    transform: translateX(32px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* ---------- Responsive: Tablet ---------- */
@media (max-width: 900px) {
  .loyalty-hero {
    flex-direction: column;
    padding: 140px 32px 60px;
    gap: 40px;
    min-height: auto;
  }

  .loyalty-hero-image-col {
    order: 2;
  }

  .loyalty-hero-content-col {
    order: 1;
    align-items: center;
    text-align: center;
    max-width: 600px;
  }

  .loyalty-heading {
    text-align: center;
  }

  .loyalty-subtext {
    text-align: center;
  }

  .loyalty-image-bubble {
    width: clamp(220px, 55vw, 340px);
  }
}

/* ---------- Responsive: Mobile ---------- */
@media (max-width: 520px) {
  .loyalty-logo-badge {
    padding: 14px 32px 16px;
    border-radius: 0 0 40px 40px;
  }

  .loyalty-logo-wordmark {
    font-size: 1.7rem;
  }

  .loyalty-logo-swoosh {
    width: 70px;
  }

  .loyalty-hero {
    padding: 20px 20px 48px;
    gap: 32px;
  }

  .loyalty-heading {
    font-size: 1.85rem;
  }

  .loyalty-subtext {
    font-size: 0.92rem;
  }

  .loyalty-cta-btn {
    padding: 14px 32px;
    font-size: 0.97rem;
    margin-top: 0;
  }

  .loyalty-image-bubble {
    width: clamp(200px, 78vw, 300px);
  }

  .loyalty-flower-deco {
    left: -10%;
    width: 32%;
  }
}

/* ---------- Reduced Motion ---------- */
@media (prefers-reduced-motion: reduce) {

  .loyalty-logo-badge,
  .loyalty-hero-image-col,
  .loyalty-hero-content-col {
    animation: none;
  }

  .loyalty-cta-btn {
    transition: none;
  }
}


/* =============================================
   HOW IT WORKS SECTION
   ============================================= */

/* ---------- Section wrapper ---------- */
.loyalty-hiw {
  width: 100%;
  max-width: 1200px;
  padding: 80px 40px 100px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 64px;
}

/* ---------- Header ---------- */
.loyalty-hiw-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  position: relative;
}

.loyalty-hiw-title {
  font-family: var(--loyalty-font-body);
  font-weight: 700;
  font-size: clamp(1.7rem, 3vw, 2.3rem);
  color: #2d2d2d;
  letter-spacing: -0.01em;
  position: relative;
  margin:0px !important;
}

.loyalty-hiw-title-deco {
  position: absolute;
  right: -26px;
  top: -20px;
  width: 40px;
  height: auto;
  pointer-events: none;
}

.loyalty-hiw-title-line-first-le {
  width: 270px;
  height: 1px;
  background: var(--loyalty-color-teal);
  border-radius: 2px;
}

.loyalty-hiw-title-line-le {
  width: 330px;
  height: 1px;
  background: var(--loyalty-color-teal);
  border-radius: 2px;
}

.loyalty-hiw-title-line-first {
  width: 220px;
  height: 1px;
  background: var(--loyalty-color-teal);
  border-radius: 2px;
}

.loyalty-hiw-title-line {
  width: 270px;
  height: 1px;
  background: var(--loyalty-color-teal);
  border-radius: 2px;
}

/* ---------- Layout ---------- */
.loyalty-hiw-layout {
  display: flex;
  align-items: center;
  gap: 60px;
  width: 100%;
  justify-content: space-between;
}

/* ---------- Steps (left) ---------- */
.loyalty-hiw-steps {
  flex: 1 1 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 520px;
}

.loyalty-hiw-step {
  cursor: pointer;
  transition: opacity var(--loyalty-transition-base);
  opacity: 0.4;
  outline: none;
}

.loyalty-hiw-step--active {
  opacity: 1;
}

.loyalty-hiw-step:hover:not(.loyalty-hiw-step--active) {
  opacity: 0.65;
}

.loyalty-hiw-step-title {
  font-family: var(--loyalty-font-body);
  font-weight: 700;
  font-size: clamp(1.1rem, 2vw, 1.45rem);
  color: var(--loyalty-color-pink);
  margin-bottom: 10px;
  transition: color var(--loyalty-transition-base);
}

.loyalty-hiw-step:not(.loyalty-hiw-step--active) .loyalty-hiw-step-title {
  color: #F8DAE9;
}

.loyalty-hiw-step-body {
  font-family: var(--loyalty-font-body);
  font-size: clamp(0.88rem, 1.3vw, 1rem);
  color: var(--loyalty-color-text-body);
  line-height: 1.8;
  opacity: 0.8;
  transition: opacity 0.4s ease;
}

.loyalty-hiw-step--active .loyalty-hiw-step-body {
  opacity: 1;
}

/* ---------- Visual (right) ---------- */
.loyalty-hiw-visual {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  gap: 20px;
}

/* --- Number indicators --- */
.loyalty-hiw-numbers {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  align-self: flex-end;
  position: relative;
}

img.loyalty-hiw-num-icon {
  position: absolute;
  width: 18px;
  left: -32px;
  top: -4px;
}

.loyalty-hiw-num {
  font-family: var(--loyalty-font-body);
  font-weight: 700;
  font-size: 2.4rem;
  color: #F8DAE9;
  cursor: pointer;
  transition:
    color 0.35s ease,
    transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1),
    font-size 0.35s ease;
  user-select: none;
  line-height: 1;
  padding: 6px 0;
}

.loyalty-hiw-num--active {
  color: var(--loyalty-color-pink);
  transform: scale(1.25);
  font-size: 2.4rem;
}

.loyalty-hiw-num-line {
  width: 1.5px;
  height: 28px;
  background: linear-gradient(to bottom, #e0c8d4, #e0c8d4);
  opacity: 0.5;
  border-radius: 2px;
}

/* --- Arch image container --- */
.loyalty-hiw-arch-wrap {
  position: relative;
  width: clamp(260px, 32vw, 420px);
  aspect-ratio: 0.82 / 1;
}

.loyalty-hiw-slides {
  position: absolute;
  inset: 0;
  border-radius: 60% 60% 12px 12px / 55% 55% 12px 12px;
  overflow: hidden;
}

/* --- Individual slides --- */
.loyalty-hiw-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.55s ease;
  pointer-events: none;
}

.loyalty-hiw-slide--active {
  opacity: 1;
  pointer-events: auto;
}

.loyalty-hiw-slide--enter {
  opacity: 0;
  animation: loyalty-slideIn 0.55s ease forwards;
}

.loyalty-hiw-slide--exit {
  opacity: 0;
  transition: opacity 0.3s ease;
}

.loyalty-hiw-slide-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

/* --- Decorative flowers on arch --- */
.loyalty-hiw-flower-top {
  position: absolute;
  top: 40px;
  width: 100px;
  height: auto;
  pointer-events: none;
  left: -24px;
  z-index: 0;
}

.loyalty-hiw-flower-bottom {
  position: absolute;
  bottom: -4px;
  right: -24px;
  width: 60px;
  height: auto;
  pointer-events: none;
  z-index: 2;
}

/* ---------- Slide animation ---------- */
@keyframes loyalty-slideIn {
  from {
    opacity: 0;
    transform: scale(1.04);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}

/* ---------- Responsive: Tablet ---------- */
@media (max-width: 900px) {
  .loyalty-hiw {
    padding: 60px 32px 80px;
    gap: 48px;
  }

  .loyalty-hiw-layout {
    flex-direction: column-reverse;
    gap: 44px;
    align-items: center;
  }

  .loyalty-hiw-steps {
    max-width: 100%;
    width: 100%;
  }

  .loyalty-hiw-visual {
    justify-content: center;
  }

  .loyalty-hiw-arch-wrap {
    width: clamp(220px, 55vw, 360px);
  }
}

/* ---------- Responsive: Mobile ---------- */
@media (max-width: 520px) {
  .loyalty-hiw {
    padding: 12px 20px 64px;
    gap: 36px;
  }

  .loyalty-hiw-title {
    font-size: 1.5rem;
  }

  .loyalty-hiw-layout {
    gap: 32px;
  }

  .loyalty-hiw-steps {
    gap: 12px;
  }

  .loyalty-hiw-step-title {
    font-size: 1.05rem;
  }

  .loyalty-hiw-num {
    font-size: 1.6rem;
  }

  .loyalty-hiw-num--active {
    font-size: 2rem;
  }

  .loyalty-hiw-arch-wrap {
    width: clamp(200px, 72vw, 300px);
  }
}

/* ---------- Reduced Motion (HIW) ---------- */
@media (prefers-reduced-motion: reduce) {

  .loyalty-hiw-slide,
  .loyalty-hiw-slide--enter,
  .loyalty-hiw-step,
  .loyalty-hiw-step-body,
  .loyalty-hiw-num {
    transition: none;
    animation: none;
  }
}


/* =============================================
   BENEFITS SECTION
   ============================================= */

/* ---------- Section wrapper ---------- */
.loyalty-benefits {
  width: 100%;
}

/* ---------- Card ---------- */
.loyalty-benefits-card {
  background: linear-gradient(180deg,
      rgba(195, 240, 241, 0.55) 0%,
      rgba(240, 252, 252, 0.75) 50%,
      rgba(255, 255, 255, 0.9) 100%);
  border-radius: 300px;
  padding: 56px 60px 60px;
  display: flex;
  flex-direction: column;
  gap: 52px;
  margin-bottom: 100px;
}

/* ---------- Intro text ---------- */
.loyalty-benefits-intro {
  font-family: var(--loyalty-font-body);
  font-size: clamp(0.95rem, 1.6vw, 1.08rem);
  color: var(--loyalty-color-text-body);
  line-height: 1.9;
  text-align: center;
  max-width: 80vw;
  margin: 0 auto;
  opacity: 0;
  animation: loyalty-fadeUp 0.7s ease 0.1s forwards;
}

/* ---------- Layout ---------- */
.loyalty-benefits-layout {
  display: flex;
  align-items: center;
  gap: 48px;
  opacity: 0;
  animation: loyalty-fadeUp 0.7s ease 0.25s forwards;
}

/* ---------- Images ---------- */
.loyalty-benefits-images {
  position: relative;
  width: 40%;
  display: flex;
  gap: 16px;
}

.loyalty-benefits-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}

/* ---------- Content ---------- */
.loyalty-benefits-content {
  flex: 1 1 0;
  display: flex;
  flex-direction: column;
  gap: 32px;
}

/* ---------- Benefit list ---------- */
.loyalty-benefits-list {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.loyalty-benefits-item {
  padding-left: 0;
}

.loyalty-benefits-item-text {
  font-family: var(--loyalty-font-body);
  font-size: clamp(0.92rem, 1.4vw, 1.02rem);
  color: #000;
  line-height: 1.85;
}

.loyalty-benefits-item-label {
  font-weight: 700;
  color: var(--loyalty-color-teal);
  margin-right: 2px;
}

/* ---------- Instagram note ---------- */
.loyalty-benefits-note {
  position: relative;
  background: #C0EDE980;
  border-radius: 20px;
  padding: 24px 52px 24px 52px;
  backdrop-filter: blur(6px);
}

.loyalty-benefits-note-text {
  font-family: var(--loyalty-font-body);
  font-size: clamp(0.88rem, 1.3vw, 0.97rem);
  color: var(--loyalty-color-text-body);
  line-height: 1.85;
  text-align: center;
}

.loyalty-benefits-note-link {
  font-weight: 700;
  color: var(--loyalty-color-teal);
  text-decoration: none;
  transition: color var(--loyalty-transition-base);
}

.loyalty-benefits-note-link:hover {
  color: var(--loyalty-color-pink);
}

/* Corner Instagram icons */
.loyalty-benefits-note-icon {
  position: absolute;
  width: 44px;
  height: 44px;
  pointer-events: none;
}

.loyalty-benefits-note-icon--tl {
  top: -20px;
  left: 12px;
}

.loyalty-benefits-note-icon--br {
  bottom: -20px;
  right: 12px;
}

/* ---------- Fade up animation ---------- */
@keyframes loyalty-fadeUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ---------- Responsive: Tablet ---------- */
@media (max-width: 900px) {
  .loyalty-benefits {
    padding: 0 24px 80px;
  }

  .loyalty-benefits-card {
    padding: 40px 36px 48px;
    border-radius: 28px;
    gap: 40px;
  }

  .loyalty-benefits-layout {
    flex-direction: column;
    align-items: center;
    gap: 40px;
  }

  .loyalty-benefits-images {
    width: clamp(260px, 65vw, 380px);
    height: clamp(280px, 45vw, 380px);
  }

  .loyalty-benefits-content {
    width: 100%;
  }
}

/* ---------- Responsive: Mobile ---------- */
@media (max-width: 520px) {
  .loyalty-benefits {
    padding: 0;
  }

  .loyalty-benefits-card {
    padding: 28px 20px 36px;
    border-radius: 132px;
    gap: 32px;
  }

  .loyalty-benefits-images {
    width: 80vw;
    height: 56vw;
  }

  .loyalty-benefits-note {
    padding: 20px 40px;
  }

  .loyalty-benefits-note-icon {
    width: 28px;
    height: 28px;
  }

  .loyalty-benefits-note-icon--tl {
    top: -12px;
    left: 12px;
  }

  .loyalty-benefits-note-icon--br {
    bottom: -10px;
    right: 12px;
  }
}

/* ---------- Reduced Motion (benefits) ---------- */
@media (prefers-reduced-motion: reduce) {

  .loyalty-benefits-intro,
  .loyalty-benefits-layout {
    animation: none;
    opacity: 1;
  }

  .loyalty-benefits-note-link {
    transition: none;
  }
}


/* =============================================
   LEAGUE OVERVIEW SECTION
   ============================================= */

/* ---------- Section wrapper ---------- */
.loyalty-league {
  width: 100%;
  max-width: 1200px;
  padding: 20px 40px 120px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 64px;
  position: relative;
}

/* ---------- Header ---------- */
.loyalty-league-header {
  display: flex;
  justify-content: center;
  width: 100%;
}

.loyalty-league-title-wrap {
  display: flex;
  align-items: center;
  gap: 16px;
  position: relative;
}

.loyalty-league-title {
  font-family: var(--loyalty-font-body);
  font-weight: 700;
  font-size: clamp(1.8rem, 3.2vw, 2.6rem);
  color: #2d2d2d;
  letter-spacing: -0.01em;
  white-space: nowrap;
}

.loyalty-league-title-line {
  height: 1.5px;
  width: clamp(40px, 6vw, 90px);
  background: linear-gradient(90deg, transparent, rgba(61, 189, 184, 0.5));
  border-radius: 2px;
}

.loyalty-league-title-line--right {
  background: linear-gradient(90deg, rgba(61, 189, 184, 0.5), transparent);
}

/* Decorative branch top-right of title */
.loyalty-league-branch-title {
  position: absolute;
  right: -52px;
  top: -38px;
  width: 56px;
  height: auto;
  pointer-events: none;
}

/* ---------- Decorative side branches ---------- */
.loyalty-league-branch-left,
.loyalty-league-branch-right {
  position: absolute;
  width: 110px;
  height: auto;
  top: 160px;
  pointer-events: none;
  z-index: 0;
}

.loyalty-league-branch-left {
  left: 10px;
}

.loyalty-league-branch-right {
  right: -4px;
  top: 280px;
}

/* ---------- Cards grid ---------- */
.loyalty-league-cards {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 60px;
  width: 100%;
  position: relative;
  z-index: 1;
}

/* ---------- Individual card ---------- */
.loyalty-league-card {
  flex: 1 1 0;
  max-width: 320px;
  display: flex;
  justify-content: center;
  opacity: 0;
  transform: translateY(28px);
  animation: loyalty-leagueCardIn 0.65s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.loyalty-league-card--silver {
  animation-delay: 0.05s;
}

.loyalty-league-card--gold {
  animation-delay: 0.18s;
}

.loyalty-league-card--platinum {
  animation-delay: 0.31s;
}

/* Arch shape */
.loyalty-league-card-arch {
  width: 100%;
  border-radius: 230px 230px 0 0;
  background: #fce8f0 !important;
  padding: 80px 32px 60px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: default;
}

.loyalty-league-card-arch:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(233, 111, 160, 0.15);
}



/* ---------- Card text ---------- */
.loyalty-league-card-name {
  font-family: var(--loyalty-font-body);
  font-weight: 700;
  font-size: clamp(1.05rem, 1.8vw, 1.25rem);
  color: #DF1AA0;
  letter-spacing: 0.01em;
}

.loyalty-league-card-points {
  font-family: var(--loyalty-font-body);
  font-weight: 700;
  font-size: clamp(1.2rem, 2.2vw, 1.6rem);
  color: #4A4A4A;
  letter-spacing: -0.01em;
}

.loyalty-league-card-reward {
  font-family: var(--loyalty-font-body);
  font-size: clamp(0.82rem, 1.2vw, 0.92rem);
  color: var(--loyalty-color-text-body);
  line-height: 1.7;
}

/* ---------- CTA button ---------- */
.loyalty-league-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 18px 52px;
  background: var(--loyalty-color-pink);
  color: var(--loyalty-color-white);
  font-family: var(--loyalty-font-body);
  font-size: 1.08rem;
  font-weight: 700;
  text-decoration: none;
  border-radius: var(--loyalty-radius-btn);
  letter-spacing: 0.02em;
  transition:
    background var(--loyalty-transition-base),
    box-shadow var(--loyalty-transition-base),
    transform var(--loyalty-transition-base);
  position: relative;
  z-index: 1;
}

.loyalty-league-cta:hover,
.loyalty-league-cta:focus-visible {
  box-shadow: 0 14px 36px rgba(233, 111, 160, 0.48);
  transform: translateY(-2px);
  color:#fff;
}

.loyalty-league-cta:active {
  transform: translateY(0);
}

.loyalty-league-cta-arrow {
  font-size: 1.4rem;
  line-height: 1;
}

/* ---------- Card entrance animation ---------- */
@keyframes loyalty-leagueCardIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ---------- Responsive: Tablet ---------- */
@media (max-width: 900px) {
  .loyalty-league {
    padding: 0 24px 80px;
    gap: 48px;
  }

  .loyalty-league-cards {
    gap: 18px;
  }

  .loyalty-league-branch-left,
  .loyalty-league-branch-right {
    width: 72px;
    top: 80px;
  }
}

/* ---------- Responsive: Mobile ---------- */
@media (max-width: 620px) {
  .loyalty-league {
    padding: 0 16px 64px;
    gap: 36px;
  }

  .loyalty-league-cards {
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }

  .loyalty-league-card {
    max-width: 88vw;
    width: 100%;
  }

  .loyalty-league-card-arch {
    border-radius: 230px 230px 0 0;
    padding: 80px 28px;
  }

  .loyalty-league-branch-left,
  .loyalty-league-branch-right {
    display: none;
  }

  .loyalty-league-cta {
    padding: 16px 40px;
    font-size: 1rem;
  }

  .loyalty-hiw-title-line-first-le {
    width: 200px;
  }

  .loyalty-hiw-title-line-le {
    width: 240px;

  }

  .loyalty-hiw-title-line-first {
    width: 160px;

  }

  .loyalty-hiw-title-line {
    width: 200px;

  }
}

/* ---------- Reduced Motion (league) ---------- */
@media (prefers-reduced-motion: reduce) {
  .loyalty-league-card {
    animation: none;
    opacity: 1;
    transform: none;
  }

  .loyalty-league-card-arch,
  .loyalty-league-cta {
    transition: none;
  }
}