.card_shelf {
    background-color: #fff;
    position: fixed;
    bottom: -125%;
    height: 100%;
    z-index: 10;
    right: 0;
    left: 0;
    box-shadow: 0px 2px 13px rgb(0 0 0 / 74%);
}

.card_shelf .img_card_shelf {}

.card_shelf .img_card_shelf img {
    max-width: 180px;
    width: 100%;
    margin: 0 auto;
    display: block;
}

.card_shelf .name_card_shelf {}

.card_shelf .name_card_shelf h2 {
    text-align: center;
    font-size: 21px;
    margin-top: 0px;
    margin-bottom: 0px;
}

.card_shelf .skus_variations_card_shelf {
    display: flex;
    flex-wrap: wrap; /* Permite que os itens quebrem para a próxima linha */
    gap: 10px 5px; /* Adiciona um espaçamento consistente entre os itens */
    width: 85%;
    margin: 0 auto;
    padding: 0 0px; /* Evita que os SKUs colem nas bordas laterais */
    box-sizing: border-box;
    border: none;
    margin-bottom: 25px;
    border-radius: 5px;
    justify-content: center;
}

.card_shelf .skus_variations_card_shelf p.sku-item {
    border: 1px solid #ccc;
    padding: 8px 7px;
    margin: 0 3px;
    width: auto;
    font-size: 18px;
}

.card_shelf .name_card_shelf .btn {}

.card_shelf .btn button {
    display: block;
    margin: 0px auto;
    max-width: 264px;
    height: 45px;
    width: 100%;
    background-color: #000;
    border: none;
    color: #fff;
    font-size: 16px;
    font-weight: bold;
    text-transform: uppercase;
    box-shadow: 0px 4px 15px rgb(0 0 0 / 76%);
}



section.modal_shelf_mob {}

section.modal_shelf_mob .blackBackground_modal_shelf_mob {
    background: rgb(0 0 0 / 77%);
    position: fixed;
    top: -135%;
    width: 100%;
    height: 100%;
    z-index: 10;
}

section.modal_shelf_mob.open {}

.section.modal_shelf_mob.open  .blackBackground_modal_shelf_mob {}

section.modal_shelf_mob.open .card_shelf {
    bottom: -22%;
    transition: 200ms;
}

section.modal_shelf_mob.open .blackBackground_modal_shelf_mob {
    top: 0;
    transition: 200ms;
}

.card_shelf .name_card_shelf h2 p {}

.card_shelf .name_card_shelf .price_card_shelf {}

.card_shelf .price_card_shelf p {
    display: block;
    text-align: center;
    margin-bottom: 9px;
    font-size: 21px;
    font-weight: bold;
    margin-top: 10px;
}

.closeModalShelf {
    position: absolute;
    right: 3px;
    top: -20px;
    font-size: 55px;
    transform: rotate(45deg);
    padding: 24px;
}

.card_shelf .price_card_shelf span {
    display: block;
    text-align: center;
    margin-top: 5px;
    margin-bottom: 22px;
    font-size: 19px;
    color: #666;
}

p.sku-item.selected {
    background-color: #000;
    color: #fff;
}

p.sku-item.indisponivel {
    text-decoration: line-through;
    background-color: #edeaea;
}