/* Popup Styles */
.noqta-popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 999999;
    display: none;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(5px);
}

.noqta-popup-content {
    background: white;
    border-radius: 15px;
    max-width: 500px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    position: relative;
    animation: noqta-popup-slide-in 0.3s ease-out;
}

@keyframes noqta-popup-slide-in {
    from {
        opacity: 0;
        transform: translateY(-50px) scale(0.9);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.noqta-popup-header {
    padding: 25px 30px 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border-radius: 15px 15px 0 0;
}

.noqta-popup-header h3 {
    margin: 0;
    font-size: 22px;
    font-weight: 600;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.noqta-popup-close {
    background: none;
    border: none;
    font-size: 28px;
    cursor: pointer;
    color: white;
    line-height: 1;
    padding: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: background-color 0.2s;
}

.noqta-popup-close:hover {
    background-color: rgba(255, 255, 255, 0.2);
}

.noqta-popup-body {
    padding: 30px;
    text-align: center;
}

.noqta-popup-icon {
    margin-bottom: 20px;
}

.noqta-gift-icon {
    font-size: 60px;
    display: block;
    animation: noqta-bounce 2s infinite;
}

@keyframes noqta-bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

.noqta-popup-message {
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 15px;
    color: #333;
}

.noqta-popup-note {
    font-size: 14px;
    color: #666;
    margin-bottom: 0;
    font-style: italic;
}

.noqta-popup-actions {
    padding: 0 30px 30px;
    display: flex;
    gap: 15px;
    justify-content: center;
}

.noqta-popup-btn {
    padding: 0px 30px;
    border: none;
    border-radius: 25px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    min-width: 120px;
}

.noqta-popup-btn-primary {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.4);
}

.noqta-popup-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.6);
}

.noqta-popup-btn-secondary {
    background: #f8f9fa;
    color: #6c757d;
    border: 2px solid #dee2e6;
}

.noqta-popup-btn-secondary:hover {
    background: #e9ecef;
    border-color: #adb5bd;
}

/* Mobile responsiveness */
@media (max-width: 768px) {
    .noqta-popup-content {
        width: 95%;
        margin: 20px;
    }
    
    .noqta-popup-header {
        padding: 20px 20px 15px;
    }
    
    .noqta-popup-header h3 {
       font-size: 20px;
    }
    
    .noqta-popup-body {
        padding: 25px 20px;
    }
    
    .noqta-popup-message {
        font-size: 16px;
    }
    
    .noqta-popup-actions {
        padding: 0 20px 25px;
        flex-direction: column;
    }
    
    .noqta-popup-btn {
        width: 100%;
        min-width: auto;
    }
} 