/*
   _____                                    _
  / ____|                                  | |
 | (___  _ __   __ _  ___ ___  ___ ___   __| | ___
  \___ \| '_ \ / _` |/ __/ _ \/ __/ _ \ / _` |/ _ \
  ____) | |_) | (_| | (__  __/ (__ (_) | (_| |  __/
 |_____/| .__/ \__,_|\___\___|\___\___/ \__,_|\___|
        | |
        |_|

    ------------
    Version 0.1.21

*/

/* Shop */

/* Shop */
.shop{
    margin: -50px 0% 100px;
}

.shop h1 {
        color: #fff;
    font-weight: 700;
}

.shop__card {
    position: relative;
    background-color: #ffffff0e;
    color: #fff;
    font-weight: 700;
    height: 210px;
    border-radius: 18px;
    padding: 25px 35px;
    margin-bottom: 25px;
    border: 1px solid hsl(0, 0%, 100%, 0.035);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.product__info h1 {
    color: #fff;
    font-weight: 700;
}

.shop__card img{
    text-align: right;
    width: 200px;
}

.price__badge{
    min-width: 130px;
    background-color: var(--default);
    color: #a5a5a5;
    border-radius: 15px 15px 15px 0;
    padding: 15px;
    font-size: 14px;
    margin-top: 15px;
}

.price__badge span{
    color: var(--white);
}

@media only screen and (max-width: 1290px) {
    .shop{
        margin: 50px 4% 50px;
    }

    .shop__card img{
        text-align: right;
        width: 200px;
    }

    .price__badge{
        font-size: 13px;
    }
}