/* Toast Notification Styles */
.toast-message {
    position: fixed;
    top: 20px;
    right: 20px;
    background: #066143;
    color: white;
    padding: 1rem 1.5rem;
    border-radius: 0.5rem;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    z-index: 10000;
    opacity: 0;
    transform: translateX(400px);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    min-width: 300px;
    max-width: 500px;
}

.toast-message.show {
    opacity: 1;
    transform: translateX(0);
}

.toast-message.error {
    background: #ef4444;
}

.toast-message.warning {
    background: #f59e0b;
}

.toast-message.info {
    background: #3b82f6;
}

.toast-message i {
    font-size: 1.25rem;
}

/* Fixed Cart Button */
.fixed-cart-button {
    position: fixed;
    bottom: 5.5rem;
    right: 25px;
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, #0b244d, #8b5cf6);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 25px rgba(59, 130, 246, 0.4);
    cursor: pointer;
    z-index: 1000;
    transition: all 0.3s ease;
    border: none;
    color: white;
}

@media screen and (max-width: 992.98px){
    .fixed-cart-button {
        bottom: 5rem;
        right: 9px;
    }
}
.fixed-cart-button:hover {
    transform: scale(1.1);
    box-shadow: 0 15px 35px rgba(59, 130, 246, 0.5);
}

.fixed-cart-button i {
    font-size: 1.5rem;
}

.cart-badge {
    position: absolute;
    top: -8px;
    right: -8px;
    background: #ef4444;
    color: white;
    border-radius: 50%;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: bold;
    border: 2px solid white;
}

