﻿.cart {
    position: absolute;
    top: 20px;
    right: 20px;
    background: #ff6347; /* Tomato color */
    color: white;
    padding: 10px 15px;
    border-radius: 50px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: center;
    /*gap: 8px;*/
    cursor: pointer;
    transition: background 0.3s ease-in-out;
}

    .cart:hover {
        background: #e5533d;
    }

    .cart i {
        font-size: 1.8em;
    }

.badge {
    background: white;
    color: #ff6347;
    font-size: 14px;
    font-weight: bold;
    padding: 4px 8px;
    border-radius: 50%;
    position: relative;
    top: -10px;
    right: 5px;
}

/* Responsive adjustments */
@media (max-width: 600px) {
    .cart {
        /*top: 10px;*/
        right: 80px;
        padding: 8px 12px;
    }

        .cart i {
            font-size: 1.5em;
        }

    .badge {
        font-size: 12px;
        padding: 3px 6px;
    }
    #menu .navbar-brand i {
        margin-right: -5px;
        font-size: 25px;
    }
}
