/*--------------------------------- product_single_section --------------------------------*/
.product_single_section {
    padding-top: 100px ;
    border-top: 1px solid #d4d4d4;
    @media screen and (min-width:1280px) {
        padding-top: 110px ;
    }

    @media screen and (min-width:1440px) {
        padding-top: 130px ;
    }
}

.product_single_section .container-fluid {
    width: 95%;
    margin: auto;

    @media screen and (min-width:1920px) {
        width: 70%;
    }
}

.product_single_section .product_single {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    grid-row-gap: 20px;
    grid-column-gap: 20px;
    align-items: center;
    @media screen and (min-width:992px) {
        grid-template-columns: 1fr 1fr;
    }
}

.product_single_section .product_single .product_img img {
    width: 100%;
    border-radius: 20px;
}

.product_single_section .product_single .product_img_details {
    position: absolute;
    top: 5%;
    left: 5%;
    bottom: auto;
    right: auto;
    background-color: #274c5b;
    color: #fff;
    padding: 8px 20px;
    border-radius: 10px;
}

.product_single_section .product_single .product_img_details p {
    margin-bottom: 0;
    font-size: 17px;
    font-weight: 600;
}

.product_single_section .product_single .product_details {
    width: 100%;
}

.product_single_section .product_single .product_details h2 {
    font-family: 'Libre Baskerville', serif;
    font-size: 35px;
    font-weight: 900 !important;
    color: #274c5b;
    margin-bottom: 20px;

    @media screen and (min-width:1280px) {
        font-size: 40px;
    }

    @media screen and (max-width:480px) {
        font-size: 30px;
    }
}

.product_single_section .product_single .product_details p {
    font-size: 18px;
    color: #525c60;

    @media screen and (min-width:1280px) {
        font-size: 20px;
    }
}

.product_single_section .product_single .product_price {
    display: flex;
    align-items: center;
    padding-top: 10px;
}

.product_single_section .product_single .product_price p {
    padding-right: 15px;
    margin-bottom: 20px;
    font-size: 24px;
    font-weight: bold;
}

.product_single_section .product_cart {
    display: flex;
    align-items: start;
    flex-direction: column;
    margin-top: 25px;
    @media screen and (min-width:1440px) {
        align-items: center;
        justify-content: flex-start;
        flex-direction: row;
    }
}
.product_single_section .product_quantity_area {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-right: 15px;
}

.product_single_section .product_quantity_area .form-label {
    color: #274c5b;
    font-size: 24px;
    font-family: 'Kanit', sans-serif;
    padding-right: 15px;
}

.product_single_section .product_quantity_area .form_input {
    width: 130px;
    height: 80px;
    display: block;
    text-align: center;
    border-radius: 20px;
    border: 2px solid #274c5b;
    font-family: 'Libre Baskerville', serif; 
    font-weight: 600 !important;
    color: #274c5b;
    font-size: 20px;
    color: #ababab;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.product_single_section .product_quantity_area .form_input:focus {
    outline: 2px solid #109cd9;
}

.product_single_section .product_cart .product_btn .btn1 {
    padding: 24px 75px 24px 30px;
    font-size: 1.3rem;
    font-family: 'Kanit', sans-serif;
    font-weight: bold;
    background-color: #274c5b;
    border: 1px solid #274c5b;
    color: #fff;
    border-radius: 15px;
    background-image: url(../img/right_ico.svg);
    background-repeat: no-repeat;
    background-position: 80%;
    background-size: auto;
    transition: all .4s;
    margin-top: 15px;
    @media screen and (min-width:1440px) {
        margin-top: 0;
    }
    @media screen and (max-width: 992px) {
        padding: 24px 75px 24px 30px;
    }

}

.product_single_section .product_cart .product_btn .btn1:hover {
    background-color: #fff;
    color: #274c5b;
    background-position: 83%;

    @media screen and (max-width: 576px) {
        background-position: 88%;
    }
}

.product_single_section .product_info {
    margin-top: 60px;
    padding:0 60px 40px 60px;

    @media screen and (max-width:992px) {
        margin-top: 100px;
        padding:0 40px 40px 40px;
    }
    @media screen and (max-width:768px) {
        padding: 10px;
    }
    @media screen and (min-width:1280px) {
        margin-top: 100px;
        padding:0 100px 60px 100px;
    }
}

.product_single_section .product_info .nav-link {
    background-color: #eff6f1;
    color: #274c5b;
    border-radius: 16px;
    padding: 15px 50px;
    margin: 0 10px;
    font-size: 25px;
    font-family: 'Kanit', sans-serif;
    font-weight: 600 !important;
    transition: all .4s;
}

.product_single_section .product_info .nav-link.active,
.product_single_section .product_info .nav-link:hover {
    background-color: #274c5b;
    color: #fff;
}
.product_single_section .product_info p {
    font-size: 18px;
    color: #525c60;
    margin-bottom: 20px;    
    @media screen and (min-width:1280px) {
        font-size: 20px;
    }
}

/*-------------------------- shop_single_section ---------------------------*/
.shop_single_section{
    padding: 40px 0;
    @media screen and (min-width:1280px) {
        padding: 60px 0;
    }
    @media screen and (min-width:1440px) {
        padding: 70px 0;
    }
}
.shop_single_section .container-fluid{
    width: 95%;
    margin: auto;
    @media screen and (min-width:1920px) {
        width: 70%;
    }
}

.shop_single_section .shop_single_header h2{
    font-family: 'Libre Baskerville', serif;    
    font-size: 35px;
    font-weight: 900 !important;
    color: #274c5b;
    margin-bottom: 20px;
    @media screen and (min-width:1280px) {
        font-size: 43px;
    }
    @media screen and (max-width:480px) {
        font-size: 30px;
    }
}


.shop_single_section .shop_item{
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    grid-row-gap: 16px;
    grid-column-gap: 16px;
    @media screen and (min-width:992px) {
        grid-template-columns: 1fr 1fr 1fr;
    }
}

.shop_single_section .shop_card{
    background-color: #f9f8f8;
    border-radius: 20px;
    padding: 30px;
}
.shop_single_section .shop_card .shop_card_head p{
    background-color: #274c5b;
    color: #fff;
    border-radius: 8px;
    margin-bottom: 0;
    padding: 8px 20px;
    font-size: 17px;
    font-weight: 600;
    display: inline-block;
}
.shop_single_section .shop_card .shop_card_img img{
    width: 100%;
}
.shop_single_section .shop_card .shop_details .detal_head{
    border-bottom: 1px solid #274c5b;
    padding: 8px;
    margin-bottom: 5px;
}
.shop_single_section .shop_card .shop_details .detal_head p{
    font-size: 23px;
    font-weight: 600 !important;
    font-family: 'Kanit', sans-serif;
    transition: color 0.4s;
    cursor: pointer;
    color: #274c5b;
    margin-bottom: 0;
    @media screen and (min-width: 1280px) {
        font-size: 25px;
    }
}
.shop_single_section .shop_card .shop_details .detal_head p:hover{
    color: #7eb693;
}
.shop_single_section .shop_card .shop_details .details_list{
    @media screen and (min-width: 1400px) {
        display: flex;
        justify-content: space-between;
    }
    @media screen and (max-width: 768px) {
        display: flex;
        justify-content: space-between;
    }
    @media screen and (max-width: 480px) {
        display: flex;
        flex-direction: column;
    }
}
.shop_single_section .shop_card .shop_details .details_list .details_prise p{
    padding-right: 10px;
    font-size: 18px;
    font-weight: bold;
}
.shop_single_section .shop_card .shop_details .details_list .ico_star{
    color: #efd372;
}