.section {
    flex-direction: column;
    padding: 60px 100px 120px 100px;
}

.product_detail_title {
    /* padding-bottom: 20px; */
    padding: 0 10px 30px 10px;
    margin-bottom: 40px;
    /* border-bottom: 1px solid var(--black); */
    border-bottom: 1px solid rgba(3, 3, 3, 0.5);
    font-size: 45px;
}

.product_detail_wrap {
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    gap: 80px;
}

.product_details {
    max-width: 55%;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.product_detail_img {
    overflow: hidden;
    filter: drop-shadow(5px 5px 10px rgba(3, 3, 3, 0.1));
    border-radius: 14px;
}

.product_img_scroll {
    background-color: #fff;
    display: flex;
    overflow: hidden;
    position: relative;
    transition-duration: 0.3s;
}

.product_img_scroll_icon {
    width: 70px;
    height: 70px;
    background: url(../icons/arrow_left.png) center / cover no-repeat;
    position: absolute;
    top: 50%;
    z-index: 98;
    transform: translateY(-50%);
    transition-duration: 0.3s;
    cursor: pointer;
}

.product_img_next {
    right: 0;
    transform: translateY(-50%) rotate(180deg);
}

.product_img_scroll_icon_activated {
    background: url(../icons/arrow_left_blue.png) center / cover no-repeat;
}

.product_detail_img img {
    height: auto;
}

.product_detail_text {
    margin-top: 20px;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.product_detail_desc {
    font-size: 22px;
    line-height: 30px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.product_detail_specs {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.datasheets_wrap {
    margin-top: 30px;
    padding-top: 50px;
    /* border-top: 1px solid var(--darkGrey); */
    border-top: 1px solid rgba(3, 3, 3, 0.5);
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: flex-start;
}

.datasheets_title {
    font-size: 25px;
    margin-bottom: 10px;
}

.datasheets_wrap a {
    padding: 15px 30px;
    border: 2px solid var(--black);
    border-radius: 1000px;
    transition-duration: 0.3s;
    text-align: center;
}

.datasheets_wrap a:hover {
    background-color: var(--darkBlue);
    color: var(--white);
    border: 2px solid var(--darkBlue);
}

/* Price request form styling starts here */
.price_request_form_wrap {
    max-width: 450px;
    /* width: 100%; */
    width: 50%;
    position: sticky;
    top: 100px;
    align-self: flex-start;
}

.price_request_form {
    border-radius: 20px;
    background-color: var(--white);
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 30px;
}

.form_input_wrap {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form_input_row {
    display: flex;
    gap: 20px;
}

.form_input_element {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 7px;
    justify-content: center;
}

.form_input_element input,
.form_dropdown select {
    background-color: var(--white);
    padding: 15px;
    /* background-color: var(--lightBlue); */
    /* background-color: var(--grey); */
    border: 0;
    border: 1.5px solid var(--darkGrey);
    /* box-shadow: inset 0 0 10px rgba(30, 115, 182, 0.2); */
    border-radius: 8px;
    font-size: 16px;
}

.form_dropdown select {
    position: relative;
    width: -webkit-fill-available;
}

.form_submit_btn {
    margin-top: 10px;
    padding: 15px 50px;
    background-color: var(--darkBlue);
    border: 0;
    border-radius: 1000px;
    color: var(--black);
    font-family: 'BR Sonoma', sans-serif;
    font-size: 18px;
    transition-duration: 0.3s;
    cursor: pointer;
}

.form_submit_btn:hover {
    background-color: var(--black);
    color: var(--white);
}

/* ========== Media query 1300 start here ========== */
@media screen and (max-width: 1300px) {
    .section {
        padding: 60px 80px 120px 80px;
    }

    .product_img_scroll_icon  {
        width: 60px;
        height: 60px;
    }

    .product_detail_wrap {
        gap: 60px;
    }

    .price_request_form_wrap {
        width: 350px;
    }

    .form_input_row .form_input_element {
        width: 50%;
    }  
}

/* ========== Media query 1024 start here ========== */
@media screen and (max-width: 1024px) {
    .section {
        padding: 60px 80px 120px 80px;
    }

    .product_img_scroll_icon  {
        width: 70px;
        height: 70px;
    }

    .product_detail_wrap {
        flex-direction: column;
        gap: 40px;
    }

    .product_details {
        max-width: unset;
        padding-bottom: 40px;
        /* border-bottom: 1px solid var(--grey); */
        border-bottom: 1px solid rgba(3, 3, 3, 0.5);
    }

    .price_request_form_wrap {
        max-width: unset;
        /* max-width: 550px; */
        width: 100%;
        align-self: center;
        padding-top: 20px;
    }
}

/* ========== Media query 850 start here ========== */
@media screen and (max-width: 850px) {
    .section {
        padding: 60px 60px 120px 60px;
    }

    .product_detail_title {
        font-size: 40px;
    }
}

/* ========== Media query 700 start here ========== */
@media screen and (max-width: 700px) {
    .product_img_scroll_icon  {
        width: 50px;
        height: 50px;
    }
}

/* ========== Media query 600 start here ========== */
@media screen and (max-width: 600px) {
    .section {
        padding: 60px 40px 120px 40px;
    }
}

/* ========== Media query 520 start here ========== */
@media screen and (max-width: 520px) {
    .section {
        padding: 40px 40px 120px 40px;
    }

    .product_detail_title {
        font-size: 30px;
    }

    .product_detail_desc {
        font-size: 18px;
        line-height: 25px;
    }

    .product_detail_specs {
        font-size: 14px;
    }

    .product_detail_wrap {
        padding: 0 10px;
    }

    .product_img_scroll_icon  {
        width: 40px;
        height: 40px;
    }
    
    .form_input_element input,
    .form_dropdown select {
        font-size: 16px;
    }
}

/* ========== Media query 400 start here ========== */
@media screen and (max-width: 400px) {
    .section {
        padding: 60px 30px 100px 30px;
    }

    .product_img_scroll_icon  {
        width: 30px;
        height: 30px;
    }
}