/*
 Theme Name:   Woodmart Child
 Description:  Woodmart Child Theme
 Author:       XTemos
 Author URI:   http://xtemos.com
 Template:     woodmart
 Version:      1.0.0
 Text Domain:  woodmart
*/


/* =======================
   1️⃣ Product Titles Equal Height
   ======================= */
.wd-shop-grid-item .wd-shop-title {
    display: -webkit-box;
    -webkit-line-clamp: 2;        /* Max 2 lines */
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    min-height: 48px;             /* Matches 2 lines */
    line-height: 1.4em;
    font-size: 16px;
}

/* =======================
   2️⃣ Product Images Uniform
   ======================= */
.wd-shop-grid-item .wd-shop-image img {
    width: 100%;
    height: 300px;                /* Adjust for grid height */
    object-fit: cover;            /* Crop without stretching */
    display: block;
    transition: transform 0.3s ease;
}

/* =======================
   3️⃣ Image Hover Effect
   ======================= */
.wd-shop-grid-item .wd-shop-image img:hover {
    transform: scale(1.05);       /* Slight zoom effect */
}

/* =======================
   4️⃣ Align Price & Add to Cart Button
   ======================= */
.wd-shop-grid-item {
    display: flex;
    flex-direction: column;
    justify-content: space-between; /* Pushes buttons to bottom */
}

.wd-shop-grid-item .wd-shop-price,
.wd-shop-grid-item .wd-btn {
    display: block;
    margin-top: 10px;
    text-align: center;
}

/* =======================
   5️⃣ Button Hover Effect
   ======================= */
.wd-shop-grid-item .wd-btn:hover {
    background-color: #333;       /* Change as per your color scheme */
    color: #fff;
    transition: 0.3s ease;
}

/* =======================
   6️⃣ Responsive Adjustments
   ======================= */
@media (max-width: 768px) {
    .wd-shop-grid-item .wd-shop-title {
        -webkit-line-clamp: 2;
        min-height: 40px;
    }
    .wd-shop-grid-item .wd-shop-image img {
        height: 250px;
    }
}
