/*
Theme Name: Creativo Child
Theme URI: https://themeforest.net/item/creativo-responsive-multipurpose-theme/4716204
Description: Child theme for Creativo
Author: Usman Malick
Template: creativo
Version: 1.0.0.1
*/

.inside_prod .product_buttons_wrap .add_to_cart_button .product_type_simple .ajax_add_to_cart {
    display: none !important;
}
.custom-product-card {
    list-style: none;
}

.product-card-inner{
    background:#fff;
    border-radius:18px;
    padding:8px;
    box-shadow:0 4px 12px rgba(0,0,0,0.08);
    transition:.3s;
}
.woocommerce ul.products {
    gap: 10px !important; /* reduce space between cards */
}

.product-card-inner:hover{
    transform:translateY(-6px);
    box-shadow:0 10px 20px rgba(0,0,0,0.12);
}

.product-image img{
    border-radius:16px !important;
    width:100%;
    aspect-ratio:1/1;
    object-fit:cover;
}

.product-title{
    font-size:16px;
    margin:10px 0 5px !important;
}

.product-title a{
    text-decoration:none;
    color:#111;
}

.product-price{
    font-size:14px;
    color:#777;
}

.product-price bdi{
	    color: #2e7d32;
    font-weight: 600;
    font-size: 14px;
}

/* MOBILE */
@media (max-width: 767px){

    /* 2 Products Per Row */
    ul.products{
        display:grid !important;
        grid-template-columns:repeat(2, 1fr) !important;
        gap:15px;
    }

    /* Remove WooCommerce Width */
    ul.products li.product{
        width:100% !important;
        margin:0 !important;
        float:none !important;
    }

}


