/* .product-details{
padding:80px 0;
}


.product-container{

width:90%;
max-width:1200px;
margin:auto;

display:grid;
grid-template-columns:1fr 1fr;

gap:60px;

}



.single-product-image img{

width:100%;
height:500px;
object-fit:contain;

}



.product-info h1{

font-size:40px;
font-weight:500;

}



.product-description{

margin:30px 0;
color:#777;
line-height:1.7;

}



.order-btn{

background:#ff9d3c;
border:none;
padding:15px 30px;
font-size:16px;
cursor:pointer;

}



@media(max-width:768px){

.product-container{

grid-template-columns:1fr;

}

} */


/*======================================
            Improve Button
======================================*/

/* .order-btn{

display:inline-block;

background:#25D366;

color:white;

padding:15px 35px;

font-size:16px;

font-weight:600;

border-radius:5px;

text-decoration:none;

transition:.3s;

}


.order-btn:hover{

background:#128C7E;

} */
















































/*====================================
        PRODUCT DETAILS
====================================*/

.product-details{
    width:100%;
    max-width:1300px;
    margin:40px auto;
    padding:0 20px;
}

/*====================================
            BREADCRUMB
====================================*/

.breadcrumb{
    display:flex;
    align-items:center;
    gap:10px;
    margin-bottom:30px;
    font-size:15px;
    color:#777;
    flex-wrap:wrap;
}

.breadcrumb a{
    color:#444;
    text-decoration:none;
    transition:.3s;
}

.breadcrumb a:hover{
    color:#0a7cff;
}

/*====================================
        MAIN CONTAINER
====================================*/

.product-container{
    display:grid;
    grid-template-columns:1.1fr 1fr;
    gap:60px;
    align-items:flex-start;
}

/*====================================
        PRODUCT GALLERY
====================================*/

.product-gallery{
    display:flex;
    gap:20px;
}

.thumbnail-list{
    display:flex;
    flex-direction:column;
    gap:15px;
}

.thumbnail-list img{
    width:90px;
    height:90px;
    object-fit:cover;
    border-radius:12px;
    cursor:pointer;
    border:2px solid transparent;
    transition:.3s;
    background:#fff;
}

.thumbnail-list img:hover,
.thumbnail-list img.active{
    border-color:#0a7cff;
}

.main-image{
    flex:1;
    background:#fff;
    border-radius:20px;
    overflow:hidden;
    box-shadow:0 12px 30px rgba(0,0,0,.08);
}

.main-image img{
    width:100%;
    display:block;
    transition:.4s;
}

.main-image img:hover{
    transform:scale(1.08);
}

/*====================================
        PRODUCT INFO
====================================*/

.product-info{
    position:sticky;
    top:30px;
}

.stock-badge{
    display:inline-flex;
    align-items:center;
    gap:8px;
    background:#e8fff0;
    color:#1d9b4d;
    padding:8px 16px;
    border-radius:30px;
    font-weight:600;
    margin-bottom:18px;
}

.product-info h1{
    font-size:38px;
    margin-bottom:15px;
    color:#222;
}

.category{
    font-size:17px;
    color:#666;
    margin-bottom:20px;
}

.rating{
    color:#ffb400;
    margin-bottom:25px;
    font-size:17px;
}

.rating span{
    color:#666;
    margin-left:8px;
}

/*====================================
            PRICE
====================================*/

.price-box{
    display:flex;
    align-items:center;
    gap:18px;
    margin-bottom:25px;
}

.old-price{
    font-size:22px;
    color:#999;
    text-decoration:line-through;
}

.new-price{
    font-size:38px;
    font-weight:700;
    color:#0a7cff;
}

/*====================================
        DESCRIPTION
====================================*/

.product-description{
    font-size:16px;
    line-height:1.8;
    color:#555;
    margin-bottom:30px;
}

/*====================================
        FEATURES
====================================*/

.feature-list{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:15px;
    margin-bottom:30px;
}

.feature-list div{
    display:flex;
    align-items:center;
    gap:10px;
    font-weight:500;
}

.feature-list i{
    color:#18b55b;
}

/*====================================
        SUMMARY BOXES
====================================*/

.spec-summary{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:15px;
    margin-bottom:35px;
}

.spec-summary div{
    background:#f8f8f8;
    padding:18px;
    border-radius:15px;
    text-align:center;
}

.spec-summary strong{
    display:block;
    color:#222;
    margin-bottom:8px;
}

.spec-summary span{
    color:#666;
}

/*====================================
        QUANTITY
====================================*/

.quantity-box{
    display:flex;
    align-items:center;
    width:170px;
    margin-bottom:30px;
}

.quantity-box button{
    width:50px;
    height:50px;
    border:none;
    background:#0a7cff;
    color:#fff;
    font-size:22px;
    cursor:pointer;
}

.quantity-box input{
    width:70px;
    height:50px;
    border:1px solid #ddd;
    text-align:center;
    font-size:18px;
}

/*====================================
        BUTTONS
====================================*/

.product-buttons{
    display:grid;
    gap:15px;
}

.product-buttons a,
.product-buttons button{

    height:55px;
    border:none;
    border-radius:10px;
    display:flex;
    justify-content:center;
    align-items:center;
    gap:10px;
    text-decoration:none;
    cursor:pointer;
    font-size:16px;
    font-weight:600;
    transition:.3s;
}

.add-cart{
    background:#0a7cff;
    color:#fff;
}

.checkout-btn{
    background:#111;
    color:#fff;
}

.whatsapp-btn{
    background:#25D366;
    color:#fff;
}

.quote-btn{
    background:#f4f4f4;
    color:#222;
}

.product-buttons a:hover,
.product-buttons button:hover{
    transform:translateY(-3px);
    box-shadow:0 10px 25px rgba(0,0,0,.15);
}

/*====================================
        EXTRA SECTION
====================================*/

.product-extra{

    max-width:1300px;
    margin:70px auto;
    padding:0 20px;
}

.tabs{

    display:flex;
    gap:15px;
    margin-bottom:30px;
    flex-wrap:wrap;
}

.tab-btn{

    padding:14px 30px;
    border:none;
    background:#f2f2f2;
    border-radius:40px;
    cursor:pointer;
    transition:.3s;
    font-weight:600;
}

.tab-btn.active{

    background:#0a7cff;
    color:#fff;
}

.tab-content{

    display:none;
    background:#fff;
    padding:35px;
    border-radius:18px;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
}

.tab-content.active{

    display:block;
}

.spec-table{

    width:100%;
    border-collapse:collapse;
}

.spec-table th,
.spec-table td{

    padding:18px;
    border-bottom:1px solid #eee;
    text-align:left;
}

.spec-table th{

    width:250px;
    background:#fafafa;
}

/*====================================
        RESPONSIVE
====================================*/

@media(max-width:992px){

.product-container{

    grid-template-columns:1fr;
}

.product-info{

    position:relative;
    top:0;
}

.feature-list{

    grid-template-columns:1fr;
}

.spec-summary{

    grid-template-columns:1fr;
}

}

@media(max-width:768px){

.product-gallery{

    flex-direction:column-reverse;
}

.thumbnail-list{

    flex-direction:row;
    justify-content:center;
}

.product-info h1{

    font-size:30px;
}

.new-price{

    font-size:30px;
}

}