html {
        scroll-behavior: smooth;
    }

    .flavor-item:hover {
        border-color: rgba(233, 30, 99, 0.3);
    }

/* ==================== */

.star-rating-selector {
        display: flex;
        gap: 10px;
    }

    .star-rating-selector i {
        font-size: 2.2rem;
        color: var(--input-border);
        cursor: pointer;
        transition: transform 0.2s, color 0.2s;
    }

    .star-rating-selector i:hover {
        transform: scale(1.1);
    }

    .star-rating-selector i:hover {
        transform: scale(1.1);
    }

    @keyframes shake-cart {
        0% {
            transform: rotate(0deg);
        }

        20% {
            transform: rotate(-10deg);
        }

        40% {
            transform: rotate(10deg);
        }

        60% {
            transform: rotate(-10deg);
        }

        80% {
            transform: rotate(10deg);
        }

        100% {
            transform: rotate(0deg);
        }
    }

/* ==================== */

.thumb {
        width: 70px;
        height: 70px;
        border-radius: 10px;
        overflow: hidden;
        cursor: pointer;
        border: 2px solid transparent;
        transition: all 0.2s;
        flex-shrink: 0;
    }

    .thumb img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .thumb.active {
        border-color: var(--accent-color);
        transform: scale(0.95);
    }

    .thumb:hover {
        opacity: 0.8;
    }

    /* Lightbox Styles */
    .lightbox {
        display: none;
        position: fixed;
        z-index: 2000;
        padding-top: 50px;
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
        overflow: hidden;
        background-color: rgba(0, 0, 0, 0.9);
        backdrop-filter: blur(5px);
    }

    .lightbox-content {
        margin: auto;
        display: block;
        width: auto;
        max-width: 90%;
        max-height: 85vh;
        border-radius: 5px;
        box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
        animation: zoomIn 0.3s;
    }

    .close-lightbox {
        position: absolute;
        top: 20px;
        right: 35px;
        color: #f1f1f1;
        font-size: 40px;
        font-weight: bold;
        transition: 0.3s;
        cursor: pointer;
    }

    .close-lightbox:hover,
    .close-lightbox:focus {
        color: var(--primary-color);
        text-decoration: none;
        cursor: pointer;
    }

    @keyframes zoomIn {
        from {
            transform: scale(0)
        }

        to {
            transform: scale(1)
        }
    }