﻿/* Shopping Cart Styles */
.shopping-cart-container {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 9999;
    background-color: #0A3752;
    border-radius: 25px;
    padding: 6px 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.shopping-cart-link {
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    color: white;
    font-weight: bold;
    transition: all 0.3s ease;
}

    .shopping-cart-link:hover {
        transform: scale(1.1);
        color: #eac96c;
    }

.cart-icon {
    font-size: 24px;
}

.cart-count {
    background-color: #ff4444;
    color: white;
    border-radius: 50%;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: bold;
    min-width: 24px;
}
