/* ==============================================
SINGLE PRODUCT DETAIL PAGE STYLES
============================================== */
.single-product-banner{
    color: white;
        overflow: hidden;
        position: relative;
    padding:80px 0;
}

.banner-bg-image{
position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: -2;
}



.single-product-main{
    padding:60px 0;
}
.single-product-wrap{
    display:flex;
    gap:30px;
}
.product-gallery-column{
    flex:0 0 40%;
}
.product-info-column{
    flex:0 0 55%;
}
.product-spec-sidebar{
    flex:0 0 24%;
}

/* Product Gallery */
.product-main-image{
    position:relative;
    border:1px solid #eee;
    margin-bottom:16px;
}
.product-main-image img{
    width:100%;
    display:block;
}
.gallery-zoom{
    position:absolute;
    top:12px;
    right:12px;
    width:34px;
    height:34px;
    background:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    border-radius:50%;
    cursor:pointer;
}
.thumb-container{
    display:flex;
    gap:8px;
    overflow:hidden;
}
.thumb-item{
    width:70px;
    height:70px;
    border:2px solid transparent;
    cursor:pointer;
}
.thumb-item.active{
    border-color:#ff5800;
}
.thumb-item img{
    width:100%;
    height:100%;
    object-fit:cover;
}
.thumb-arrow{
    background:#fff;
    border:1px solid #ddd;
    width:30px;
    height:70px;
    cursor:pointer;
}
.product-thumb-slider{
    display:flex;
    align-items:center;
    gap:6px;
}

/* Product Info */
.product-info-column h2{
    font-size:26px;
    margin:0 0 10px;
}
.product-rating{
    display:flex;
    align-items:center;
    gap:10px;
    margin-bottom:16px;
}
.stars{
    color:#ffb300;
}
.product-short-desc{
    color:#444;
    line-height:1.6;
    margin-bottom:16px;
}
.product-feature-list{
    list-style:none;
    padding:0;
    margin-bottom:24px;
}
.product-feature-list li{
    margin-bottom:8px;
    font-size:14px;
}
.product-feature-list li i{
    color:#ff5800;
    margin-right:8px;
}
.product-action-buttons{
    display:flex;
    gap:14px;
    margin-bottom:20px;
}
.btn-outline-grey{
    border:1px solid #333;
    background:transparent;
    color:#222;
    padding:12px 22px;
    text-decoration:none;
    font-size:14px;
    transition:0.25s;
}
.btn-outline-grey:hover{
    background:#222;
    color:#fff;
}
.product-meta p{
    font-size:14px;
    margin:6px 0;
    color:#555;
}

/* Spec Sidebar Widget */
.spec-widget{
    background:#f8f8f8;
    padding:22px;
    margin-bottom:24px;
}
.spec-widget h4{
    font-size:15px;
    text-transform:uppercase;
    margin-bottom:16px;
    padding-bottom:8px;
    border-bottom:1px solid #ddd;
}
.spec-list{
    list-style:none;
    padding:0;
}
.spec-list li{
    font-size:13px;
    padding:7px 0;
    border-bottom:1px solid #eee;
}
.spec-list li span{
    font-weight:600;
    display:block;
    color:#222;
}
.download-list{
    list-style:none;
    padding:0;
}
.download-list li{
    margin:10px 0;
}
.download-list li a{
    color:#222;
    font-size:14px;
    text-decoration:none;
}
.download-list li a i{
    margin-right:6px;
    color:#ff5800;
}

/* Product Tabs */
.product-tab-section{
    padding:40px 0 60px;
}
.product-tabs-header{
    display:flex;
    border-bottom:1px solid #ddd;
    flex-wrap:wrap;
}
.tab-btn{
    padding:14px 18px;
    background:transparent;
    border:none;
    font-size:14px;
    font-weight:600;
    cursor:pointer;
    position:relative;
}
.tab-btn.active::after{
    content:"";
    position:absolute;
    left:0;
    bottom:-1px;
    width:100%;
    height:2px;
    background:#ff5800;
}
.tab-content{
    padding:30px 0;
    display:none;
}
.tab-content.active{
    display:block;
}
.tab-content-row{
    display:flex;
    gap:30px;
    align-items:flex-start;
}
.tab-text-col{
    flex:0 0 100%;
}
.tab-image-col{
    flex:0 0 45%;
}
.tab-image-col img{
    width:100%;
}

/* Spec Table */
.product-spec-table{
    width:100%;
    border-collapse:collapse;
    margin:20px 0;
}
.product-spec-table th, .product-spec-table td{
    border:1px solid #ddd;
    padding:12px 8px;
    font-size:13px;
}
.product-spec-table th{
    background:#f5f5f5;
}
.table-note{
    font-size:13px;
    color:#555;
}

/* Application Grid */
.application-grid{
    display:grid;
    grid-template-columns:repeat(5, 1fr);
    gap:20px;
    margin-top:30px;
}
.app-item{
    text-align:center;
    padding:16px;
    border:1px solid #eee;
}
.app-item i{
    font-size:26px;
    color:#ff5800;
    margin-bottom:10px;
}
.app-item h5{
    margin:8px 0;
}
.app-item p{
    font-size:13px;
    color:#555;
}

/* Why Choose Us Dark Section */
.dark-bg-section{
    background:#111;
    color:#fff;
    padding:50px 0;
}
.section-white-title{
    color:#fff;
    margin-bottom:30px;
}
.choose-us-grid{
    display:grid;
    grid-template-columns:repeat(5,1fr);
    gap:24px;
}
.choose-item{
    text-align:center;
}
.choose-item i{
    font-size:28px;
    color:#ff5800;
    margin-bottom:12px;
}
.choose-item h4{
    font-size:16px;
    margin-bottom:8px;
}
.choose-item p{
    font-size:13px;
    color:#ccc;
}

/* Related Products */
.related-product-section{
    padding:60px 0;
}
.related-slider-wrap{
    position:relative;
}
.related-arrow{
    position:absolute;
    top:50%;
    transform:translateY(-50%);
    width:36px;
    height:36px;
    border-radius:50%;
    border:1px solid #ddd;
    background:#fff;
    cursor:pointer;
    z-index:2;
}
.prev-related{
    left:-10px;
}
.next-related{
    right:-10px;
}
.related-product-grid{
    display:grid;
    grid-template-columns:repeat(6,1fr);
    gap:20px;
}
.related-card{
    text-align:center;
}
.related-img{
    border:1px solid #eee;
    padding:12px;
    margin-bottom:12px;
}
.related-img img{
    width:100%;
    display:block;
}
.related-card h4{
    font-size:14px;
    margin-bottom:8px;
}

/* ==============================================
RESPONSIVE MEDIA QUERIES
============================================== */
@media(max-width:1200px){
    .single-product-wrap{
        flex-wrap:wrap;
    }
    .product-gallery-column, .product-info-column{
        flex:0 0 48%;
    }
    .product-spec-sidebar{
        flex:0 0 100%;
        order:3;
    }
    .application-grid{
        grid-template-columns:repeat(3,1fr);
    }
    .choose-us-grid{
        grid-template-columns:repeat(3,1fr);
    }
    .related-product-grid{
        grid-template-columns:repeat(4,1fr);
    }
}
@media(max-width:992px){
    .tab-content-row{
        flex-direction:column;
    }
    .tab-text-col, .tab-image-col{
        flex:0 0 100%;
    }
}
@media(max-width:768px){
    .single-product-wrap{
        flex-direction:column;
    }
    .product-gallery-column, .product-info-column{
        flex:0 0 100%;
    }
    .product-action-buttons{
        flex-direction:column;
    }
    .application-grid{
        grid-template-columns:repeat(2,1fr);
    }
    .choose-us-grid{
        grid-template-columns:repeat(2,1fr);
    }
    .related-product-grid{
        grid-template-columns:repeat(2,1fr);
    }
    .product-tabs-header{
        overflow-x:auto;
    }
}
@media(max-width:576px){
    .application-grid, .choose-us-grid{
        grid-template-columns:1fr;
    }
    .related-product-grid{
        grid-template-columns:1fr;
    }
}