@import url('https://fonts.googleapis.com/css2?family=Barlow+Condensed:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
/* ===================================
   SINGLE PRODUCT
=================================== */

.custom-product-page{
    max-width:1400px;
    margin:40px auto;
    padding:0 20px;
}

.custom-breadcrumb{
    margin-bottom:30px;
    font-size:14px;
}

.custom-breadcrumb a{
    color:#777;
    text-decoration:none;
}

.product-container{
    display:flex;
    gap:60px;
    align-items:flex-start;
}

.product-left{
    width:55%;
    position:relative;
}

.product-right{
    width:45%;
}


/* ==========================
   SALE BADGE
========================== */

.sale-badge{
    position:absolute;
    top:20px;
    right:20px;
    background:#ff6a00;
    color:#fff;
    padding:8px 15px;
    border-radius:3px;
    font-size:12px;
    text-transform:uppercase;
    font-weight:600;
    z-index:10;
}


/* ==========================
   MAIN IMAGE
========================== */

.main-image{

    background:#fff;

    border:1px solid #eee;

    border-radius:10px;

    padding:30px;

    overflow:hidden;

}

.main-image img{

    width:100%;

    transition:.35s;

    cursor:zoom-in;

}

.main-image:hover img{

    transform:scale(1.04);

}

.thumb-item{

    border-radius:8px;

    overflow:hidden;

}

.thumb-item.active{

    border:2px solid #ff6600;

}

/* ==========================
   THUMBNAILS
========================== */

.thumbnail-grid{

    display:grid;

    grid-template-columns:repeat(2,1fr);

    gap:20px;

}

.thumb-item{

    border:1px solid #ececec;

    cursor:pointer;

    transition:.3s;

    background:#fff;

    padding:10px;

}

.thumb-item:hover{

    border-color:#ff6a00;

}

.thumb-item.active{

    border-color:#ff6a00;

}

.thumb-item img{

    width:100%;

    display:block;

}
/* ==========================
   TITLE
========================== */

.product-title {
    font-size: 48px;
    font-weight: 700;
    color: #000;
    font-family: "Barlow Condensed", sans-serif;
    line-height: 1.2;
    margin-bottom: 20px;
}


/* ==========================
   DESCRIPTION
========================== */

.product-short-description p {
    color: #000;
	    opacity: 75%;
    line-height: 1.4;
    font-family: 'Barlow Condensed';
    margin-bottom: 30px;
    font-size: 22px;
}


/* ==========================
   PRICE
========================== */

.product-price{

    margin-bottom:35px;

    font-size:42px;

    font-weight:700;

    color:#111;

}

.product-price del{

    color:#999;

    margin-right:10px;

    font-size:26px;

}

.product-price ins{

    text-decoration:none;

}
.quantity{

    display:flex;

    align-items:center;

    margin-bottom:20px;

}

.quantity input.qty{

    width:70px;

    text-align:center;

    border:none;

}

.qty-minus,
.qty-plus{

    width:40px;

    height:40px;

    background:#f5f5f5;

    border:none;

    cursor:pointer;

    font-size:18px;

}

.qty-minus:hover,
.qty-plus:hover{

    background:#ff6a00;

    color:#fff;

}
.buy-now-btn{

    width:100%;

    height:56px;

    background:#ff6a00;

    color:#fff;

    border:none;

    font-size:18px;

    cursor:pointer;

    margin-bottom:15px;

}

.buy-now-btn:hover{

    background:#e45d00;

}

.single_add_to_cart_button{

    width:100%!important;

    height:56px!important;

    background:#fff!important;

    border:2px solid #ff6a00!important;

    color:#ff6a00!important;

    font-size:18px!important;

}

.single_add_to_cart_button:hover{

    background:#ff6a00!important;

    color:#fff!important;

}
/* =====================================
   PRODUCT FORM
===================================== */

.product-form{
    margin:30px 0;
}

.variations{
    width:100%;
    border:none;
}

.variations tr{
    display:flex;
    flex-direction:column;
    margin-bottom:20px;
}

.variations th{
    margin-bottom:10px;
    text-align:left;
    font-size:15px;
    font-weight:600;
}

.variations td{
    width:100%;
}

.variations select{
    width:100%;
    height:50px;
    border:1px solid #ddd;
    padding:0 15px;
    font-size:15px;
    border-radius:4px;
    background:#fff;
}

.reset_variations{
    display:inline-block;
    margin-top:10px;
    color:#ff6600;
    text-decoration:none;
    font-size:14px;
}
/* =====================================
   PRODUCT META
===================================== */

.product-meta{
    margin-top:30px;
    border-top:1px solid #eee;
    border-bottom:1px solid #eee;
    padding:20px 0;
}

.meta-row{
    display:flex;
    gap:10px;
    margin-bottom:10px;
    font-size:15px;
}

.meta-row strong{
    width:90px;
    color:#111;
}

.meta-row span{
    color:#666;
}

.meta-row a{
    color:#666;
    text-decoration:none;
}

.meta-row a:hover{
    color:#ff6600;
}
/* =====================================
   SHARE
===================================== */

.share-wrapper{
    display:flex;
    align-items:center;
    gap:15px;
    flex-wrap:wrap;
    margin-top:25px;
}

.share-wrapper span{
    font-weight:600;
}

.share-wrapper a{
    width:40px;
    height:40px;
    border:1px solid #ddd;
    display:flex;
    justify-content:center;
    align-items:center;
    text-decoration:none;
    color:#444;
    transition:.3s;
    border-radius:50%;
}

.share-wrapper a:hover{
    background:#ff6600;
    color:#fff;
    border-color:#ff6600;
}
/* =====================================
   DESCRIPTION
===================================== */

.custom-description{
    margin-top:70px;
}

.custom-description h2{
    font-size:34px;
    margin-bottom:30px;
    color:#111;
}

.description-content{
    line-height:1.9;
    color:#555;
}

.description-content img{
    max-width:100%;
    height:auto;
}

.description-content table{
    width:100%;
    border-collapse:collapse;
}

.description-content td,
.description-content th{
    border:1px solid #eee;
    padding:12px;
}
/* =====================================
   REVIEWS
===================================== */

.custom-reviews{
    margin-top:70px;
}

.custom-reviews h2{
    font-size:32px;
    margin-bottom:25px;
}

.woocommerce-Reviews{
    border-top:1px solid #eee;
    padding-top:30px;
}

.commentlist{
    list-style:none;
    padding:0;
    margin:0;
}

.commentlist li{
    margin-bottom:30px;
    padding-bottom:30px;
    border-bottom:1px solid #eee;
}

.comment-text{
    margin-left:90px;
}

.comment-form input,
.comment-form textarea{
    width:100%;
    border:1px solid #ddd;
    padding:12px;
}

.comment-form textarea{
    min-height:140px;
}

.comment-form button{
    background:#ff6600;
    color:#fff;
    border:none;
    padding:14px 30px;
    cursor:pointer;
}
/* =====================================
   RELATED PRODUCTS
===================================== */

.custom-related-products{
    margin-top:80px;
}

.custom-related-products h2{
    font-size:34px;
    margin-bottom:35px;
}

.custom-related-products ul.products{
    display:grid !important;
    grid-template-columns:repeat(4,1fr);
    gap:30px;
}

.custom-related-products li.product{
    width:100% !important;
    margin:0 !important;
    border:1px solid #eee;
    padding:20px;
    transition:.3s;
}

.custom-related-products li.product:hover{
    box-shadow:0 10px 30px rgba(0,0,0,.08);
}

.custom-related-products img{
    width:100%;
}

.custom-related-products .price{
    color:#111;
    font-weight:700;
}

.custom-related-products .button{
    width:100%;
    text-align:center;
    background:#ff6600;
    color:#fff;
}
/* =====================================
   MOBILE
===================================== */

@media(max-width:991px){

.product-container{
    flex-direction:column;
}

.product-left,
.product-right{
    width:100%;
}

.custom-related-products ul.products{
    grid-template-columns:repeat(2,1fr);
}

}

@media(max-width:768px){

.product-title{
    font-size:34px;
}

.product-price{
    font-size:30px;
}

.thumbnail-grid{
    grid-template-columns:repeat(2,1fr);
}

.custom-related-products ul.products{
    grid-template-columns:1fr;
}

.buy-now-btn,
.single_add_to_cart_button{
    height:50px !important;
}

}

@media(max-width:480px){

.custom-product-page{
    padding:0 15px;
}

.thumbnail-grid{
    gap:10px;
}

.product-title{
    font-size:28px;
}

.product-short-description{
    font-size:15px;
}

}

/* Variation Buttons */

.variation-buttons{

display:flex;

flex-wrap:wrap;

gap:10px;

margin-top:12px;

}

.variation-button{

padding:10px 18px;

background:#fff;

border:1px solid #ddd;

cursor:pointer;

transition:.3s;

border-radius:3px;

font-size:14px;

}

.variation-button:hover{

border-color:#ff6600;

color:#ff6600;

}

.variation-button.active{

background:#ff6600;

color:#fff;

border-color:#ff6600;

}

.variations select{

display:none;

}
/* ====================================
   STICKY PRODUCT INFO
==================================== */

.product-right{
    position:sticky;
    top:30px;
    align-self:flex-start;
}