/* === ТОВАР === */
.product-item {
    background: rgba(45, 45, 45, 0.6);

    border: none; /* полностью убрали рамку */
    border-radius: 10px;

    box-shadow: 
        0 0 6px rgba(255, 50, 0, 0.25);

    transition: 
        transform 0.35s ease,
        box-shadow 0.25s ease,
        border 0.25s ease,
        background 0.25s ease;
}

/* === ХОВЕР (рамка появляется) === */
.product-item:hover {
    background: rgba(45, 45, 45, 0.55);

    border: 1px solid rgba(255, 60, 0, 0.95);

    box-shadow: 
        0 0 14px rgba(255, 40, 0, 0.7),
        0 0 25px rgba(255, 70, 0, 0.5);

    transform: scale(1.02);
}

.banner-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
    position: absolute;
    top: 0;
    left: 0;

    -webkit-mask-image:
        /* основной радиальный */
        radial-gradient(
            circle at center,
            rgba(0,0,0,1) 65%,
            rgba(0,0,0,0.6) 78%,
            rgba(0,0,0,0.2) 90%,
            rgba(0,0,0,0) 100%
        ),
        /* верх */
        linear-gradient(to bottom, rgba(0,0,0,0), rgba(0,0,0,1) 25%),
        /* низ */
        linear-gradient(to top, rgba(0,0,0,0), rgba(0,0,0,1) 25%);

    -webkit-mask-composite: destination-in;

    mask-image:
        radial-gradient(
            circle at center,
            rgba(0,0,0,1) 65%,
            rgba(0,0,0,0.6) 78%,
            rgba(0,0,0,0.2) 90%,
            rgba(0,0,0,0) 100%
        ),
        linear-gradient(to bottom, rgba(0,0,0,0), rgba(0,0,0,1) 25%),
        linear-gradient(to top, rgba(0,0,0,0), rgba(0,0,0,1) 25%);
}

.menu-item {
    font-size: 16px;