:root {
  --wolve-bg-dark: #333333;
  --wolve-text-main: #ffffff;
  --wolve-accent-mint: #3de2c0;
  --wolve-accent-gold: #d4af37;
}

.wolve-tier-box {
    display: flex;
    align-items: center;
    background: var(--wolve-bg-dark);
    color: var(--wolve-text-main);
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 20px;
  }
  
  .progress-ring {
    position: relative;
    width: 120px;
    height: 120px;
    margin-right: 20px;
  }
  
  .progress-ring__circle-bg,
  .progress-ring__circle {
    fill: transparent;
    stroke-width: 12;
    transform: rotate(-90deg);
    transform-origin: 50% 50%;
  }
  
  .progress-ring__circle-bg {
    stroke: var(--wolve-bg-dark);
  }
  
  .progress-ring__circle {
    stroke: var(--wolve-accent-mint);
    stroke-dasharray: 339.292; /* 2π·54 */
    stroke-dashoffset: 339.292;
    transition: stroke-dashoffset 0.6s ease;
  }
  
  .progress-ring__text {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    flex-direction: column; /* stack title → name → points */
    align-items: center;
    justify-content: center; /* vertically centre text inside ring */
    width: 70%; /* reserve safe zone between text and ring stroke */
    text-align: center;
  }
  
  .progress-ring__text .tier-title {
    font-size: 0.9rem; /* slightly smaller */
    font-weight: bold;
    color: var(--wolve-text-main);
  }

  .current-tier-title-inside-ring {
    font-size: 0.8rem; /* slightly smaller */
    font-weight: bold;
    color: var(--wolve-text-main);
  }
  
  /* Ensure the tier name fits nicely inside the ring */
  .progress-ring__text .tier-name {
    margin: 0; /* remove default heading margins */
    padding: 0 4px; /* side breathing room */
    font-size: clamp(.7rem, 2vw, .9rem); /* auto-shrink on small screens */
    line-height: 1.2;
    word-break: break-word; /* allow wrap mid-word if needed */
  }
  
  .progress-ring__text .tier-points {
    font-size: .8rem;
    opacity: 0.8;
  }
  
  .tier-info h3 {
    margin: 0 0 5px;
    font-size: 1.2rem;
    font-weight: 600; /* like body bold */
    font-family: inherit; /* ← key line */
    color: var(--wolve-text-main); /* already set */
  }
  
  /* Explicitly force links inside the heading to be white too */
  .tier-info h3 a {
    color: var(--wolve-text-main) !important;
  }
  
  .tier-info p {
    margin: 0 0 8px;
  }
  
  .tier-info small {
    font-size: 0.8rem;
    opacity: 0.7;
  }
  
  /* Cashpoints box example */
  .wolve-cashpoints-box {
    border: 1px solid #ddd;
    border-radius: 6px;
    padding: 15px;
    margin-bottom: 20px;
  }
  
  /* ───────── shared box look ───────── */
  .wolve-benefit-box{
    display:flex;
    align-items:center;
    background:var(--wolve-bg-dark);
    color:var(--wolve-text-main);
    border-radius:8px;
    padding:18px 22px;
    margin:18px 0;
  }

  .wolve-benefit-box .icon-area{
    font-size:2rem;
    margin-right:18px;
    flex:0 0 40px;
    text-align:center;
  }

  /* Benefit card headings (including linked titles) */
  .wolve-benefit-box .benefit-info h3,
  .wolve-benefit-box .benefit-info h3 a {
    margin: 0 0 4px;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--wolve-text-main); /* force white on dark card */
    font-family: inherit; /* use same face as body text */
  }

  .wolve-benefit-box .benefit-info .amount{
    margin:0 0 4px;
    font-size:1rem;
    font-weight:500;
  }

  .wolve-benefit-box .benefit-info small{
    opacity:.7;
    font-size:.8rem;
  }

  /* ───────── variant accents ───────── */
  .wolve-benefit-box.cashpoints    { border-left:6px solid var(--wolve-accent-mint); } /* mint */
  .wolve-benefit-box.coupon        { border-left:6px solid var(--wolve-accent-gold); } /* gold */

  /* expired coupons dimmed */
  .wolve-benefit-box.coupon.expired{
    filter:grayscale(1) opacity(.6);
  }

  /* cash-points icon becomes a white circle */
.cashpoints-circle{
    width:10px;
    height:10px;
    border-radius:50%;
    background:var(--wolve-text-main);
    display:inline-block;
  }
  
  /* keep icon area aligned */
  .wolve-benefit-box .icon-area{
    flex:0 0 10px;
    margin-right:18px;
    text-align:center;
  }

  /* Member card accent colour (soft mint to match the left bar) */
.wolve-benefit-box.member{
  border-left:6px solid var(--wolve-accent-mint);
}

/* Make the wave icon a bit larger & centred */
.member-wave{
  font-size:2.2rem;
  line-height:1;
  display:flex;
  align-items:center;
  justify-content:center;
}

/* Intro paragraph spacing & colour */
.member-intro{
  margin:4px 0 0;
  line-height:1.4;
  opacity:.9;
}


  /* optional label */
  .expired-label{ color:#ff8b8b; font-weight:600; }
  