﻿.shop-card {
    height: 150px;
}

.floating-cart {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #0d6efd;
    color: #ffffff; /* 🔒 lock icon color */

    border-radius: 50%;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
    cursor: pointer;
    z-index: 1050;
    transition: background-color 0.2s ease, transform 0.1s ease;
}

    .floating-cart i {
        color: inherit; /* 🔒 inherit safely */
    }

    .floating-cart .badge {
        font-size: 0.7rem;
        padding: 0.35em 0.55em;
        min-width: 20px;
        text-align: center;
    }

