.more-item__item {
    position: relative;
    overflow: hidden;
}

.more-item__item img {
    transition: transform 0.3s ease;
}

.more-item__item:hover img {
    transform: scale(1.1);
}

.product-title-overlay {
    background: rgba(0, 0, 0, 0.5);
    padding: 10px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.more-item__item:hover .product-title-overlay {
    opacity: 1;
}

.product-title-overlay h6 {
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
    font-size: 14px;
    line-height: 1.4;
} 

