/* Thank You Popup Styles */
.thank-you-popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 10000;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.thank-you-popup.show {
    display: flex;
    opacity: 1;
}

.thank-you-popup-content {
    background: var(--color-background);
    border-radius: 12px;
    padding: 40px 30px;
    text-align: center;
    max-width: 400px;
    width: 90%;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    transform: scale(0.9);
    transition: transform 0.3s ease;
}

.thank-you-popup.show .thank-you-popup-content {
    transform: scale(1);
}

.thank-you-icon {
    margin-bottom: 20px;
}

.thank-you-icon i {
    font-size: 60px;
    color: #28a745;
    animation: checkmark-bounce 0.6s ease-out 0.3s both;
}

@keyframes checkmark-bounce {
    0% {
        transform: scale(0);
        opacity: 0;
    }
    50% {
        transform: scale(1.1);
        opacity: 1;
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

.thank-you-popup h3 {
    color: var(--color-text);
    font-size: 28px;
    margin-bottom: 15px;
    font-weight: 600;
    letter-spacing: var(--letter-spacing-brand);
}

.thank-you-popup p {
    color: var(--color-text-muted);
    font-size: 16px;
    line-height: 1.5;
    margin-bottom: 25px;
}

.thank-you-close-btn {
    background: var(--color-gradient-gold);
    color: white;
    border: none;
    padding: 12px 30px;
    border-radius: 25px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    min-width: 120px;
}

.thank-you-close-btn:hover {
    background: var(--color-primary-darker);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(188, 146, 67, 0.4);
}

.thank-you-close-btn:active {
    transform: translateY(0);
}

/* Responsive adjustments */
@media (max-width: 480px) {
    .thank-you-popup-content {
        padding: 30px 20px;
        max-width: 350px;
    }
    
    .thank-you-icon i {
        font-size: 50px;
    }
    
    .thank-you-popup h3 {
        font-size: 24px;
    }
    
    .thank-you-popup p {
        font-size: 15px;
    }
}