.product-deals-day-body .product-slide {
    padding: 0 10px;
}

.product-thumbnail {
    position: relative;
    overflow: hidden;
    background: #f7f7f7;
}

/* === КНОПКИ === */
.product-thumbnail .product-loop__buttons {
    position: absolute !important;
    top: 12px !important;
    right: 12px !important;
    left: auto !important;
    bottom: auto !important;

    display: flex !important;
    flex-direction: column !important;
    gap: 10px !important;

    opacity: 0 !important;
    visibility: hidden !important;
    pointer-events: none !important;
    transform: translateY(-8px) !important;
    transition: opacity .25s ease, transform .25s ease, visibility .25s ease !important;

    z-index: 20 !important;
}

.product-thumbnail:hover .product-loop__buttons {
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: auto !important;
    transform: translateY(0) !important;
}

.product-thumbnail .product-loop__buttons a,
.product-thumbnail .product-loop__buttons button {
    background: transparent !important;
    box-shadow: none !important;
    border: none !important;
    border-radius: 0 !important;
    width: 42px !important;
    height: 42px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    padding: 0 !important;
}

.product-thumbnail .product-loop__buttons .svg-icon,
.product-thumbnail .product-loop__buttons svg {
    width: 22px !important;
    height: 22px !important;
}

.product-thumbnail .product-loop__buttons a:hover,
.product-thumbnail .product-loop__buttons button:hover {
    transform: scale(1.12);
}

/* === КАРТИНКА — БЕЗ ЛОМАНИЯ СТРУКТУРЫ ТЕМЫ === */
.product-thumbnail .img-fluid-eq__wrap {
    overflow: hidden !important;
    background: #f7f7f7 !important;
}

.product-thumbnail .product-thumbnail__img,
.product-thumbnail img {
    display: block !important;
    width: 100% !important;
    height: 100% !important;
    object-fit: contain !important;
    object-position: center !important;
    transition: transform .35s ease !important;
    background: #f7f7f7 !important;
}

.product-thumbnail:hover .product-thumbnail__img,
.product-thumbnail:hover img {
    transform: scale(1.03) !important;
}

.product-thumbnail::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0);
    transition: background .3s ease;
    pointer-events: none;
}

.product-thumbnail:hover::after {
    background: rgba(0,0,0,0.05);
}


/* === НАЗВАНИЕ ТОВАРА === */
.product__title a {
    font-size: 16px !important;
    line-height: 1.3 !important;
    font-weight: 500 !important;
    color: #222 !important;

    display: -webkit-box !important;
    -webkit-line-clamp: 2 !important; /* максимум 2 строки */
    -webkit-box-orient: vertical !important;
    overflow: hidden !important;

    min-height: 42px !important; /* чтобы карточки были ровные */
}

/* отступы блока */
.product__title {
    margin-bottom: 6px !important;
}





.product-details .amount.bb-product-price-text {
    font-size: 17px !important;
    font-weight: 500 !important;
    color: #1f6f2a !important;
}

/* === УБРАТЬ РЕЙТИНГ === */
.star-rating-wrapper {
    display: none !important;
}






/* === QUICK VIEW / POPUP — КОЛИЧЕСТВО === */

.quantity {
    margin-top: 14px !important;
    margin-bottom: 18px !important;
}

.quantity .label {
    display: block !important;
    margin-bottom: 8px !important;
    font-size: 14px !important;
    font-weight: 500 !important;
    color: #333 !important;
}

.quantity .qty-box {
    display: inline-flex !important;
    align-items: center !important;
    height: 42px !important;
    border: 1px solid #d9d9d9 !important;
    border-radius: 10px !important;
    overflow: hidden !important;
    background: #fff !important;
}

.quantity .qty-box .svg-icon {
    width: 42px !important;
    height: 42px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    cursor: pointer !important;
    user-select: none !important;
    color: #444 !important;
    background: #fafafa !important;
    transition: background .2s ease, color .2s ease !important;
}

.quantity .qty-box .svg-icon:hover {
    background: #f2f2f2 !important;
    color: #111 !important;
}

.quantity .qty-box .input-text {
    width: 64px !important;
    height: 42px !important;
    border: none !important;
    outline: none !important;
    box-shadow: none !important;
    text-align: center !important;
    font-size: 15px !important;
    font-weight: 500 !important;
    color: #222 !important;
    background: #fff !important;
    padding: 0 !important;
    -moz-appearance: textfield !important;
}

.quantity .qty-box .input-text::-webkit-outer-spin-button,
.quantity .qty-box .input-text::-webkit-inner-spin-button {
    -webkit-appearance: none !important;
    margin: 0 !important;
}