/* ============================
   RESPONSIVE PRICING TILES
============================ */

.responsive-pricing {
  display: none;
}

@media (max-width: 991px) {

  .pricing-table {
    display: none !important;
  }

  .responsive-pricing {
    display: grid;
    gap: 24px;
    margin-top: 30px;
    padding: 0 16px 40px;
  }

  .pricing-tile {
    background: #f6f7ff;
    border-radius: 18px;
    padding: 24px;
    text-align: center;
    position: relative;
  }

  .pricing-tile h4 {
    font-size: 18px;
    margin-bottom: 8px;
  }

  .pricing-tile .price del {
    font-size: 15px;
    opacity: 0.6;
    display: block;
  }

  .pricing-tile .price span {
    font-size: 28px;
    font-weight: 700;
    display: block;
    margin-top: 4px;
  }

  .pricing-tile ul {
    list-style: none;
    padding: 0;
    margin: 20px 0;
    text-align: left;
  }

  .pricing-tile ul li {
    font-size: 14px;
    margin-bottom: 10px;
    padding-left: 20px;
    position: relative;
  }

  .pricing-tile ul li::before {
    content: "✔";
    position: absolute;
    left: 0;
    color: #6366f1;
    font-weight: 600;
  }

  .pricing-tile .btn {
    width: 100%;
    justify-content: center;
  }

  .pricing-tile.popular {
    border: 2px solid #6366f1;
  }

  .pricing-tile .badge {
    position: absolute;
    top: -10px;
    right: 16px;
    background: #ffd600;
    font-size: 12px;
    padding: 4px 10px;
    border-radius: 12px;
    font-weight: 600;
  }
}

/* ============================
   DARK MODE SUPPORT (SAFE)
============================ */

body.theme-dark .pricing-tile {
  background: #121212 !important;
  border: 1px solid #2a2a2a;
  color: #ffffff;
}

body.theme-dark .pricing-tile * {
  color: #ffffff !important;
}

body.theme-dark .pricing-tile del {
  color: #9a9a9a !important;
}

body.theme-dark .pricing-tile ul li::before {
  color: #6366f1;
}

body.theme-dark .pricing-tile .btn {
  background: transparent;
  color: #ffffff;
  border: 2px solid #6366f1;
}

body.theme-dark .pricing-tile .btn:hover {
  background: #6366f1;
  color: #ffffff;
}
