/* ===== Premium Notification Modal ===== */

.premium-modal-content {
    border-radius: 20px;
    overflow: hidden;
    border: none;
    background: #ffffff;
    box-shadow: 0 30px 70px rgba(0,0,0,0.25);
    animation: slideUp 0.3s ease;
}

/* HEADER */
.premium-header {
    background: linear-gradient(135deg,#6d28d9,#9333ea);
    padding: 20px 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #fff;
}

.header-left {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    font-size: 18px;
}

.close-btn {
    background: transparent;
    border: none;
    color: #fff;
    font-size: 18px;
}

/* BODY */
.premium-body {
    padding: 30px;
    background: #f9fafc;
}

/* SECTION LABEL */
.section-label {
    font-size: 13px;
    font-weight: 600;
    color: #6b7280;
    text-transform: uppercase;
}

/* CARD */
.premium-card {
    background: #ffffff;
    padding: 18px 20px;
    border-radius: 14px;
    margin-top: 15px;
    transition: 0.25s ease;
    box-shadow: 0 8px 25px rgba(0,0,0,0.05);
}

.premium-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.08);
}

.card-title {
    font-weight: 600;
    margin-bottom: 6px;
}

.card-message {
    font-size: 14px;
    color: #555;
}

/* COUPON */
.coupon-premium {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-left: 4px solid #6d28d9;
}

.coupon-code {
    font-family: monospace;
    background: #111827;
    color: #fff;
    padding: 6px 14px;
    border-radius: 8px;
    font-size: 14px;
}

.coupon-expiry {
    font-size: 12px;
    color: #777;
    margin-top: 6px;
}

.copy-btn {
    background: #6d28d9;
    color: #fff;
    border: none;
    padding: 8px 14px;
    border-radius: 8px;
    transition: 0.2s;
}

.copy-btn:hover {
    background: #5b21b6;
}

/* EMPTY */
.empty-state {
    text-align: center;
    padding: 40px;
    color: #777;
}

.empty-state i {
    font-size: 40px;
}

/* BADGE */
.notification-badge {
    position: absolute;
    top: -6px;
    right: -6px;
    background: linear-gradient(135deg,#ef4444,#dc2626);
    color: #fff;
    font-size: 11px;
    padding: 4px 7px;
    border-radius: 50px;
    font-weight: 600;
    animation: pulse 1.5s infinite;
}

/* COPY TOAST */
.copy-toast {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: #111827;
    color: #fff;
    padding: 12px 18px;
    border-radius: 10px;
    opacity: 0;
    transform: translateY(15px);
    transition: 0.3s ease;
    z-index: 9999;
}

.copy-toast.show {
    opacity: 1;
    transform: translateY(0);
}

/* ANIMATIONS */
@keyframes slideUp {
    from { transform: translateY(30px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(239,68,68,0.6); }
    70% { box-shadow: 0 0 0 8px rgba(239,68,68,0); }
    100% { box-shadow: 0 0 0 0 rgba(239,68,68,0); }
}

/* ===== CUSTOM JS MODAL SYSTEM ===== */

.custom-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.55);
    backdrop-filter: blur(5px);
    opacity: 0;
    visibility: hidden;
    transition: 0.3s ease;
    z-index: 9998;
}

.custom-modal {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.95);
    width: 95%;
    max-width: 720px;
    opacity: 0;
    visibility: hidden;
    transition: 0.3s ease;
    z-index: 9999;
}

.custom-overlay.active {
    opacity: 1;
    visibility: visible;
}

.custom-modal.active {
    opacity: 1;
    visibility: visible;
    transform: translate(-50%, -50%) scale(1);
}