/* ===================================
   ELECTRO / WOOCOMMERCE PRODUCT CARD
   PREMIUM DESIGN 2026
=================================== */

.products .product,
.product-card,
.products-carousel .product,
.owl-carousel .product {

    background: #fff;
    border-radius: 20px;
    border: 1px solid #edf2f7;
    overflow: hidden;

    transition: all .35s ease;
    box-shadow:
        0 3px 8px rgba(0,0,0,.04),
        0 10px 30px rgba(0,0,0,.03);

    position: relative;
}

/* Hover */

.products .product:hover,
.product-card:hover,
.products-carousel .product:hover {

    transform: translateY(-8px);

    box-shadow:
        0 20px 45px rgba(0,0,0,.10),
        0 8px 18px rgba(0,0,0,.08);

    border-color: #d6dee8;
}

/* IMAGE */

.products .product img,
.product-card img {

    padding: 24px;
    transition: transform .45s ease;
}

.products .product:hover img,
.product-card:hover img {

    transform: scale(1.08);
}

/* TITLE */

.products .woocommerce-loop-product__title,
.product-title {

    font-size: 16px;
    font-weight: 600;
    line-height: 1.45;

    color: #17212f;

    padding: 0 20px;

    min-height: 50px;

    margin-bottom: 12px;
}

/* PRICE */

.products .price {

    padding: 0 20px;
    margin-bottom: 18px;

    font-size: 25px;
    font-weight: 700;

    color: #0066ff;
}

.products .price del {

    color: #9ca3af;
    font-size: 15px;
    margin-right: 8px;
}

.products .price ins {
    text-decoration: none;
}

/* BUTTON */

.products .button,
.products .add_to_cart_button {

    width: calc(100% - 40px);
    margin: 0 20px 20px;

    border-radius: 12px;
    border: 0;

    background: linear-gradient(
        135deg,
        #0066ff,
        #0050d0
    );

    color: #fff;
    font-weight: 600;

    padding: 14px;

    transition: .3s;
}

.products .button:hover,
.products .add_to_cart_button:hover {

    background: linear-gradient(
        135deg,
        #0050d0,
        #003fa8
    );

    transform: translateY(-2px);
}

/* SALE BADGE */

.onsale {

    background: #ff4d4f !important;

    border-radius: 50px;

    padding: 6px 14px !important;

    font-size: 12px;
    font-weight: 700;

    box-shadow:
        0 8px 20px rgba(255,77,79,.3);
}

/* CATEGORY */

.product-category,
.loop-product-categories {

    font-size: 11px;
    text-transform: uppercase;

    letter-spacing: .08em;

    color: #7b8794;

    padding: 18px 20px 8px;
}

/* RATING */

.star-rating {

    margin: 0 20px 15px;
}

/* PREMIUM LIGHT EFFECT */

.products .product:before {

    content: "";

    position: absolute;

    inset: 0;

    background: linear-gradient(
        180deg,
        rgba(255,255,255,0),
        rgba(0,102,255,.03)
    );

    opacity: 0;

    transition: .35s;
}

.products .product:hover:before {
    opacity: 1;
}

/* MOBILE */

@media(max-width:768px){

    .products .product {

        border-radius: 16px;
    }

    .products .woocommerce-loop-product__title {

        font-size: 14px;
    }

    .products .price {

        font-size: 22px;
    }
}