 .scs-stripe-checkout .pricing-container {
    max-width: 900px;
    margin: 60px auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    font-family: "Inter", sans-serif;
}

.scs-stripe-checkout .pricing-card {
    border: 1px solid #e0e0e0;
    border-radius: 16px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.08);
    text-align: center;
    padding: 40px 25px;
    transition: all 0.3s ease;
    background: #fff;
}

.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.12);
}

.pricing-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: #222;
    margin-bottom: 10px;
}

.pricing-price {
    font-size: 2.5rem;
    font-weight: 700;
    color: #0073aa;
    margin: 20px 0;
}

.scs-stripe-checkout .pricing-features {
    list-style: none;
    padding: 0;
    margin: 20px 0;
    color: #555;
    font-size: 0.95rem;
}
.scs-stripe-checkout .pricing-features li {
    padding: 8px 0;
    border-bottom: 1px solid #eee;
    font-size: x-large;
}
.scs-stripe-checkout .pricing-button {
    display: inline-block;
    margin-top: 25px;
    background: #0073aa;
    color: white;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    transition: background 0.3s ease;
}

.pricing-button:hover {
    background: #005f8c;
}


    /* Loader Spinner */
    .loader-spinner {
        border: 4px solid #f3f3f3;
        border-top: 4px solid #6a5af9;
        border-radius: 50%;
        width: 40px;
        height: 40px;
        margin: 0 auto 10px auto;
        animation: spin 1s linear infinite;
    }
    @keyframes spin {
        0% { transform: rotate(0deg); }
        100% { transform: rotate(360deg); }
    }

    /* Overlay background */
    #modalOverlay {
      position: fixed;
      inset: 0;
      background: rgba(255, 255, 255, 0.15);
      backdrop-filter: blur(10px);
      display: none;
      z-index: 999;
    }

    /* Modal box */
    #paymentModal {
      position: fixed;
      top: 45%;
      left: 50%;
      transform: translate(-50%, -50%);
      background: #fff;
      padding: 25px 35px;
      border-radius: 12px;
      box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
      display: none;
      z-index: 1000;
      width: 400px;
      max-width: 90%;
      text-align: center;
      animation: fadeInUp 0.3s ease;
      max-height: 500px;
      overflow-y: auto;
      scrollbar-width: thin;
    }

    #paymentModal::-webkit-scrollbar {
      width: 6px;
    }
    #paymentModal::-webkit-scrollbar-thumb {
      background-color: rgba(0, 0, 0, 0.2);
      border-radius: 4px;
    }

    @keyframes fadeInUp {
      from {
        opacity: 0;
        transform: translate(-50%, -40%);
      }
      to {
        opacity: 1;
        transform: translate(-50%, -50%);
      }
    }

    #ajaxLoader {
        display: none;
        position: fixed;
        inset: 0;
        background: rgba(255,255,255,0.85);
        z-index: 9999;
        text-align: center;
        padding-top: 20%;
        font-size: 16px;
        color: #333;
    }
 

/* Liencence purchase shortcode css */
    /* ===============================
   TWO STEP FORM WRAPPER
================================ */
#ts-two-step-wrapper {
    max-width: 420px;
    margin: 30px auto;
    padding: 25px;
    border: 1px solid #ddd;
    border-radius: 10px;
    font-family: Arial, sans-serif;
    background: #fff;
}

/* ===============================
   STEPS
================================ */
.ts-step {
    display: none;
}

.ts-step.active {
    display: block;
}

/* ===============================
   INPUT
================================ */
#ts-two-step-wrapper input[type="email"] {
    width: 100%;
    padding: 12px;
    margin-top: 10px;
    border: 1px solid #ccc;
    border-radius: 6px;
}

/* ===============================
   BUTTONS
================================ */
#ts-two-step-wrapper button {
    margin-top: 15px;
    width: 100%;
    padding: 12px;
    background: #2271b1;
    color: #fff;
    border: none;
    border-radius: 6px;
    cursor: pointer;
}

#ts-two-step-wrapper button:hover {
    background: #135e96;
}

/* ===============================
   ERROR
================================ */
.ts-error-msg {
    color: red;
    font-size: 13px;
    display: block;
    margin-top: 6px;
}

/* ===============================
   PRICING CARD
================================ */
.pricing-card {
    max-width: 420px;
    margin: 0 auto;
    padding: 35px 25px;
    background: #fff;
    border-radius: 14px;
    border: 1px solid #eaeaea;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.06);
}

.pricing-card h4 {
    font-size: 18px;
    font-weight: 600;
    color: #222;
    margin-bottom: 15px;
}

.price {
    font-size: 32px;
    font-weight: 700;
    color: #0073aa;
}

/* ===============================
   FEATURES
================================ */
.pricing-card ul {
    list-style: none;
    padding: 0;
    margin: 30px 0;
}

.pricing-card ul li {
    padding: 14px 0;
    font-size: 15px;
    color: #555;
    border-top: 1px solid #eee;
}

.pricing-card ul li:last-child {
    border-bottom: 1px solid #eee;
}

/* ===============================
   BUY BUTTON
================================ */
.ts-pricing-button {
    margin-top: 30px;
    padding: 14px 32px;
    background: #0073aa;
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 15px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.ts-pricing-button:hover {
    background: #005f8d;
}


    /* ✅ Overlay - Background Blur */
    #ts-modal-overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.6);
        backdrop-filter: blur(8px);
        -webkit-backdrop-filter: blur(8px);
        z-index: 9998;
        display: none;
    }

    /* ✅ Payment Modal - Center Popup */
    #ts-payment-modal {
        position: fixed;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        background: white;
        padding: 40px;
        border-radius: 12px;
        box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
        z-index: 9999;
        max-width: 500px;
        width: 90%;
        max-height: 90vh;
        overflow-y: auto;
        display: none;
    }

    /* ✅ Card Element Styling */
    #ts-card-element {
        padding: 20px;
        border: 1px solid #e0e0e0;
        border-radius: 8px;
        margin-bottom: 20px;
        background: #f9f9f9;
    }

    /* ✅ Confirm Button */
    #ts-confirm-payment {
        width: 100%;
        padding: 15px;
        background: #5469d4;
        color: white;
        border: none;
        border-radius: 8px;
        font-size: 16px;
        font-weight: 600;
        cursor: pointer;
        transition: background 0.3s;
    }

    #ts-confirm-payment:hover {
        background: #4153b8;
    }

    #ts-confirm-payment:disabled {
        background: #cccccc;
        cursor: not-allowed;
    }

    /* ✅ Loading Spinner */
    #ts-ajax-loader {
        position: fixed;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        background: white;
        padding: 30px 50px;
        border-radius: 10px;
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
        z-index: 10000;
        font-size: 18px;
        font-weight: 600;
        color: #333;
    }

    /* ✅ Modal Header (Optional) */
    .ts-modal-header {
        margin-bottom: 20px;
        padding-bottom: 15px;
        border-bottom: 2px solid #f0f0f0;
    }

    .ts-modal-header h3 {
        margin: 0;
        font-size: 24px;
        color: #333;
    }

    /* ✅ Close Button (Optional) */
    .ts-modal-close {
        position: absolute;
        top: 15px;
        right: 15px;
        background: none;
        border: none;
        font-size: 28px;
        color: #999;
        cursor: pointer;
        line-height: 1;
        padding: 0;
        width: 30px;
        height: 30px;
    }

    .ts-modal-close:hover {
        color: #333;
    }

    /* ✅ Responsive */
    @media (max-width: 768px) {
        #ts-payment-modal {
            width: 95%;
            padding: 25px;
        }
    }