.chamelo-items-wrapper {
    max-width: 500px;
    width: 100%;
    padding-bottom: 90px;

    display: flex;
    flex-direction: column;
    gap: 16px;
    justify-content: center;
    align-items: center;

}

.chamelo-item {
    position: relative;
    display: flex;
    align-items: center;
    padding: 20px;

    gap: 20px;
    width: 100%;
    background-color: #FFF;
    border-radius: 10px;
}

.chamelo-item .content {
    width: 70%;
}

.chamelo-item.out-stock {
    opacity: 0.5;
    pointer-events: none;
    user-select: none;
}

.chamelo-item.out-stock::after {
    content: "Sem estoque";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: rgba(255, 0, 0, 1);
    color: white;
    padding: 5px 10px;
    border-radius: 5px;
    font-weight: bold;
}

.chamelo-item h4.title {
    font-size: 20px;
    margin: 0;
    text-transform: capitalize !important;
}

.chamelo-item .description {
    display: flex;
}

.chamelo-item .img-product {
    width: 18%;
}

.chamelo-item .img-product img {
    width: 100%;
}

.chamelo-item .edit {
    position: absolute;
    top: 50%;
    right: 20px;
    transform: translateY(-50%);
}

.chamelo-item .edit img {
    width: 20px;
}

.chamelo-shortcode-products-wrapper {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

#chamelo-product-search {
    border: 1px solid #ccc;
    border-radius: 8px;
    transition: all .5s;
}

#chamelo-product-search:focus {
    outline: none;
    border: 1px solid #000;
}