/* ================================
   BASE PREMIUM CARD
   ================================ */
.premium-card {
  border: 4px solid !important; /* thick border */
  border-radius: 22px;
  overflow: visible; /* allow badge to float */
  position: relative;
  transition: all 0.35s ease;
}

.premium-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 18px 40px rgba(0,0,0,0.18);
}

/* ================================
   BLUE CARD (DEFAULT)
   ================================ */
[data-bs-theme="light"] .premium-card {
  border-color: #1e6ee8 !important;
  background-color: #ffffff;
}

[data-bs-theme="dark"] .premium-card {
  border-color: #75aaff !important;
  background-color: #1c1c1e;
}

/* ================================
   GREEN CARD (3-MONTH PLAN)
   ================================ */
.premium-card.green-card {
  border-color: #28a745 !important; /* green border */
}

[data-bs-theme="light"] .premium-card.green-card {
  border-color: #28a745 !important;
  background-color: #ffffff;
}

[data-bs-theme="dark"] .premium-card.green-card {
  border-color: #71dd8f !important;
  background-color: #1c1c1e;
}

/* ================================
   CARD HEADER
   ================================ */
.premium-header {
  background: linear-gradient(135deg,#1e6ee8,#3f8cff);
  padding: 22px 110px 22px 22px;
  font-size: 20px;
  border-top-left-radius: 22px;
  border-top-right-radius: 22px;
}

/* Green header for green-card */
.green-header {
  background: linear-gradient(135deg,#28a745,#71dd8f);
  padding: 22px 110px 22px 22px;
  font-size: 20px;
  border-top-left-radius: 22px;
  border-top-right-radius: 22px;
}

/* ================================
   DISCOUNT BADGE
   ================================ */
.discount-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  background: #e4de31;
  color: #000;
  padding: 6px 14px;
  font-size: 13px;
  font-weight: 600;
  border-radius: 50px;
  white-space: nowrap;
}

/* Green badge for green-card */
.green-badge {
  background: #28a745;
  color: #fff;
}

/* ================================
   PRICE BOX
   ================================ */
.price-box {
  margin-top: 10px;
}

.old-price {
  font-size: 26px;
  font-weight: 600;
  text-decoration: line-through;
  text-decoration-thickness: 3px;
  text-decoration-color: #dc3545;
}

/* Old price color */
[data-bs-theme="light"] .old-price {
  color: #6c757d;
}
[data-bs-theme="dark"] .old-price {
  color: #ffffff;
  opacity: 0.8;
}

.new-price {
  font-size: 46px;
  font-weight: 800;
  color: #1e6ee8;
  margin: 6px 0;
}

/* Green price for green-card */
.green-price {
  color: #28a745;
}

.save-text {
  font-weight: 600;
  font-size: 15px;
}

/* Save text colors */
[data-bs-theme="light"] .save-text {
  color: #992b74;
}
[data-bs-theme="dark"] .save-text {
  color: #37dd8f;
}

/* Green save text */
.green-save {
  font-weight: 600;
  font-size: 15px;
}
[data-bs-theme="light"] .green-save {
  color: #155724;
}
[data-bs-theme="dark"] .green-save {
  color: #71dd8f;
}

/* ================================
   FEATURE LIST
   ================================ */
.feature-list li {
  padding: 6px 0;
  font-size: 15px;
  color: #555;
}

/* Light/Dark theme features */
[data-bs-theme="light"] .feature-list li {
  color: #163652;
}
[data-bs-theme="dark"] .feature-list li {
  color: #ffffff;
  opacity: 0.8;
}

/* Green card feature list */
[data-bs-theme="light"] .premium-card.green-card .feature-list li {
  color: #155724;
}
[data-bs-theme="dark"] .premium-card.green-card .feature-list li {
  color: #71dd8f;
  opacity: 0.85;
}

/* ================================
   BUTTONS
   ================================ */
.btn-premium {
  background: linear-gradient(135deg,#1e6ee8,#3f8cff);
  color: white;
  border: none;
  padding: 12px 34px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 16px;
  transition: .3s;
}

.btn-premium:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 20px rgba(0,0,0,0.2);
}

/* Green button */
.green-btn {
  background: linear-gradient(135deg,#28a745,#71dd8f);
  color: white;
  border: none;
  padding: 12px 34px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 16px;
  transition: .3s;
}

.green-btn:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 20px rgba(0,0,0,0.2);
}

/* ================================
   QR IMAGE BOX
   ================================ */
.qr-box img {
  max-width: 220px;
  width: 100%;
  display: block;
  margin: 0 auto;
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.1);
}


/* Feature list tick alignment */
.feature-list li {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 6px;
}
.feature-list i {
  font-size: 18px;
}
