/* =========================================================
   MEIN PUNKTE-KONTO – JOOMLA MODUL
   ========================================================= */

.is-points-account-card {
  width: 100%;
  padding: 30px 32px 32px;
  border-radius: 22px;
  background: linear-gradient(135deg, #ffffff 0%, #fff7fb 100%);
  border: 1px solid rgba(237, 20, 125, 0.14);
  box-shadow: 0 16px 36px rgba(31, 41, 55, 0.06);
}

.is-points-account-card__head {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  text-align: center;
  margin-bottom: 26px;
}

.is-points-account-card__icon {
  font-size: 2rem;
  line-height: 1;
}

.is-points-account-card__head h2 {
  margin: 0;
  color: #071225;
  font-size: clamp(1.85rem, 3vw, 2.35rem);
  line-height: 1.1;
  font-weight: 950;
  letter-spacing: -0.04em;
}

.is-points-account-card__head p {
  margin: 0;
  color: #374151;
  font-size: 1rem;
  line-height: 1.55;
  font-weight: 600;
}

.is-points-account-card__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-bottom: 28px;
}

.is-points-account-card__stat {
  padding: 20px 18px;
  text-align: center;
  border-radius: 18px;
  background: rgba(237, 20, 125, 0.05);
  border: 1px solid rgba(237, 20, 125, 0.12);
}

.is-points-account-card__stat strong {
  display: block;
  margin-bottom: 8px;
  color: #071225;
  font-size: clamp(1.25rem, 2.5vw, 2.15rem);
  line-height: 1;
  font-weight: 950;
  overflow-wrap: anywhere;
}

.is-points-account-card__stat span {
  color: #ed147d;
  font-size: 0.95rem;
  font-weight: 850;
}

.is-points-account-card__progress {
  margin-bottom: 26px;
}

.is-points-account-card__progress-head {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 10px;
  color: #071225;
  font-size: 0.96rem;
  font-weight: 850;
}

.is-points-account-card__bar {
  height: 14px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(237, 20, 125, 0.08);
}

.is-points-account-card__bar span {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, #ed147d 0%, #ff4ea4 100%);
}

.is-points-account-card__footer {
  text-align: center;
}

.is-points-account-card__footer p {
  margin: 0 0 18px;
  color: #374151;
  font-size: 0.96rem;
  font-weight: 650;
}

.is-points-account-card__footer strong {
  color: #071225;
  font-weight: 900;
}

.is-points-account-card__footer a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 24px;
  border-radius: 999px;
  background: #ed147d;
  color: #fff;
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 900;
  box-shadow: 0 10px 22px rgba(237, 20, 125, 0.25);
  transition: transform .2s ease, box-shadow .2s ease;
}

.is-points-account-card__footer a:hover,
.is-points-account-card__footer a:focus {
  transform: translateY(-2px);
  box-shadow: 0 14px 28px rgba(237, 20, 125, 0.3);
  color: #fff;
}

.is-points-account-card__guest {
  max-width: 560px;
  margin: 0 auto;
  padding: 22px;
  text-align: center;
  border-radius: 18px;
  background: rgba(237, 20, 125, 0.05);
  border: 1px solid rgba(237, 20, 125, 0.12);
}

.is-points-account-card__guest strong {
  display: block;
  margin-bottom: 8px;
  color: #071225;
  font-size: 1.35rem;
  font-weight: 950;
}

.is-points-account-card__guest span {
  color: #374151;
  font-size: 0.98rem;
  font-weight: 650;
}

@media (max-width: 767px) {
  .is-points-account-card {
    padding: 24px 20px;
    border-radius: 20px;
  }

  .is-points-account-card__grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .is-points-account-card__progress-head {
    flex-direction: column;
    text-align: center;
  }
}
