/*
==================================================
WOWOOOCART SINGLE PRODUCT
==================================================
*/

/* ===========================
LAYOUT
=========================== */

.wow-single-product{

    padding:60px 0;

    background:#f8fafc;

}

.wow-single-wrapper{

    display:grid;

    grid-template-columns:1fr 1fr;

    gap:50px;

    margin-bottom:50px;

}

/* ===========================
PRODUCT GALLERY
=========================== */

.wow-product-gallery{

    background:#ffffff;

    border-radius:14px;

    padding:25px;

    box-shadow:0 5px 20px rgba(0,0,0,.06);

}

.wow-product-gallery img{

    width:100%;

    height:auto;

    object-fit:contain;

}

/* ===========================
PRODUCT SUMMARY
=========================== */

.wow-product-summary{

    background:#ffffff;

    border-radius:14px;

    padding:30px;

    box-shadow:0 5px 20px rgba(0,0,0,.06);

}
/* ===========================
TITLE & PRICE
=========================== */

.wow-product-summary h1.product_title{

    font-size:34px;

    line-height:1.4;

    margin-bottom:18px;

    color:#111827;

}

.wow-product-summary .price{

    font-size:30px;

    font-weight:700;

    color:#16a34a;

    margin-bottom:20px;

}

.wow-product-summary .woocommerce-product-rating{

    margin-bottom:20px;

}

.wow-product-summary .woocommerce-product-details__short-description{

    color:#4b5563;

    line-height:1.9;

    margin-bottom:25px;

}

/* ===========================
ADD TO CART
=========================== */

.wow-product-summary form.cart{

    display:flex;

    gap:12px;

    align-items:center;

    flex-wrap:wrap;

}

.wow-product-summary .quantity input{

    width:70px;

    height:46px;

    text-align:center;

}

.wow-product-summary .single_add_to_cart_button{

    background:#16a34a;

    color:#ffffff;

    border:none;

    border-radius:8px;

    padding:14px 28px;

    font-weight:700;

    transition:.30s;

}

.wow-product-summary .single_add_to_cart_button:hover{

    background:#15803d;

}
/* ===========================
PRODUCT TABS
=========================== */

.wow-product-tabs{

    background:#ffffff;

    border-radius:14px;

    padding:30px;

    box-shadow:0 5px 20px rgba(0,0,0,.06);

}

/* ===========================
RELATED PRODUCTS
=========================== */

.related.products{

    margin-top:50px;

}

/* ===========================
RESPONSIVE
=========================== */

@media (max-width:992px){

    .wow-single-wrapper{

        grid-template-columns:1fr;

        gap:30px;

    }

}

@media (max-width:576px){

    .wow-product-summary{

        padding:20px;

    }

    .wow-product-summary h1.product_title{

        font-size:28px;

    }

    .wow-product-summary .price{

        font-size:24px;

    }

    .wow-product-summary form.cart{

        flex-direction:column;

        align-items:stretch;

    }

    .wow-product-summary .single_add_to_cart_button{

        width:100%;

    }

}