/* Add custom CSS styles below */ 
.product-item {
    background: #fff !important;
    border: none !important;
    box-shadow: none !important;
    transition: all 0.3s ease !important;
}

.product-item:hover {
    transform: translateY(-6px) !important;
}

.product-item img {
    transition: transform 0.5s ease !important;
}

.product-item:hover img {
    transform: scale(1.05) !important;
}

.product-item .product-title,
.product-item .title {
    font-size: 13px !important;
    letter-spacing: 2px !important;
    text-transform: uppercase !important;
    color: #111 !important;
}

.product-item .price {
    font-weight: 600 !important;
    color: #000 !important;
}