
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* old */
.shop-wrapper {
    padding: 10px 10px;
}

.shop-header {
    color: red;
}

.shop-catalog {

    width: 100%;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;

}
.shop-catalog > div {
    flex: 40%;

}
.catalog-item {
    display: flex;
    flex-direction: column;
    gap: 5px;

}
.item-image {
    background-color: aquamarine;
    width: 100%;
    aspect-ratio: 1/1.5;
    border-radius: 16px;

}
.item-description {
    color: #A1A6AD;
    font-size: 4vw;
}

.item-button {
    width: 100%;
    height: 3vh;
    background-color: #3686FF;
    border-radius: 6px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
}

.product-list {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 10px;
}
.product {
    border: 1px solid red;
    border-radius: 16px;
    padding: 10px;
    width: 100%;
    max-width: 300px;
    max-height: 400px;
    min-height: 400px;
}

/* main */
.container-wrapper {

}

/* Bottom menu */
.bottom-menu {
    display: none;
}
@media screen and (max-width: 768px) {
    .bottom-menu {
        position: fixed;
        bottom: 4px;
        width: 100%;
        z-index: 10;
        display: flex;
        justify-content: center;
        align-items: center;
    }
    .menu-bg {
        width: 85%;
        filter: drop-shadow(0px 0px 22px rgba(0, 0, 0, 0.17));
    }
}


