/*======================================
PRODUCT PAGE
======================================*/

.product-page{
    background:#f5f7fb;
    padding:40px 0 70px;
}

.product-page .container{
    max-width:1350px;
}

/*======================================
PRODUCT INFO WRAPPER
======================================*/

.product-page .row:first-child{
    background:#fff;
    border-radius:18px;
    padding:30px;
    box-shadow:0 8px 35px rgba(0,0,0,.05);
}

/*======================================
LEFT GALLERY
======================================*/

.product-gallery{
    position:sticky;
    top:20px;
}

.main-image{
    width:100%;
    height:560px;
    border:1px solid #ececec;
    border-radius:18px;
    overflow:hidden;
    background:#fff;
    display:flex;
    justify-content:center;
    align-items:center;
}

.main-image img{
    width:100%;
    height:100%;
    object-fit:contain;
    padding:25px;
    transition:.35s;
}

.main-image:hover img{
    transform:scale(1.08);
}

/*======================================
THUMBNAILS
======================================*/

.thumbs{
    display:flex;
    gap:12px;
    margin-top:20px;
    flex-wrap:wrap;
}

.thumb{
    width:85px;
    height:85px;
    border:2px solid #eee;
    border-radius:12px;
    overflow:hidden;
    cursor:pointer;
    transition:.3s;
    background:#fff;
}

.thumb img{
    width:100%;
    height:100%;
    object-fit:contain;
    padding:8px;
}

.thumb:hover{
    border-color:#D10024;
}

.thumb.active{
    border-color:#D10024;
}

/*======================================
RIGHT SIDE
======================================*/

.product-info{
    padding-left:35px;
}

.category{
    display:inline-block;
    background:#fff0f2;
    color:#D10024;
    font-size:13px;
    font-weight:600;
    padding:7px 15px;
    border-radius:40px;
    margin-bottom:15px;
}

.product-info h1{
    font-size:34px;
    font-weight:700;
    color:#222;
    line-height:1.4;
    margin-bottom:15px;
}

/*======================================
RATING
======================================*/

.rating{
    display:flex;
    align-items:center;
    gap:5px;
    margin-bottom:18px;
}

.rating i{
    color:#ffc107;
    font-size:15px;
}

.rating span{
    margin-left:8px;
    color:#777;
    font-size:15px;
}

/*======================================
PRICE
======================================*/

.price-box{
    display:flex;
    align-items:center;
    gap:15px;
    flex-wrap:wrap;
    margin-bottom:20px;
}

.sale-price{
    font-size:40px;
    font-weight:700;
    color:#D10024;
}

.mrp{
    font-size:22px;
    color:#999;
    text-decoration:line-through;
}

.discount{
    background:#D10024;
    color:#fff;
    padding:6px 12px;
    border-radius:30px;
    font-size:13px;
    font-weight:600;
}

/*======================================
STOCK
======================================*/

.stock{
    margin-bottom:20px;
    font-size:15px;
    font-weight:600;
}

/*======================================
DESCRIPTION
======================================*/

.short-desc{
    color:#666;
    font-size:15px;
    line-height:1.9;
    margin-bottom:25px;
}

/*======================================
QUANTITY
======================================*/

.qty-box{
    display:flex;
    align-items:center;
    gap:12px;
    margin-bottom:30px;
}

.qty-box button{
    width:48px;
    height:48px;
    border:none;
    border-radius:10px;
    background:#f3f3f3;
    font-size:22px;
    transition:.3s;
}

.qty-box button:hover{
    background:#D10024;
    color:#fff;
}

.qty-box input{
    width:70px;
    height:48px;
    text-align:center;
    border:1px solid #ddd;
    border-radius:10px;
    font-weight:600;
}
/*======================================
ACTION BUTTONS
======================================*/

.action-buttons{
    display:flex;
    gap:15px;
    margin-bottom:30px;
    flex-wrap:wrap;
}

.action-buttons .btn{
    height:56px;
    border-radius:12px;
    display:flex;
    align-items:center;
    justify-content:center;
    font-weight:600;
    font-size:16px;
    transition:.3s;
}

.action-buttons .btn i{
    margin-right:8px;
}

.action-buttons .btn-danger{
    flex:1;
    background:#D10024;
    border:none;
}

.action-buttons .btn-danger:hover{
    background:#b30020;
    transform:translateY(-2px);
}

.action-buttons .btn-dark{
    flex:1;
    background:#111;
    border:none;
}

.action-buttons .btn-dark:hover{
    background:#000;
    transform:translateY(-2px);
}

.action-buttons .btn-outline-danger{
    width:56px;
    min-width:56px;
    padding:0;
}

.action-buttons .btn-outline-danger i{
    margin:0;
    font-size:18px;
}

/*======================================
DELIVERY BOX
======================================*/

.delivery-box{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:15px;
    margin-top:25px;
}

.delivery-item{
    display:flex;
    align-items:center;
    gap:15px;
    padding:18px;
    background:#fafafa;
    border:1px solid #ececec;
    border-radius:14px;
    transition:.30s;
}

.delivery-item:hover{
    background:#fff;
    border-color:#D10024;
    box-shadow:0 10px 25px rgba(0,0,0,.08);
}

.delivery-item i{
    width:48px;
    height:48px;
    border-radius:50%;
    background:#ffe9ed;
    color:#D10024;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:20px;
    flex-shrink:0;
}

.delivery-item strong{
    display:block;
    color:#222;
    font-size:15px;
    margin-bottom:4px;
}

.delivery-item small{
    color:#777;
    font-size:13px;
}

/*======================================
PRODUCT TABS
======================================*/

.product-tabs{
    margin-top:45px;
    background:#fff;
    border-radius:18px;
    overflow:hidden;
    box-shadow:0 6px 25px rgba(0,0,0,.05);
}

.product-tabs .nav-tabs{
    border:none;
    background:#f8f8f8;
    padding:12px;
    gap:10px;
}

.product-tabs .nav-link{
    border:none;
    border-radius:10px;
    padding:12px 24px;
    font-weight:600;
    color:#444;
    background:transparent;
}

.product-tabs .nav-link.active{
    background:#D10024;
    color:#fff;
}

.tab-content{
    padding:30px;
}

.tab-box{
    color:#555;
    line-height:1.9;
    font-size:15px;
}

/*======================================
SPECIFICATION TABLE
======================================*/

.table{
    margin-bottom:0;
}

.table th{
    width:220px;
    background:#fafafa;
    font-weight:600;
}

.table td,
.table th{
    padding:15px;
    vertical-align:middle;
}

/*======================================
REVIEWS
======================================*/

#reviews h4{
    margin-bottom:15px;
    font-weight:700;
}

#reviews p{
    color:#777;
}
/*======================================
ACTION BUTTONS
======================================*/

.action-buttons{
    display:flex;
    gap:15px;
    margin-bottom:30px;
    flex-wrap:wrap;
}

.action-buttons .btn{
    height:56px;
    border-radius:12px;
    display:flex;
    align-items:center;
    justify-content:center;
    font-weight:600;
    font-size:16px;
    transition:.3s;
}

.action-buttons .btn i{
    margin-right:8px;
}

.action-buttons .btn-danger{
    flex:1;
    background:#D10024;
    border:none;
}

.action-buttons .btn-danger:hover{
    background:#b30020;
    transform:translateY(-2px);
}

.action-buttons .btn-dark{
    flex:1;
    background:#111;
    border:none;
}

.action-buttons .btn-dark:hover{
    background:#000;
    transform:translateY(-2px);
}

.action-buttons .btn-outline-danger{
    width:56px;
    min-width:56px;
    padding:0;
}

.action-buttons .btn-outline-danger i{
    margin:0;
    font-size:18px;
}

/*======================================
DELIVERY BOX
======================================*/

.delivery-box{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:15px;
    margin-top:25px;
}

.delivery-item{
    display:flex;
    align-items:center;
    gap:15px;
    padding:18px;
    background:#fafafa;
    border:1px solid #ececec;
    border-radius:14px;
    transition:.30s;
}

.delivery-item:hover{
    background:#fff;
    border-color:#D10024;
    box-shadow:0 10px 25px rgba(0,0,0,.08);
}

.delivery-item i{
    width:48px;
    height:48px;
    border-radius:50%;
    background:#ffe9ed;
    color:#D10024;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:20px;
    flex-shrink:0;
}

.delivery-item strong{
    display:block;
    color:#222;
    font-size:15px;
    margin-bottom:4px;
}

.delivery-item small{
    color:#777;
    font-size:13px;
}

/*======================================
PRODUCT TABS
======================================*/

.product-tabs{
    margin-top:45px;
    background:#fff;
    border-radius:18px;
    overflow:hidden;
    box-shadow:0 6px 25px rgba(0,0,0,.05);
}

.product-tabs .nav-tabs{
    border:none;
    background:#f8f8f8;
    padding:12px;
    gap:10px;
}

.product-tabs .nav-link{
    border:none;
    border-radius:10px;
    padding:12px 24px;
    font-weight:600;
    color:#444;
    background:transparent;
}

.product-tabs .nav-link.active{
    background:#D10024;
    color:#fff;
}

.tab-content{
    padding:30px;
}

.tab-box{
    color:#555;
    line-height:1.9;
    font-size:15px;
}

/*======================================
SPECIFICATION TABLE
======================================*/

.table{
    margin-bottom:0;
}

.table th{
    width:220px;
    background:#fafafa;
    font-weight:600;
}

.table td,
.table th{
    padding:15px;
    vertical-align:middle;
}

/*======================================
REVIEWS
======================================*/

#reviews h4{
    margin-bottom:15px;
    font-weight:700;
}

#reviews p{
    color:#777;
}
#toast{

position:fixed;

top:20px;

right:20px;

background:#111;

color:#fff;

padding:14px 22px;

border-radius:10px;

z-index:99999;

opacity:0;

visibility:hidden;

transition:.35s;

font-weight:600;

box-shadow:0 15px 40px rgba(0,0,0,.25);

}

#toast.show{

opacity:1;

visibility:visible;

}