.category-img {
    width: 200px; /* or any fixed width you prefer */
    height: 160px; /* keep it square or adjust for your layout */
    overflow: hidden;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px; /* optional: rounded corners */
    background-color: #f9f9f9; /* optional: fallback bg */
}

.category-img img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* cover, contain, or fill based on preference */
    display: block;
}

.product-item.style-three {
    background-color: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1); /* card shadow */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    padding: 10px;
    margin-bottom: 25px;
}

.product-item.style-three:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.product-thumbnail {
    width: 100%;
    height: 240px; /* increased height */
    overflow: hidden;
    border-radius: 10px;
    position: relative;
    background: #f9f9f9;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-price {
    margin-top: 10px;
}

.product-price .price {
    font-weight: bold;
    font-size: 16px;
    margin-right: 5px;
}

.product-price .prev-price {
    text-decoration: line-through;
    color: #999;
    font-size: 14px;
}
