/* MAIN SECTION */
.product-section {
    padding: 60px 0;
}


/* IMAGE ZOOM */
.zoom-container {
    overflow: hidden;
}

.zoom-container:hover .product-img {
    transform: scale(1.1);
}

/* SIDEBAR */
.enquiry-box {
    background: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
    position: sticky;
    top: 100px;
}

/* BUTTON */
.btn-primary {
    background: #e63946;
    border: none;
}

/* MOBILE FIX */
@media(max-width:768px){
    .enquiry-box {
        margin-top: 30px;
    }
}



/* IMAGE */
.product-img {
    width: 100%;
    max-width: 500px;
}

/* RIGHT CONTENT */
.product-title {
    font-size: 36px;
    font-weight: 600;
    margin-bottom: 20px;
}

.product-desc {
    color: #555;
    line-height: 1.7;
    margin-bottom: 30px;
}

/* SPEC TITLE */
.spec-title {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 15px;
    position: relative;
}

.spec-title::after {
    content: "";
    width: 60px;
    height: 2px;
    background: #e63946;
    position: absolute;
    bottom: -5px;
    left: 0;
}

/* TABLE STYLE */
.spec-table {
    width: 100%;
    border-collapse: collapse;
}

.spec-table tr {
    border-bottom: 1px solid #e0e0e0;
}

.spec-table tr:nth-child(even) {
    background: #eeeeee;
}

.spec-table td {
    padding: 12px 15px;
    font-size: 15px;
}

.spec-table td:first-child {
    font-weight: 600;
    width: 40%;
}

