 @media only screen and (max-width: 576px) {
        .product-thumb {
            margin: 0;
        }

        .product-thumb .image img {
            height: 140px;
            object-fit: cover;
        }

        .product-thumb .product-name {
            font-size: 0.9rem;
            line-height: 1.3;
            margin-bottom: 0.5rem;
        }

        .product-thumb .price-new {
            font-size: 1.3rem;
        }

        .product-thumb .buy-box {
            display: flex;
            align-items: center;
            justify-content: space-between;
			flex-wrap: wrap;
            padding: 1rem;
            gap: 0.75rem;
        }

        .product-thumb .buy-box button {
            flex: 1;
            min-width: 0;
            padding: 0.75rem 1rem;
            font-size: 1rem;
            font-weight: 500;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
            border: none;
            border-radius: 6px;
            background-color: #233D63;
            color: #fff;
            transition: all 0.2s ease;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 0.75rem;
        }
    }

    .product-thumb .buy-box {
        display: flex;
        align-items: center;
        justify-content: space-evenly;
        gap: 0.5rem;
        padding-top: 0.75em;
        flex-wrap: wrap;
    }

    .product-thumb .buy-box button {
        flex: 1;
        min-width: 0;
        padding: 1.2rem 1.5rem;
        font-size: 1.2rem;
        font-weight: 500;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        border: none;
        border-radius: 8px;
        background-color: #233D63;
        color: #fff;
        transition: all 0.2s ease;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 1rem;
    }

    .product-thumb .buy-box button svg {
        width: 1.8em;
        height: 1.8em;
        flex-shrink: 0;
    }

    .product-thumb .buy-box button:hover svg {
        transform: scale(1.1);
    }

    .product-thumb .buy-box button:hover {
        background-color: #1a2d4a;
        transform: translateY(-1px);
    }

    @media only screen and (max-width: 992px) {
        .product-thumb .buy-box {
            padding: 1.2rem;
        }

        .product-thumb .buy-box button {
            padding: 1rem 1.2rem;
            font-size: 1.1rem;
        }

        .product-thumb .buy-box button svg {
            width: 1.6em;
            height: 1.6em;
        }
    }

    @media only screen and (max-width: 576px) {
        .product-thumb .buy-box {
            padding: 1rem;
            gap: 0.75rem;
        }

        .product-thumb .buy-box button {
            padding: 0.85rem 1rem;
            font-size: 1rem;
            gap: 0.75rem;
        }

        .product-thumb .buy-box button svg {
            width: 1.4em;
            height: 1.4em;
        }

        .product-content {
            font-size: 1rem;
        }

        .product-title-content .stock {
            font-size: 0.8rem;
        }
    }

    /* Стили для состояния загрузки */
    .product-thumb .buy-box button.spin {
        position: relative;
        pointer-events: none;
    }

    .product-thumb .buy-box button.spin svg {
        animation: spin 1s infinite linear;
    }

    @keyframes spin {
        from {
            transform: rotate(0deg);
        }

        to {
            transform: rotate(360deg);
        }
    }
