/* Success Toast Styles */
.success-toast {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 9999;
    background: rgba(255, 248, 240, 0.95);
    color: #5a3921;
    padding: 30px 40px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(90, 57, 33, 0.3);
    font-weight: 600;
    text-align: center;
    max-width: 400px;
    border: 2px solid #d4af37;
    animation: slideIn 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275), 
               pulse 2s infinite 0.6s;
    display: flex;
    flex-direction: column;
    align-items: center;
    font-family: 'Open Sans', sans-serif;
}

.success-toast i {
    font-size: 3rem;
    color: #d4af37;
    margin-bottom: 15px;
    animation: bounce 0.8s;
}

.success-toast .toast-message {
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.success-toast .toast-submessage {
    font-size: 0.9rem;
    opacity: 0.8;
    margin-bottom: 15px;
}

.success-toast .toast-close {
    background: #d4af37;
    color: white;
    border: none;
    padding: 8px 20px;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.success-toast .toast-close:hover {
    background: #c9a227;
    transform: translateY(-2px);
}

/* Confetti effect */
.confetti {
    position: fixed;
    width: 10px;
    height: 10px;
    background-color: #f00;
    opacity: 0;
    z-index: 9998;
    animation: confettiFall 3s ease-in-out;
}

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

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

@keyframes pulse {
    0% {box-shadow: 0 10px 30px rgba(212, 175, 55, 0.3);}
    50% {box-shadow: 0 10px 40px rgba(212, 175, 55, 0.5);}
    100% {box-shadow: 0 10px 30px rgba(212, 175, 55, 0.3);}
}

@keyframes confettiFall {
    0% {
        transform: translateY(-100vh) rotate(0deg);
        opacity: 1;
    }
    100% {
        transform: translateY(100vh) rotate(360deg);
        opacity: 0;
    }
}