﻿
/* =========================================
           PROFESSIONAL PRODUCT CARD
        ========================================= */
.product .product-2 {
    position: relative;
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 24px;
    height: 100%;
    transition: all 0.3s ease;
}

.product.product-2:hover {
    border-color: #ddd;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.10);
    transform: translateY(-4px);
}


/* =========================================
           IMAGE AREA
        ========================================= */

.product.product-2 .product-media {
    position: relative;
    height: 240px;
    background: #fff;
    margin: 0;
    overflow: hidden;
}

.product.product-2 .product-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 15px;
    transition: transform .4s ease;
}

.product.product-2:hover .product-image {
    transform: scale(1.06);
}


/* =========================================
           WISHLIST
        ========================================= */

.product-action-vertical {
    position: absolute;
    top: 12px;
    right: 12px;
    z-index: 10;
}

.btn-wishlist {
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    color: #555;
    border-radius: 50%;
    border: 1px solid #eee;
    box-shadow: 0 3px 10px rgba(0,0,0,.08);
    transition: all .25s ease;
}

    .btn-wishlist:hover {
        color: #ff5722;
        border-color: #ff5722;
    }


/* =========================================
           PRODUCT ACTIONS
        ========================================= */






/* =========================================
           PRODUCT BODY
        ========================================= */

.product-body {
    padding: 15px 16px 18px;
    background: #fff;
}


/* =========================================
           PRODUCT TITLE
        ========================================= */

.product-title {
    margin: 0 0 10px;
    min-height: 48px !important;
    font-size: 11px !important;
    line-height: 1.45;
    font-weight: 500;
    text-align: left;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

    .product-title a {
        color: #222;
        text-decoration: none;
        transition: color .2s ease;
    }

        .product-title a:hover {
            color: #ff5722;
        }


/* =========================================
           PRICE
        ========================================= */

.product-price {
    display: block !important;
    text-align: left !important;
    margin-top: 8px;
}

.new-price {
    color: #e65100;
    font-size: 19px;
    font-weight: 700;
    letter-spacing: .2px;
}


/* =========================================
           MOBILE
        ========================================= */

@media (max-width: 767px) {
    .product.product-2 {
        border-radius: 7px;
        margin-bottom: 15px;
    }

        .product.product-2 .product-media {
            height: 200px;
        }

        .product.product-2 .product-image {
            padding: 10px;
        }

    .product-body {
        padding: 10px;
    }

    .product-title {
        font-size: 12px !important;
        min-height: 52px !important;
    }

    .new-price {
        font-size: 17px;
    }




    .btn-wishlist {
        width: 32px;
        height: 32px;
    }
}







