
a{
    color: unset;
    text-decoration: none;
}
.container_s{
    width: 80vw;
    margin: 70px auto 0 auto;
    max-width: 90vw;
    text-align: center;
    padding-top: 10px;
}
.title_s{
    font-size: xx-large;
    padding: 20px 0;
    font-weight: 600;
    font-family: Poppins;
}
.listProduct_s .item_s img{
    width: 90%;
    /* filter: drop-shadow(0 50px 20px rgba(204, 179, 179, 0.6)); */
}
.listProduct_s{
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}
.listProduct_s .item_s{
    padding: 20px;
    border-radius: 20px;
    border: 2px solid rgb(133, 127, 127);
    display: grid;
    justify-items: center;
    align-content: space-between;
}
.listProduct_s .item_s h2{
    font-weight: 500;
    font-size: large;
    font-family: Poppins;
}
.listProduct_s .item_s .price_s1{
 background-color: #1995AD;
 border: 1px solid rgba(27, 31, 35, .15);
 border-radius: 6px;
 box-shadow: rgba(27, 31, 35, .1) 0 1px 0;
 color: #fff;
 cursor: pointer;
 font-family: -apple-system,system-ui,"Segoe UI",Helvetica,Arial,sans-serif,"Apple Color Emoji","Segoe UI Emoji";
 font-size: 14px;
 font-weight: 600;
 line-height: 20px;
 padding: 5px 10px;
 position: relative;
 text-align: center;
 text-decoration: none;
 user-select: none;
 -webkit-user-select: none;
 touch-action: manipulation;
 vertical-align: middle;
 white-space: nowrap;
}
.listProduct_s .item_s .price_s2{
  
 background-color: #8abcc7;
 border: 1px solid rgba(27, 31, 35, .15);
 border-radius: 6px;
 box-shadow: rgba(27, 31, 35, .1) 0 1px 0;
 color: #fff;
 cursor: pointer;
 font-family: -apple-system,system-ui,"Segoe UI",Helvetica,Arial,sans-serif,"Apple Color Emoji","Segoe UI Emoji";
 font-size: 14px;
 font-weight: 600;
 line-height: 20px;
 padding: 5px 10px;
 position: relative;
 text-align: center;
 text-decoration: none;
 user-select: none;
 -webkit-user-select: none;
 touch-action: manipulation;
 vertical-align: middle;
 white-space: nowrap;
}
/* detail page */
.price_btn{
    display: flex;
    gap: 10px;
}


.detail_s{
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 50px;
    text-align: left;
}
.detail_s .image_s img{
    width: 100%;
}
.detail_s .image_s{
    position: relative;
}

.detail_s .name_s{
    font-size: 32px;
    padding: 40px 0 0 0;
    margin: 0 0 10px 0;
    font-family: Poppins;
}
.detail_s .price_s{
    font-weight: bold;
    font-size: x-large;
    letter-spacing: 7px;
    margin-bottom: 20px;
}
.detail_s .buttons_s{
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}
.detail_s .buttons_s .button1{
    background-color: #1995AD;
    border: 1px solid rgba(27, 31, 35, .15);
    border-radius: 6px;
    box-shadow: rgba(27, 31, 35, .1) 0 1px 0;
    color: #fff;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    line-height: 20px;
    padding: 10px 20px;
    position: relative;
    text-align: center;
    text-decoration: none;
    user-select: none;
    -webkit-user-select: none;
    touch-action: manipulation;
    vertical-align: middle;
    white-space: nowrap;
    font-family: Poppins;
  
}
.button2{
    background-color: #7d8586;
    border: 1px solid rgba(3, 3, 3, 0.15);
    border-radius: 6px;
    box-shadow: rgba(27, 31, 35, .1) 0 1px 0;
    color: #fff;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    line-height: 20px;
    padding: 10px 20px;
    position: relative;
    text-align: center;
    text-decoration: none;
    user-select: none;
    -webkit-user-select: none;
    touch-action: manipulation;
    vertical-align: middle;
    white-space: nowrap;
    font-family: Poppins;
  
}
.detail_s .buttons_s svg{
    width: 15px;
}
.detail_s .buttons_s span{
    background-color: #555454;
    width: 30px;
    height: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    margin-left: 20px;
}
/* .detail_s .buttons_s button:nth-child(2){
    background-color: #2F2F2F;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #eee;
    box-shadow: 0 10px 20px #2F2F2F77;
} */
.detail_s .description_s{
    font-weight: 300;
}
/* // ipad */
@media only screen and (max-width: 992px) {
    .listProduct_s{
        grid-template-columns: repeat(3, 1fr);
    }
    .detail_s{
        grid-template-columns:  40% 1fr;
    }
}


/* mobile */
@media only screen and (max-width: 768px) {
    .listProduct_s{
        grid-template-columns: repeat(2, 1fr);
    }
    .detail_s{
        text-align: center;
        grid-template-columns: 1fr;
    }
    .detail_s .image_s img{
        width: unset;
        height: 40vh;
    } 
    .detail_s .name_s{
        font-size: x-large;
        margin: 0;

    }
    .detail_s .buttons_s button{
        font-size: small;
    }
    .detail_s .buttons_s{
        justify-content: center;
    }
}

.callIcon{
    height: 20px;   
}
