section.products{
    margin: 20px 0;
}

section.products h2{
    font-size: 25px;
    font-weight: 300;
    color: #666;
}

section.products .products-card-cont{
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    margin: 20px auto 0 auto;
}

section.products .product-card-single{
    width: calc(100% / 5);
    max-width: 23vw;
    padding: 1vw;
}

section.products .product-card{
    width: 100%;
    -webkit-box-shadow: 0px 0px 10px -5px rgba(0, 0, 0, 0.59);
    -moz-box-shadow: 0px 0px 10px -5px rgba(0, 0, 0, 0.59);
    box-shadow: 0px 0px 10px -5px rgba(0, 0, 0, 0.59);
    padding: 20px;
    border-radius: 10px;
}

section.products .top-card{
    width: 100%;
    display: flex;
    justify-content: space-between;
    margin: 0 0 10px 0;
    align-items: center;
}

section.products .top-card img{
    width: 1.3vw;
}

section.products .top-card i{
    font-size: 1.3vw;
    cursor: pointer;
    color: #ffcd6f;
}

section.products .top-card .discount{
    width: 4vw;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    padding: 6px;
    border: 2px solid #9cdfc4;
    font-size: 0.8vw;
    font-weight: bold;
    color: #9cdfc4;
}

section.products .top-card .discount img{
    margin: 0 5px 0 0;
}

section.products .content-image img{
    width: 100%;
}

section.products .description{
    margin: 5px 0;
}

section.products .description h1{
    font-size: 1.vw;
    font-weight: 600;
    color: #707070;
}

section.products .options-card{
    width: 100%;
    margin: 10px 0;
    display: flex;
    align-items: center;
}

section.products .options-card button{
    margin: 0 10px 0 0;
    display: flex;
    width: 100px;
    font-weight: 500;
    align-items: center;
    justify-content: center;
    border:none;
    color: #fff;
    border-radius: 5px;
    cursor: pointer;
    padding: 5px;
    font-size: 12px;
}

section.products .options-card button:nth-child(1){
    background-color: #ab72d9;
}

section.products .options-card button:nth-child(2){
    background-color: #ababab;
}

section.products .options-card button:nth-child(1):hover{
    background-color: #7a4d9e;
}

section.products .options-card button:nth-child(2):hover{
    background-color: #8f8f8f;
}

section.products .options-card img{
    width: 20px;
    margin: 0 5px 0 0;
}

section.products .description >a button img{
    width: 1.5vw;
    margin: 0 10px 0 0;
}

section.products .description .price{
    margin: 20px 0;
}

section.products .description .price strike{
    color: #aaa;
    font-size: 14px;
}

section.products .description .price h2{
    font-family: "Passion One", sans-serif;
    font-size: 3vw;
    font-weight: 400;
    letter-spacing: -1px;
    color: #FFB246;
}

section.products .description .price span{
    font-size: 30px;
}


section.products .description .price p{
    color: #020200;
    font-size: 14px;
}

section.products .description > a {
    text-decoration: none;
}

section.products .description > a button{
    width: 100%;
    padding: 8px;
    font-size: 1vw;
    font-family: "Poppins", sans-serif;
    font-weight: 500;
    font-style: normal;
    border: none;
    color: #fff;
    background-color: #4ac77b;
    border-radius: 5px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s;
}

section.products .description > a button:hover{
    background-color: #3a9c62;
    transition: 0.3s;
}

@media screen and (max-width: 1025px) {

    section.products .product-card-single {
        width: calc(100% / 2);
        max-width: 100%;
    }
    section.products .top-card .discount {
        width: 10vw;
        font-size: 1.8vw;
    }
    section.products .top-card img{
        width: 2.3vw;
    }
    section.products .top-card i {
        font-size: 2.3vw;
    }
    section.products .description .price h2 {
        font-size: 7vw;
    }
    section.products .description > a button {
        font-size: 3vw;
    }
    section.products .description > a button img {
        width: 4.5vw;
    }
}

@media screen and (max-width: 500px) {

    section.products .product-card-single {
        width: 100%;
    }
    section.products .top-card .discount {
        width: 20vw;
        font-size: 4vw;
    }
    section.products .top-card img{
        width: 5vw;
    }
    section.products .top-card i {
        font-size: 6vw;
    }
    section.products .description .price h2 {
        font-size: 14vw;
    }
    section.products .description > a button {
        font-size: 6vw;
    }
    section.products .description > a button img {
        width: 8vw;
    }

}