/* ===== TRIAL EXPIRATION NOTIFICATION ===== */
.trial-notification {
    position: fixed;
    bottom: 20px;
    right: -400px;
    z-index: 9999;
    width: 340px;
    background: #1a1a2e;
    border: 1px solid #2a2a4a;
    border-radius: 10px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
    overflow: hidden;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    transition: right 0.4s ease;
}

.trial-notification.trial-notif-show {
    right: 20px;
}

.trial-notification.trial-notif-hide {
    right: -400px;
}

/* Urgency colors */
.trial-notification.trial-normal {
    border-color: #3498db;
}

.trial-notification.trial-warning {
    border-color: #f39c12;
}

.trial-notification.trial-urgent {
    border-color: #e74c3c;
    animation: trial-pulse 2s ease-in-out infinite;
}

.trial-notification.trial-expired {
    border-color: #e74c3c;
    background: #2a1a1e;
}

@keyframes trial-pulse {
    0%, 100% { box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4); }
    50% { box-shadow: 0 8px 30px rgba(231, 76, 60, 0.3); }
}

/* Content layout */
.trial-notif-content {
    display: flex;
    align-items: flex-start;
    padding: 14px 16px;
    gap: 12px;
}

.trial-notif-icon {
    font-size: 24px;
    flex-shrink: 0;
    margin-top: 2px;
}

.trial-notif-text {
    flex: 1;
}

.trial-notif-message {
    color: #ddd;
    font-size: 14px;
    line-height: 1.4;
    margin-bottom: 8px;
}

.trial-notif-message strong {
    color: #fff;
}

.trial-notif-signup {
    display: inline-block;
    padding: 5px 16px;
    background: #e94560;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    font-size: 12px;
    font-weight: 600;
    transition: background 0.2s;
}

.trial-notif-signup:hover {
    background: #c0392b;
}

.trial-notif-close {
    background: none;
    border: none;
    color: #666;
    font-size: 16px;
    cursor: pointer;
    padding: 2px 6px;
    flex-shrink: 0;
}

.trial-notif-close:hover {
    color: #e74c3c;
}

/* Progress bar (countdown to auto-dismiss) */
.trial-notif-progress {
    height: 3px;
    width: 100%;
    background: #3498db;
}

.trial-notification.trial-warning .trial-notif-progress {
    background: #f39c12;
}

.trial-notification.trial-urgent .trial-notif-progress,
.trial-notification.trial-expired .trial-notif-progress {
    background: #e74c3c;
}
/* ===== STRIPE PAYMENT MODAL ===== */

/*https://eshoptech.com/images/eshoplogo.jpg*/

.stripe-modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.5);
    z-index: 9998;
}

.stripe-modal-box {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: #ffffff;
    /*background: #C8DCFF;*/
    border: 1px solid #2a2a4a;
    border-radius: 12px;
    padding: 30px;
    width: 420px;
    max-width: 95vw;
    z-index: 9999;
    box-shadow: 0 20px 60px rgba(0,0,0,0.4);
    color: #ddd;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.stripe-modal-header {
    background: #ffffff;
    color: #23456a;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 5px 20px 10px 20px;
}

    .stripe-modal-header h3 {
        color: #23456a;
        margin: 8px 0 0 0;
    }

.stripe-modal-close {
    background: none;
    border: none;
    font-size: 1.2rem;
    cursor: pointer;
    color: #666;
}

    .stripe-modal-close:hover {
        color: #e74c3c;
    }

.stripe-modal-body p {
    color: #aaa;
    margin-bottom: 20px;
    font-size: 14px;
}

.stripe-submit-btn {
    width: 100%;
    margin-top: 20px;
    padding: 12px;
    background: #e94560;
    color: white;
    border: none;
    border-radius: 6px;
    font-size: 1rem;
    cursor: pointer;
    font-weight: 600;
    transition: background 0.2s;
}

    .stripe-submit-btn:hover {
        background: #c0392b;
    }

    .stripe-submit-btn:disabled {
        background: #444;
        cursor: not-allowed;
    }

.stripe-error {
    color: #e74c3c;
    margin-top: 10px;
    font-size: 0.9rem;
}

.trial-success {
    border-color: #2ecc71 !important;
    background: #1a2e1e !important;
}
