/*=====================================
PRODUCT SECTION
=====================================*/

.edh-product-section{

    max-width:1400px;
    margin:35px auto;
    background:#fff;
    border-radius:18px;
    box-shadow:0 8px 30px rgba(0,0,0,.08);
    overflow:hidden;
    padding:30px;

}

/*=====================================
ROW
=====================================*/

.edh-product-row{

    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:50px;

}

.edh-product-row.reverse{

    flex-direction:row-reverse;

}

/*=====================================
LEFT GALLERY
=====================================*/

.edh-gallery{

    width:48%;
    display:flex;
    align-items:flex-start;
    gap:18px;

}

/*=====================================
THUMBNAILS
=====================================*/

.edh-thumb-column{

    width:90px;
    display:flex;
    flex-direction:column;
    gap:15px;

}

.edh-thumb{

    width:82px;
    height:82px;
    object-fit:contain;
    border:2px solid #ddd;
    border-radius:12px;
    background:#fff;
    padding:6px;
    cursor:pointer;
    transition:.25s;

}

.edh-thumb:hover{

    border-color:#ff9800;

}

.edh-thumb.active{

    border-color:#ff9800;
    box-shadow:0 0 12px rgba(255,152,0,.35);

}

/*=====================================
MAIN IMAGE
=====================================*/

.edh-main-image-box{

    flex:1;
    display:flex;
    justify-content:center;
    align-items:center;
    height:460px;
    background:#fff;
    border-radius:12px;
    overflow:hidden;

}

.edh-main-image{

    width:100%;
    max-width:520px;
    height:420px;
    object-fit:contain;
    display:block;
    margin:auto;
    transition:.3s;

}

.edh-main-image:hover{

    transform:scale(1.03);

}
/*=====================================
RIGHT DETAILS
=====================================*/

.edh-details{

    width:52%;

}

.edh-details h1{

    font-size:28px;
    line-height:1.4;
    font-weight:700;
    margin-bottom:12px;

}

.edh-rating{

    color:#ff9800;
    font-size:22px;
    margin-bottom:18px;

}

.edh-rating span{

    color:#1565c0;
    font-size:18px;

}

/*=====================================
INFO
=====================================*/

.edh-details p{

    font-size:20px;
    margin:12px 0;
    color:#222;

}

.edh-details strong{

    color:#000;

}

/*=====================================
PRICE
=====================================*/

.edh-price-row{

    display:flex;
    align-items:center;
    gap:18px;
    margin:25px 0;

}

.edh-price-row .mrp{

    font-size:20px;
    color:#888;
    text-decoration:line-through;

}

.edh-price-row .price{

    font-size:42px;
    color:#0a9b2d;
    font-weight:700;
    line-height:1;

}

.offer{

    background:#e53935;
    color:#fff;
    padding:6px 12px;
    border-radius:6px;
    font-size:15px;
    font-weight:700;

}

/*=====================================
STOCK
=====================================*/

.stock-row{

    font-size:22px;
    color:#333;
    margin:18px 0;

}

/*=====================================
DESCRIPTION
=====================================*/

.short-desc{

    font-size:22px;
    line-height:1.9;
    color:#444;
    margin:25px 0;

}

/*=====================================
BUTTONS
=====================================*/

.edh-buttons{

    display:flex;
    gap:22px;
    margin-top:30px;

}

.edh-buy-now{

    background:#ff9800;
    color:#fff;
    text-decoration:none;
    padding:18px 45px;
    border-radius:10px;
    font-size:24px;
    font-weight:700;
    transition:.25s;

}

.edh-buy-now:hover{

    background:#ef6c00;
    color:#fff;

}

.edh-whatsapp{

    border:2px solid #22c55e;
    color:#22c55e;
    text-decoration:none;
    padding:18px 45px;
    border-radius:10px;
    font-size:24px;
    font-weight:700;
    transition:.25s;

}

.edh-whatsapp:hover{

    background:#22c55e;
    color:#fff;

}

/*=====================================
RESPONSIVE
=====================================*/

@media(max-width:991px){

.edh-product-row,
.edh-product-row.reverse{

    flex-direction:column;

}

.edh-gallery,
.edh-details{

    width:100%;

}

.edh-details h1{

    font-size:32px;

}

.edh-price-row .price{

    font-size:42px;

}

.edh-buttons{

    flex-direction:column;

}

.edh-buy-now,
.edh-whatsapp{

    width:100%;
    text-align:center;

}

}