/*
Theme Name: Hello Elementor Child
Theme URI: https://elementor.com/hello-theme/
Description: Child theme for Hello Elementor
Author: Your Name
Template: hello-elementor
Version: 1.0.0
Text Domain: hello-elementor-child
*/

/* Custom CSS here */
/* Product Card */
.products li.product {
    list-style: none;
}

.products li.product > div {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid #eee;
    transition: all 0.35s ease;
    height: 100%;
    position: relative;
}

.products li.product > div:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.08);
}

/* Product Link */
.product-link {
    text-decoration: none;
    display: block;
    color: inherit;
}

/* Product Image */
.product-image {
    position: relative;
    overflow: hidden;
    background: #f8f8f8;
}

.product-image img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    transition: transform 0.4s ease;
    display: block;
}

.products li.product:hover .product-image img {
    transform: scale(1.05);
}

/* Product Content */
.product-content {
    padding: 18px;
}

/* Category */
.product-category {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #777;
    margin-bottom: 8px;
    line-height: 1.5;
}

.product-category a {
    color: #777;
    text-decoration: none;
}

.product-category a:hover {
    color: #02176a;
}

/* Product Title */
.product-title {
    font-size: 14px !important;
    line-height: 1.5;
    font-weight: 600;
    margin: 0 0 12px;
    min-height: 52px;
    overflow: hidden;
    color: #111;
}

.product-title:hover {
    color: #02176a;
}

/* Price */
.product-price {
    margin-bottom: 18px;
}

.product-price .price {
    font-size: 22px;
    font-weight: 700;
    color: #111;
}

.product-price del {
    color: #999;
    font-size: 15px;
    margin-right: 6px;
}

.product-price ins {
    text-decoration: none;
    background: transparent !important;
}

/* Add To Cart */
.product-button .button {
    width: 100%;
    background: #02176a !important;
    color: #fff !important;
    border-radius: 10px;
    padding: 12px 16px;
    text-align: center;
    font-size: 14px;
    font-weight: 600;
    border: none;
    transition: all 0.3s ease;
}

.product-button .button:hover {
    background: #ff4d00 !important;
    transform: translateY(-2px);
}

/* Sale Badge */
.onsale {
    background: #ff2b2b !important;
    color: #fff !important;
    border-radius: 50px;
    padding: 6px 12px !important;
    font-size: 12px !important;
    font-weight: 600;
    top: 15px !important;
    left: 15px !important;
    min-height: auto !important;
    line-height: normal !important;
}

/* Rating */
.star-rating {
    margin-bottom: 12px;
    color: #ffb400;
}

/* Responsive */
@media (max-width: 768px) {

    .product-image img {
        height: 220px;
    }

    .product-content {
        padding: 14px;
    }

    .product-title {
        font-size: 14px;
        min-height: auto;
    }

    .product-price .price {
        font-size: 18px;
    }

    .product-button .button {
        padding: 10px 14px;
        font-size: 13px;
    }
}


















