body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
}

.container {
    max-width: 1440px;
    margin: 0 auto;
}

/* HEADER */
.site-header {
    background: white;
    padding: 15px 0;
    text-align: center;
    border-bottom: 1px solid #ddd;
    /*position: sticky;
    top: 0;
    z-index: 150;*/
    /* sopra al resto */
}

.site-header .logo img {
    max-height: 100px;
    width: auto;
}

/* MENU ORIZZONTALE */
.menu-categories {
    position: sticky;
    top: 0;
    background: white;
    padding: 10px 0;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    z-index: 100;
}

.categories-wrapper {
    display: flex;
    overflow-x: auto;
    scrollbar-width: none;
    /* Firefox */
}

.categories-wrapper::-webkit-scrollbar {
    display: none;
}

.categories-wrapper button {
    flex: 0 0 auto;
    margin: 0 10px;
    padding: 10px 20px;
    border: none;
    background: var(--primary-bg-color);
    color: var(--primary-color);
    border-radius: 20px;
    cursor: pointer;
    transition: 0.3s;
}

.categories-wrapper button:hover {
    background: var(--primary-bg-color);
}

/* SEZIONI */
.category {
    padding: 40px 20px;
}

.category-name {
    border-bottom: 2px solid var(--secondary-bg-color);
    display: inline-block;
    padding-bottom: 5px;
}

.grid-dishes {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.dish {
    position: relative;
    background: white;
    border: 1px solid #ccc;
    border-radius: 8px;
    display: flex;
    justify-content: space-between;
    padding: 15px;
    cursor: pointer;
}

.dish-info {
    flex: 1;
    padding-right: 20px;
}

.dish-img img {
    max-width: 120px;
    border-radius: 5px;
}

.item-price {
    font-weight: bold;
}
.item-name, .item-description, .item-allergens, .item-price {
    color: var(--tertiary-color);
}

.item-allergens {
    font-size: 14px;
}

.item-allergens span {
    font-weight: bold;
}

/* MODALE */
.modal {
    display: none;
    position: fixed;
    z-index: 200;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    justify-content: center;
    align-items: center;
}

.modal-content {
    background: white;
    padding: 20px;
    border-radius: 10px;
    width: 90%;
    max-width: 500px;
    text-align: center;
    position: relative;
}

.modal-content img {
    max-width: 100%;
    border-radius: 5px;
    margin-bottom: 15px;
}

.close {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 22px;
    cursor: pointer;
}

/* RESPONSIVE */
@media (max-width: 992px) {
    .grid-dishes {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .grid-dishes {
        grid-template-columns: 1fr;
    }
}

/* FOOTER */
.site-footer {
    background: #ffffff;
    color: var(--tertiary-color);
    font-size: 15px;
}

.site-footer img {
    width: 230px;
}

.footer-social a {
    color: var(--primary-bg-color);
    margin-right: 16px;
    transition: color 0.3s;
    display: inline !important;
    float: none !important;
}

.footer-social a i {
    font-size: 24px;
}

.footer-social a:hover {
    color: var(--primary-bg-color);
}

.phone, .address {
    color: var(--tertiary-color);
}

.footer-bottom {
    padding: 20px 20px;
}

.footer-bottom-boxed {
    max-width: 1440px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    text-align: center;
    color: var(--tertiary-color);
    font-size: 16px;
    border-top: 1px solid var(--secondary-bg-color);
    padding-top: 10px;
}

.footer-bottom-content {
    max-width: 768px;
    margin: 0 auto;
}

.footer-bottom-boxed .footer-bottom-content div {
    float: left;
    margin-right: 14px;
    font-size: 15px;
    margin-top: 8px;
}

.footer-bottom-boxed a {
    color: var(--primary-bg-color);
}

.iub__us-widget {
    display: none !important;
}
@media (max-width: 650px) {
    .footer-bottom-boxed .footer-bottom-content div {
        float: none;
    }
}