@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@400;700&family=Roboto:wght@400;500;700&display=swap');

.jj-menu-wrapper {
    font-family: 'Roboto', sans-serif;
    max-width: 800px;
    margin: 0 auto;
    color: #000;
    background-color: #fff;
    padding: 20px;
}

.jj-menu-item {
    border-bottom: 1px solid #e0e0e0;
    padding: 20px 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.jj-item-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.jj-item-title {
    font-family: 'Oswald', sans-serif;
    font-size: 24px;
    font-weight: 700;
    text-transform: uppercase;
    margin: 0;
    line-height: 1.1;
    letter-spacing: 0.5px;
}

.jj-badges {
    display: flex;
    gap: 5px;
    flex-wrap: wrap;
}

.jj-badge {
    font-size: 12px;
    font-weight: bold;
    padding: 3px 8px;
    border-radius: 4px;
    text-transform: uppercase;
    display: inline-block;
}

.jj-badge-standard {
    background-color: #000;
    color: #fff;
}

.jj-badge-new {
    background-color: #f7d117;
    color: #000;
    border: 1px solid #000;
}

.jj-item-desc {
    font-size: 16px;
    line-height: 1.4;
    color: #333;
    margin: 0;
}
.jj-item-desc p {
    margin: 0;
}

.jj-item-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 5px;
}

.jj-item-meta-left, .jj-item-meta-right {
    display: flex;
    align-items: center;
    gap: 15px;
}

.jj-allergeni {
    font-family: 'Oswald', sans-serif;
    font-size: 14px;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.jj-alcol {
    font-size: 16px;
    font-weight: bold;
    color: #000;
}

.jj-formati {
    font-size: 16px;
    font-weight: bold;
    color: #000;
}

.jj-prezzo {
    font-family: 'Oswald', sans-serif;
    font-size: 22px;
    font-weight: 700;
    color: #000;
}

/* Barra Filtri */
.jj-filter-bar {
    display: flex;
    gap: 15px;
    margin-bottom: 30px;
    overflow-x: auto;
    padding-bottom: 10px;
    border-bottom: 2px solid #000;
}

.jj-filter-btn {
    background: none;
    border: none;
    font-family: 'Oswald', sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: #999;
    cursor: pointer;
    padding: 10px;
    white-space: nowrap;
    transition: color 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.jj-filter-btn:hover {
    color: #333;
}

.jj-filter-btn.active {
    color: #000;
    border-bottom: 3px solid #000;
    padding-bottom: 5px;
}

.jj-filter-icon {
    font-size: 24px;
    margin-bottom: 5px;
}

.jj-filter-bar::-webkit-scrollbar {
    display: none;
}
.jj-filter-bar {
    -ms-overflow-style: none;
    scrollbar-width: none;
}

@media (max-width: 600px) {
    .jj-item-header {
        flex-direction: column;
        gap: 5px;
    }
    .jj-item-footer {
        flex-direction: row;
        flex-wrap: wrap;
    }
}