/* ===========================
   SINGLE PRODUCT PAGE
=========================== */

.zorozo-single-product{
    max-width:1400px;
    margin:50px auto;
    padding:0 20px;

    display:grid;
    grid-template-columns:1fr 480px;
    gap:60px;
    align-items:flex-start;
}

/* ===========================
   GALLERY
=========================== */

.zorozo-gallery{
    display:flex;
    gap:20px;
    width:100%;
}

.zorozo-thumbnails{
    display:flex;
    flex-direction:column;
    gap:12px;
    flex-shrink:0;
}

.zorozo-thumb{
    width:80px;
    height:80px;
    object-fit:cover;
    border:1px solid #ddd;
    border-radius:8px;
    cursor:pointer;
    transition:.25s;
}

.zorozo-thumb:hover,
.zorozo-thumb.active{
    border-color:#333;
}

.zorozo-main-image{
    flex:1;
}

.zorozo-main-image img{
    width:100%;
    height:auto;
    display:block;
    border-radius:12px;
}

/* ===========================
   PRODUCT INFO
=========================== */

.zorozo-product-info{
    width:100%;
}

.product-category{
    margin-bottom:10px;
}

.product-category a{
    color:#777;
    text-decoration:none;
    font-size:14px;
}

.product-title{
    font-size:40px;
    line-height:1.3;
    margin:15px 0;
}

.product-price{
    font-size:32px;
    font-weight:700;
    margin:20px 0;
}

.product-short-description{
    margin:25px 0;
    line-height:1.8;
}

/* ===========================
   CART
=========================== */

.cart{
    display:flex;
    align-items:center;
    gap:15px;
    flex-wrap:wrap;
}

.quantity{
    margin:0 !important;
}

.quantity input{
    width:70px;
    height:50px;
    text-align:center;
}

.single_add_to_cart_button{
    flex:1;
    min-width:220px;
    height:50px;
}

/* ===========================
   FEATURES
=========================== */

.zorozo-features{
    margin-top:35px;
    padding-top:25px;
    border-top:1px solid #eee;
}

.zorozo-features div{
    margin-bottom:12px;
}

/* ===========================
   TABS
=========================== */

.zorozo-tabs{
    max-width:1400px;
    margin:70px auto;
    padding:0 20px;
}

/* ===========================
   TABLET
=========================== */

@media (max-width:1024px){

    .zorozo-single-product{
        grid-template-columns:1fr;
        gap:40px;
    }

    .zorozo-gallery{
        flex-direction:column;
    }

    .zorozo-thumbnails{
        flex-direction:row;
        overflow-x:auto;
    }

    .zorozo-thumb{
        width:70px;
        height:70px;
        flex-shrink:0;
    }

}

/* ===========================
   MOBILE
=========================== */

@media (max-width:768px){

    .zorozo-single-product{
        margin:30px auto;
        padding:0 15px;
        gap:30px;
    }

    .product-title{
        font-size:30px;
    }

    .product-price{
        font-size:26px;
    }

    .cart{
        flex-direction:column;
        align-items:stretch;
    }

    .quantity{
        width:100%;
    }

    .quantity input{
        width:100%;
    }

    .single_add_to_cart_button{
        width:100%;
        min-width:unset;
    }

    .zorozo-thumb{
        width:60px;
        height:60px;
    }

}