
/* =========================
   PRODUCT PAGE CSS
========================= */

.product-section{
    padding:80px 0;
}

.product-sidebar{
    background:#f5f5f5;
    padding:30px;
    border-radius:25px;
    position:sticky;
    top:120px;
}

.product-sidebar h3{
    font-size:30px;
    font-weight:700;
    margin-bottom:25px;
}

.product-sidebar ul{
    list-style:none;
    padding:0;
    margin:0;
}

.product-sidebar ul li{
    margin-bottom:12px;
}

.product-sidebar ul li a{
    display:flex;
    justify-content:space-between;
    align-items:center;
    text-decoration:none;
    background:#fff;
    color:#222;
    padding:15px 20px;
    border-radius:12px;
    transition:0.3s;
    font-weight:500;
}

.product-sidebar ul li a:hover{
    background:#0d6efd;
    color:#fff;
}

.product-main-image img{
    width:100%;
    height:500px;
    object-fit:cover;
    border-radius:25px;
}

.product-content{
    margin-top:40px;
}

.product-content h2{
    font-size:42px;
    font-weight:700;
    margin-bottom:20px;
}

.product-content p{
    font-size:16px;
    line-height:1.9;
    color:#666;
}

.highlight-title{
    border-left:4px solid #0d6efd;
    padding-left:15px;
    margin:35px 0 20px;
}

.highlight-title h3{
    color:#0d6efd;
    font-size:28px;
    margin:0;
}

.feature-list{
    padding-left:20px;
}

.feature-list li{
    margin-bottom:12px;
    line-height:1.8;
}

.specification-table{
    margin-top:20px;
}

.specification-table table{
    width:100%;
    border-collapse:collapse;
}

.specification-table th,
.specification-table td{
    border:1px solid #ddd;
    padding:15px;
}

.specification-table th{
    background:#f7f7f7;
    width:35%;
}

.enquiry-btn{
    margin-top:35px;
}

.enquiry-btn a{
    background:#0d6efd;
    color:#fff;
    text-decoration:none;
    padding:15px 35px;
    border-radius:50px;
    display:inline-block;
    transition:0.3s;
}

.enquiry-btn a:hover{
    background:#0b5ed7;
    color:#fff;
}

@media(max-width:991px){

    .product-sidebar{
        margin-bottom:30px;
        position:relative;
        top:0;
    }

    .product-main-image img{
        height:300px;
    }

    .product-content h2{
        font-size:32px;
    }
}