    body {
        background-color: #f4f4f4!important;
    }
    .today-menu p {
    line-height: 18px;
}     
    .today-menu.max-768 {
                margin: 0 auto;
                max-width: 768px;
            }
            /* HOME PAGE STYLES */
           .today-menu .home-page {
                display: flex;
                flex-direction: column;
                min-height: 100vh;
                background: #f4f4f4;
                color: white;
                text-align: center;
                padding: 20px;
            }

            .today-menu .home-header {
                margin-bottom: 30px;
                display: flex;
                justify-content: center;
            }
            .today-menu .home-header img {
                width: 300px;
                /* height: 150px; */
            }
            .today-menu .logo {
                width: 150px;
                height: 150px;
                margin: 0 auto 20px;
                background: white;
                border-radius: 50%;
                display: flex;
                align-items: center;
                justify-content: center;
                font-size: 60px;
                color: #667eea;
                box-shadow: 0 10px 30px rgba(0,0,0,0.3);
            }

            .today-menu .restaurant-name {
                font-size: 48px;
                font-weight: 700;
                margin-bottom: 10px;
                text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
            }

            .today-menu .restaurant-subtitle {
                font-size: 18px;
                opacity: 0.9;
                font-weight: 300;
            }

            .today-menu .menu-categories {
                display: grid;
                gap: 20px;
                max-width: 800px;
                width: 100%;
                margin: 0 auto;
            }

            .today-menu .category-card {
                /* border: 2px solid rgba(255,255,255,0.2); */
                border-radius: 15px;
                padding: 0;
                cursor: pointer;
                transition: all 0.3s ease;
                backdrop-filter: blur(10px);
                display: flex;
                align-items: center;
                overflow: hidden;
                min-height: 120px;
                background-color: #fff;
                box-shadow: 0 15px 40px rgba(0,0,0,0.2);
            }

            /* .category-card:hover {
                box-shadow: 0 15px 40px rgba(0,0,0,0.2);
                filter: brightness(1.1);
            } */

            .today-menu .category-image {
                width: 120px;
                height: 120px;
                flex-shrink: 0;
                background: rgba(255,255,255,0.1);
                display: flex;
                align-items: center;
                justify-content: center;
                overflow: hidden;
                background-position: center;
                background-size: cover;
            }

            .today-menu .category-image img {
                width: 100%;
                height: 100%;
                object-fit: cover;
            }

            .today-menu .category-image.no-image {
                font-size: 40px;
                color: rgba(255,255,255,0.7);
            }

            .today-menu .category-content {
                flex: 1;
                padding: 20px;
                display: flex;
                flex-direction: column;
                justify-content: center;
                text-align: start;
            }

            .today-menu .category-title {
                font-size: 22px;
                font-weight: 600;
                margin-bottom: 5px;
            }

            .today-menu .category-description {
                font-size: 14px;
                opacity: 0.8;
                line-height: 1.4;
            }

            /* MENU PAGE STYLES */
            .today-menu .menu-page {
                display: none;
                background: white;
            }

            .today-menu .menu-page.active {
                display: block;
            }

            .today-menu .menu-header {
                color: white;
                padding: 20px;
                position: sticky;
                top: 0;
                z-index: 100;
                background-color: #fff;
            }

            .today-menu .menu-nav {
                display: flex;
                justify-content: space-between;
                align-items: center;
            }

            .today-menu .back-btn {
                background: rgba(255,255,255,0.2);
                border: none;
                color: white;
                padding: 0px;
                border-radius: 8px;
                cursor: pointer;
                font-size: 16px;
                transition: background 0.2s ease;
            }
            .today-menu .back-btn img {
                height: 50px;
            }
            .today-menu .back-btn-vuoto img {
                height: 50px;
                width: 50px;
            }
            
            .today-menu .menu-title {
                font-size: 28px;
                font-weight: 700;
                text-align: center;
                flex: 1;
                color: #333;
                margin: 0 20px;
            }

            .today-menu .menu-grid {
                background-color: #f4f4f4;
                padding: 20px;
                padding-bottom: 100px;
                /* min-height: calc(100vh - 95px); */
            }

            .today-menu .pizza-item {
                background: white;
                border-radius: 12px;
                box-shadow: 0 2px 8px rgba(0,0,0,0.1);
                margin-bottom: 15px;
                overflow: hidden;
                transition: opacity 0.3s ease, transform 0.3s ease;
            }

            .today-menu .pizza-item.filtered-out {
                display: none!important;
            }

            .today-menu .pizza-image {
                width: 100%;
                height: 120px;
                background: linear-gradient(45deg, #f1f2f6, #ddd);
                display: flex;
                align-items: center;
                justify-content: center;
                font-size: 40px;
                position: relative;
                overflow: hidden;
                cursor: pointer;
                transition: transform 0.2s ease;
            }

            .today-menu .pizza-image img {
                width: 100%;
                height: 100%;
                object-fit: cover;
            }

            .today-menu .pizza-image.no-image {
                background: #f8f9fa;
                color: #6c757d;
                font-size: 24px;
                display: flex;
                flex-direction: column;
                align-items: center;
                justify-content: center;
                gap: 8px;
            }

            .today-menu .pizza-image.no-image .icon {
                font-size: 40px;
            }

            .today-menu .pizza-image.no-image .text {
                font-size: 12px;
                text-align: center;
            }

            .today-menu .pizza-content {
                padding: 15px;
            }

            .today-menu .pizza-content.clickable-content {
                cursor: pointer;
                transition: background-color 0.2s ease;
            }

            .today-menu .pizza-content.clickable-content:hover {
                background-color: #f8f9fa;
            }

            .today-menu .pizza-header {
                display: flex;
                justify-content: space-between;
                align-items: flex-start;
                margin-bottom: 3px;
            }

            .today-menu .pizza-name {
                font-size: 18px;
                font-weight: 600;
                color: #2c3e50;
                flex: 1;
            }

            .today-menu .pizza-price {
                font-size: 20px;
                font-weight: 700;
                color: rgb(0, 90, 20);
                margin-left: 10px;
            }

            .today-menu .pizza-description {
                color: #7f8c8d;
                font-size: 14px;
                line-height: 1.4;
                margin-bottom: 10px;
                font-weight: 400;
                letter-spacing: -1px;
            }

            .today-menu .pizza-info {
                display: flex;
                gap: 8px;
                flex-wrap: wrap;
                align-items: center;
            }

            .today-menu .info-tag {
                color: #2980b9;
                padding: 4px 8px;
                border-radius: 6px;
                font-size: 11px;
                font-weight: 500;
                
            }

            .today-menu .info-tag.allergen {
                color: #e67e22;
                padding: 0px;
                display: flex;
                align-items: center;
                justify-content: center;
            }

            .today-menu .info-tag.allergen img {
                width: 30px;
                height: 30px;
                max-width: 50px;
                max-height: 50px;
                object-fit: contain;
            }

            .today-menu .info-tag.frozen {
                color: #3498db;
                padding: 0px;
                display: flex;
                align-items: center;
                justify-content: center;
            }

            .today-menu .info-tag.frozen img {
                width: 30px;
                height: 30px;
                object-fit: contain;
            }

            .today-menu .section-divider {
                margin: 46px 20px 26px 20px;
                text-align: center;
                position: relative;
            }

            .today-menu .section-title {
                background: white;
                color: #ffffff;
                font-size: 16px;
                font-weight: 700;
                text-transform: uppercase;
                letter-spacing: 1px;
                border-radius: 50px;
                padding: 6px 20px;
            }

            /* Modal styles */
            .today-menu .modal-overlay {
                position: fixed;
                top: 0;
                left: 0;
                width: 100%;
                height: 100%;
                background: rgba(0, 0, 0, 0.9);
                display: flex;
                align-items: center;
                justify-content: center;
                z-index: 1000;
                opacity: 0;
                visibility: hidden;
                transition: opacity 0.3s ease, visibility 0.3s ease;
            }

            .today-menu .modal-overlay.active {
                opacity: 1;
                visibility: visible;
            }

            .today-menu .modal-content {
                position: relative;
                width: calc(100% - 40px);
                height: calc(100% - 40px);
                background: white;
                border-radius: 16px;
                overflow: hidden;
                box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
                transform: scale(0.8);
                transition: transform 0.3s ease;
                max-width: 768px;
                margin: 0 auto;
            }

            .today-menu .modal-overlay.active .modal-content {
                transform: scale(1);
            }

            .today-menu .modal-header {
                position: absolute;
                top: 0;
                left: 0;
                right: 0;
                padding: 20px;
                color: white;
                z-index: 10;
            }

            .today-menu .modal-close {
                position: absolute;
                top: 15px;
                right: 15px;
                background: none;
                border: none;
                color: white;
                font-size: 24px;
                cursor: pointer;
                width: 40px;
                height: 40px;
                display: flex;
                align-items: center;
                justify-content: center;
                border-radius: 50%;
                background: rgba(0, 0, 0, 0.1);
                transition: background 0.2s ease;
            }

            .today-menu .modal-close:hover {
                background: rgba(255, 255, 255, 0.3);
            }

            .today-menu .modal-image {
                width: 100%;
                height: 100%;
                object-fit: cover;
                display: block;
            }

            .today-menu .modal-placeholder {
                width: 100%;
                height: 100%;
                background: #f8f9fa;
                display: flex;
                flex-direction: column;
                align-items: center;
                justify-content: center;
                color: #6c757d;
                font-size: 48px;
                gap: 16px;
            }

            .today-menu .modal-placeholder .text {
                font-size: 18px;
                font-weight: 500;
            }

           .today-menu .modal-pizza-extended-description {
                margin-top: 10px;

            }

            .today-menu .extended-description {
                color: #666;
                font-size: 0.9em;
                line-height: 1.5;
                margin: 0;
                font-style: italic;
                margin-bottom: 20px;
            }   
            .today-menu .modal-info {
                padding: 40px 20px;
            }

            .today-menu .modal-pizza-name {
                font-size: 24px;
                font-weight: 700;
                color: #2c3e50;
                margin-bottom: 8px;
            }

            .today-menu .modal-pizza-price {
                font-size: 22px;
                font-weight: 700;
                color: rgb(0, 90, 20);
                margin-bottom: 12px;
            }

            .today-menu .modal-pizza-description {
                color: #7f8c8d;
                font-size: 16px;
                line-height: 1.6;
                margin-bottom: 15px;
                font-weight: 400;
                letter-spacing: -1px;
            }

            .today-menu .modal-pizza-tags {
                display: flex;
                gap: 8px;
                flex-wrap: wrap;
                align-items: center;
            }

            .today-menu .modal-pizza-tags .info-tag {
                font-size: 15px;
                padding: 0px;
            }

            .today-menu .modal-pizza-tags .info-tag.allergen {
                padding: 0 10px 0 0;
                display: flex;
                align-items: center;
                gap: 6px;
            }

            .today-menu .modal-pizza-tags .info-tag.allergen img {
                width: 30px;
                height: 30px;
                max-width: 50px;
                max-height: 50px;
                object-fit: contain;
            }

            .today-menu .modal-pizza-tags .info-tag.frozen {
                padding: 0px;
                display: flex;
                align-items: center;
                gap: 6px;
            }

            .today-menu .modal-pizza-tags .info-tag.frozen img {
                width: 30px;
                height: 30px;
                object-fit: contain;
            }

            .today-menu .modal-nav {
                position: fixed;
                top: 50%;
                transform: translateY(-50%);
                background: #ececec;
                border: none;
                width: 50px;
                height: 50px;
                border-radius: 50%;
                display: flex;
                align-items: center;
                justify-content: center;
                cursor: pointer;
                font-size: 20px;
                color: #2c3e50;
                transition: background 0.2s ease, transform 0.2s ease;
                z-index: 10;
            }
            #modalImageContainer {
                height: 50%;
            }

            .modal-nav.prev {
                left: 20px;
            }

            .modal-nav.next {
                right: 20px;
            }

            .modal-nav:disabled {
                opacity: 0;
                cursor: not-allowed;
            }

            .modal-nav:disabled:hover {
                background: rgba(255, 255, 255, 0.9);
                transform: translateY(-50%) scale(1);
                opacity: 0;
            }

            .modal-counter {
                position: absolute;
                bottom: 20px;
                left: 50%;
                transform: translateX(-50%);
                background: rgba(0, 0, 0, 0.7);
                color: white;
                padding: 8px 16px;
                border-radius: 20px;
                font-size: 12px;
                z-index: 10;
            }

            /* FILTRI ALLERGENI */
            .allergen-filter-btn {
                position: fixed;
                bottom: 20px;
                right: 20px;
                width: 60px;
                height: 60px;
                background: #e74c3c;
                border: none;
                border-radius: 50%;
                color: white;
                font-size: 24px;
                cursor: pointer;
                box-shadow: 0 4px 12px rgba(231, 76, 60, 0.3);
                transition: all 0.3s ease;
                z-index: 999;
                display: flex;
                align-items: center;
                justify-content: center;
            }

            .allergen-filter-btn:hover {
                background: #c0392b;
                transform: scale(1.1);
            }

            .allergen-filter-btn.active {
                background: #27ae60;
            }

            .allergen-filter-btn.active:hover {
                background: #229954;
            }

            /* BOTTONE FILTRI ATTIVI */
            .active-filters-btn {
                position: fixed;
                bottom: 20px;
                right: 20px;
                background: #27ae60;
                border: none;
                border-radius: 75px;
                color: white;
                font-size: 16px;
                font-weight: 600;
                cursor: pointer;
                box-shadow: 0 4px 12px rgba(39, 174, 96, 0.3);
                transition: all 0.3s ease;
                z-index: 999;
                display: none;
                align-items: center;
                gap: 10px;
                padding: 0px 0px 0px 20px;
            }

            .active-filters-btn.visible {
                display: flex;
            }

            .active-filters-btn:hover {
                background: #229954;
                transform: translateY(-2px);
                box-shadow: 0 6px 16px rgba(39, 174, 96, 0.4);
            }

            .active-filters-btn .btn-text {
                font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
            }

            .active-filters-btn img {
                height: 50px;
                width: 50px;
            }

            /* NUOVO BOTTONE ALLERGENI HOME */
            .home-allergen-btn {
                background: #e74c3c;
                color: white;
                border: none;
                padding: 5px 25px;
                border-radius: 10px;
                font-size: 15px;
                font-weight: 600;
                cursor: pointer;
                margin-top: 20px;
                display: flex;
                align-items: center;
                justify-content: space-evenly;
                gap: 10px;
                transition: all 0.3s ease;
                box-shadow: 0 4px 12px rgba(231, 76, 60, 0.3);
                width: 100%;
                max-width: 400px;
                margin: 0px auto 0;
            }

            .home-allergen-btn:hover {
                background: #c0392b;
                transform: translateY(-2px);
                box-shadow: 0 6px 16px rgba(231, 76, 60, 0.4);
            }

            .home-allergen-btn:active {
                transform: translateY(0);
            }

            .home-allergen-btn svg {
                width: 20px;
                height: 20px;
            }

            .allergen-panel {
                position: fixed;
                top: 0;
                right: -100%;
                width: 100%;
                max-width: 400px;
                height: 100%;
                background: white;
                box-shadow: -4px 0 20px rgba(0, 0, 0, 0.1);
                transition: right 0.3s ease;
                z-index: 1001;
                overflow-y: auto;
            }

            .allergen-panel.open {
                right: 0;
            }

            .allergen-panel-header {
                background: #26ae60;
                    color: white;
                    padding: 20px;
                    position: sticky;
                    top: 0;
                    z-index: 10;
                    display: fle;
                    gap: 10px;
                    align-items: center;
                    justify-content: space-between  ;
                    display: flex;
                }
            

            .allergen-panel-title {
                font-size: 20px;
                font-weight: 700;
                margin: 0;
                display: flex;
                align-items: center;
                gap: 10px;
                color: #ffffff;
                text-align: center;
            }
            .allergen-panel-header img {
                height: 50px;
                width: 50px;
            }
            .allergen-panel-close {
                position: relative;
                background: none;
                border: none;
                color: white;
                font-size: 24px;
                cursor: pointer;
                width: 50px;
                height: 50px;
                display: flex;
                align-items: center;
                justify-content: center;
                transition: background 0.2s ease;
            }

            .allergen-panel-content {
                padding: 20px 20px 0px 20px;
            }
             .no-allergen {
                text-align: center;
                height: 75px;
                display: flex;
                justify-content: center;
                align-items: center;
                border-top: 2px solid #e74c3c;
            }

             .no-allergen p {
                font-size: 14px;
            }
            .allergen-item {
                display: flex;
                align-items: center;
                gap: 15px;
                padding: 15px;
                margin-bottom: 10px;
                background: #f8f9fa;
                border-radius: 12px;
                cursor: pointer;
                transition: all 0.2s ease;
                border: 2px solid transparent;
            }

            .allergen-item.active {
                background: #fff3cd;
                border-color: #ffc107;
            }

            .allergen-icon {
                width: 50px;
                height: 50px;
                display: flex;
                align-items: center;
                justify-content: center;
                flex-shrink: 0;
                font-size: 20px;
            }

            .allergen-icon img {
                max-width: 50px;
                max-height: 50px;
                object-fit: contain;
            }

            .allergen-info {
                flex: 1;
            }

            .allergen-name {
                font-size: 16px;
                font-weight: 600;
                color: #2c3e50;
                margin: 0 0 5px 0;
            }

            .allergen-description {
                font-size: 13px;
                color: #000;
                line-height: 1.4;
                margin: 0;
                font-weight: 400;
            }

            .allergen-toggle {
                width: 20px;
                height: 20px;
                border: 2px solid #dee2e6;
                border-radius: 4px;
                position: relative;
                flex-shrink: 0;
                margin-top: 2px;
                transition: all 0.2s ease;
                background-color: #fff;
            }

            .allergen-item.active .allergen-toggle {
                background: #ffc107;
                border-color: #ffc107;
            }

            .allergen-toggle::after {
                content: '';
                position: absolute;
                top: 50%;
                left: 50%;
                transform: translate(-50%, -50%) scale(0);
                width: 6px;
                height: 10px;
                border: 2px solid white;
                border-top: none;
                border-left: none;
                transform: translate(-50%, -60%) rotate(45deg) scale(0);
                transition: transform 0.2s ease;
            }

            .allergen-item.active .allergen-toggle::after {
                transform: translate(-50%, -60%) rotate(45deg) scale(1);
            }

            .today-menu .allergen-overlay {
                position: fixed;
                top: 0;
                left: 0;
                width: 100%;
                height: 100%;
                background: rgba(0, 0, 0, 0.5);
                z-index: 1000;
                opacity: 0;
                visibility: hidden;
                transition: opacity 0.3s ease, visibility 0.3s ease;
            }

            .today-menu .allergen-overlay.active {
                opacity: 1;
                visibility: visible;
            }

            /* Banner di avviso filtri attivi */
            .today-menu .filter-warning {
                background: #fff3cd;
                border: 1px solid #ffc107;
                color: #856404;
                padding: 15px 20px;
                font-size: 16px;
                font-weight: 600;
                text-align: center;
                display: none;
                position: sticky;
                top: 0;
                z-index: 99;
                margin-top: -1px;
                cursor: pointer;
                transition: background-color 0.2s ease;
            }

            .today-menu .filter-warning:hover {
                background: #ffeaa7;
            }

            .today-menu .filter-warning.active {
                display: block;
            }

            /* Fascia bottom con bottoni */
            .today-menu .filter-bottom-bar {
                position: fixed;
                bottom: 0;
                left: 0;
                right: 0;
                background: white;
                border-top: 2px solid #e74c3c;
                padding: 15px 20px;
                display: none;
                z-index: 1002;
                box-shadow: 0 -4px 12px rgba(0,0,0,0.1);
            }

            .today-menu .filter-bottom-bar.active {
                display: block;
            }

            .today-menu .filter-bottom-buttons {
                display: flex;
                gap: 15px;
                max-width: 400px;
                margin: 0 auto;
            }

            .today-menu .filter-bottom-btn {
                flex: 1;
                padding: 12px 20px;
                border: none;
                border-radius: 8px;
                font-size: 16px;
                font-weight: 600;
                cursor: pointer;
                transition: all 0.2s ease;
            }

            .today-menu .filter-clear-btn {
                background: #6c757d;
                color: white;
            }

            .today-menu .filter-clear-btn:hover {
                background: #5a6268;
            }

            .today-menu .filter-save-btn {
                background: #27ae60;
                color: white;
            }

            .today-menu .filter-save-btn:hover {
                background: #229954;
            }
            .today-menu .contenitore-info-allergeni {
                padding: 20px 20px 40px 20px;
            }
            .today-menu .allergen-panel-info {
                padding: 15px 20px;
                background: #26ae6014;
                margin: 0 0 20px 0;
                border-radius: 12px;
                border: 2px solid #26ae60;
            }
            .today-menu .allergen-panel-info p {
                font-size: 14px;
                letter-spacing: 0;
                font-weight: 400;
                color: #26ae60;
                margin: 0;
                line-height: 18px;
            }
            .today-menu .home-allergen-btn img {
                height: 50px;
            }
            .today-menu .allergen-filter-btn img {
                height: 50px;
            }
            .today-menu .advise-aller {
                font-size: 13px;
                letter-spacing: 0;
                color: #333;
                background: #f4f4f4;
                margin-bottom: 40px;
                text-align: center;
            }
                .today-menu .restaurant-name {
                    font-size: 32px;
                }

                .today-menu .menu-categories {
                    grid-template-columns: 1fr;
                }

                .today-menu .category-card {
                    min-height: 100px;
                }

                .today-menu .category-image {
                height: 100%;
                aspect-ratio: 1 / 1;
                }

                .today-menu .category-content {
                    padding: 15px;
                }

                .today-menu .category-title {
                    font-size: 18px;
                }

                .today-menu .category-description {
                    font-size: 14px;
                    font-weight: 400;
                }
                
                .modal-image, .modal-placeholder {
                    height: 100%;
                }
                
                .today-menu .today-menu .modal-nav {
                    width: 40px;
                    height: 40px;
                    font-size: 18px;
                }
                
                .today-menu .modal-nav.prev {
                    left: 10px;
                }
                
                .today-menu .modal-nav.next {
                    right: 10px;
                }

                .today-menu .allergen-panel {
                    width: 100%;
                    max-width: none;
                }

                .today-menu .allergen-filter-btn {
                    width: 50px;
                    height: 50px;
                    font-size: 20px;
                }

                .today-menu .home-allergen-btn {
                    padding: 5px 25px;
                    font-size: 15px;
                }

                .today-menu .home-allergen-btn svg {
                    width: 18px;
                    height: 18px;
                }

                 .today-menu .accordion-group {
    background: white;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    margin-bottom: 15px;
    overflow: hidden;
}

 .today-menu .accordion-header {
    padding: 20px;
    background: #f8f9fa;
    border-bottom: 1px solid #dee2e6;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: all 0.2s ease;
}

 .today-menu .accordion-header.active {
    background: #e3f2fd;
    border-bottom-color: #2196f3;
}

 .today-menu .accordion-title-info {
    display: flex;
    align-items: center;
    gap: 12px;
    flex: 1;
}

 .today-menu .accordion-icon {
    font-size: 24px;
}

 .today-menu .accordion-title {
    font-size: 20px;
    font-weight: 600;
    color: #2c3e50;
    margin: 0;
}

 .today-menu .accordion-subtitle {
    font-size: 14px;
    color: #6c757d;
    margin: 2px 0 0 0;
}

 .today-menu .accordion-toggle {
    font-size: 20px;
    color: #6c757d;
    transition: transform 0.2s ease;
}

 .today-menu .accordion-header.active .accordion-toggle {
    transform: rotate(180deg);
}

 .today-menu .accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

 .today-menu .accordion-content.active {
    max-height: 2000px;
    background-color: #e3f2fd;

}

 .today-menu .accordion-body {
    padding: 0 20px;
}

 .today-menu .accordion-content.active .pizza-item:last-child {
    /* margin-bottom: 0; */
}
.scroll-wrapper {
    max-height: calc(1.5em * 4);
    overflow-y: scroll !important;
    overscroll-behavior: contain;
    touch-action: pan-y;
    line-height: 1.5;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
}

.scroll-wrapper .extended-description {
    margin: 0 !important;
    padding: 0 !important;
}

/* LANGUAGE SELECTOR STYLES */
.language-selector {
    position: absolute;
    top: 20px;
    right: 20px;
    z-index: 100;
    font-family: inherit;
}

.language-selector-header {
    position: relative;
}

.current-language {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    padding: 8px 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    color: #2c3e50;
    font-weight: 600;
    font-size: 14px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.current-language:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
}

.flag-icon {
    font-size: 18px;
    line-height: 1;
}

.language-name {
    font-size: 14px;
    white-space: nowrap;
}

.dropdown-arrow {
    font-size: 12px;
    color: #6c757d;
    transition: transform 0.2s ease;
}

.language-selector.open .dropdown-arrow {
    transform: rotate(180deg);
}

.language-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    border-radius: 10px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    margin-top: 5px;
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.1);
}

.language-selector.open .language-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.language-option {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 15px;
    cursor: pointer;
    transition: background-color 0.2s ease;
    color: #2c3e50;
    font-weight: 500;
}

.language-option:hover {
    background-color: #f8f9fa;
}

.language-option:not(:last-child) {
    border-bottom: 1px solid #e9ecef;
}

.language-option.active {
    background-color: #e3f2fd;
    color: #1976d2;
    font-weight: 600;
}

/* Mobile responsive */
@media (max-width: 768px) {
    .language-selector {
        top: 15px;
        right: 15px;
    }
    
    .current-language {
        padding: 6px 10px;
        font-size: 13px;
    }
    
    .flag-icon {
        font-size: 16px;
    }
    
    .language-name {
        font-size: 13px;
    }
    
    .language-option {
        padding: 10px 12px;
        font-size: 13px;
    }
}

/* Stile per quando il selettore è nella homepage */
.home-page .language-selector {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 1000;
}

/* Stile per quando il selettore è nelle pagine menu */
.menu-page .language-selector {
    position: absolute;
    top: 15px;
    right: 15px;
}

/* Animazione di fade per il cambio lingua */
.language-transition {
    opacity: 0;
    transition: opacity 0.3s ease;
}

.language-transition.loaded {
    opacity: 1;
}

/* LAYOUT ORIZZONTALE - Foto a sinistra, testo a destra */
.today-menu .pizza-item.horizontal-layout {
    display: flex;
    align-items: stretch;
    min-height: 120px;
}

.today-menu .pizza-item.horizontal-layout .pizza-image {
    width: 120px;
    min-width: 120px;
    height: auto;
    min-height: 120px;
    flex-shrink: 0;
    border-radius: 12px 0 0 12px;
}

.today-menu .pizza-item.horizontal-layout .pizza-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 15px 20px;
}

.today-menu .pizza-item.horizontal-layout .pizza-header {
    margin-bottom: 8px;
}

.today-menu .pizza-item.horizontal-layout .pizza-name {
    font-size: 17px;
    line-height: 1.3;
}

.today-menu .pizza-item.horizontal-layout .pizza-price {
    font-size: 18px;
    white-space: nowrap;
}

.today-menu .pizza-item.horizontal-layout .pizza-description {
    font-size: 13px;
    line-height: 1.4;
    margin-bottom: 8px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.today-menu .pizza-item.horizontal-layout .pizza-info {
    margin-top: auto;
}

.today-menu .accordion-content.active .pizza-item.horizontal-layout {
    margin-bottom: 15px;
}

.today-menu .accordion-body .pizza-item.horizontal-layout:last-child {
    margin-bottom: 0;
}

.today-menu .pizza-item.horizontal-layout .pizza-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 0;
}

.today-menu .pizza-item.horizontal-layout .pizza-image.no-image {
    background: #f8f9fa;
    color: #6c757d;
    font-size: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
}

.today-menu .pizza-item.horizontal-layout .pizza-image.no-image .icon {
    font-size: 32px;
}

.today-menu .pizza-item.horizontal-layout .pizza-image.no-image .text {
    font-size: 10px;
    text-align: center;
    line-height: 1.2;
}

@media (max-width: 480px) {
    .today-menu .pizza-item.horizontal-layout .pizza-image {
        width: 100px;
        min-width: 100px;
        min-height: 100px;
    }
    
    .today-menu .pizza-item.horizontal-layout .pizza-content {
        padding: 12px 15px;
    }
    
    .today-menu .pizza-item.horizontal-layout .pizza-name {
        font-size: 16px;
    }
    
    .today-menu .pizza-item.horizontal-layout .pizza-price {
        font-size: 17px;
    }
    
    .today-menu .pizza-item.horizontal-layout .pizza-description {
        font-size: 12px;
        -webkit-line-clamp: 2;
    }
}

@media (max-width: 768px) and (min-width: 481px) {
    .today-menu .pizza-item.horizontal-layout .pizza-image {
        width: 110px;
        min-width: 110px;
        min-height: 110px;
    }
    
    .today-menu .pizza-item.horizontal-layout .pizza-content {
        padding: 13px 18px;
    }
    
    .today-menu .pizza-item.horizontal-layout .pizza-name {
        font-size: 16.5px;
    }
    
    .today-menu .pizza-item.horizontal-layout .pizza-description {
        font-size: 12.5px;
    }
}
/* ========================================
   CSS PREZZI FLESSIBILI - Etichette configurabili
   ========================================
   Aggiungere questo CSS al file style.css (sostituisce il CSS prezzi precedente)
*/

/* Container prezzi multipli - Menu normale */
.today-menu .wine-prices {
    display: flex;
    flex-direction: column;
    gap: 4px;
    align-items: flex-end;
    margin-left: 10px;
}

/* Singolo elemento prezzo */
.today-menu .wine-price-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
}

/* Etichetta prezzo (Calice, 0,33 cl, Singolo, ecc.) */
.today-menu .wine-price-item .price-label {
    color: #6c757d;
    font-size: 12px;
    font-weight: 500;
    min-width: 50px;
    text-align: right;
}

/* Valore prezzo */
.today-menu .wine-price-item .price-value {
    color: rgb(0, 90, 20);
    font-weight: 700;
    font-size: 15px;
    min-width: 55px;
    text-align: right;
}

/* Layout orizzontale per prodotti con prezzi multipli */
.today-menu .pizza-item.horizontal-layout .wine-prices {
    margin-left: 0;
    margin-top: auto;
    align-items: flex-start;
}

.today-menu .pizza-item.horizontal-layout .wine-price-item .price-label {
    text-align: left;
    min-width: 60px;
}

.today-menu .pizza-item.horizontal-layout .wine-price-item .price-value {
    text-align: right;
}

/* ========================================
   MODAL - Prezzi nel popup
   ======================================== */

/* Container prezzi multipli nel modal */
.today-menu .modal-wine-prices {
    display: flex;
    flex-direction: column;
    gap: 6px;
    align-items: flex-start;
    margin-left: 0;
}

.today-menu .modal-wine-prices .wine-price-item {
    font-size: 16px;
    gap: 10px;
}

.today-menu .modal-wine-prices .wine-price-item .price-label {
    font-size: 14px;
    min-width: 70px;
    text-align: right;
    color: #7f8c8d;
}

.today-menu .modal-wine-prices .wine-price-item .price-value {
    font-size: 18px;
    font-weight: 700;
    color: rgb(0, 90, 20);
    text-align: right;
}

/* Assicura che il container modal price sia flessibile */
.today-menu .modal-pizza-price {
    display: flex;
    flex-direction: column;
}

/* ========================================
   RESPONSIVE DESIGN - Mobile
   ======================================== */
@media (max-width: 480px) {
    .today-menu .wine-price-item {
        font-size: 13px;
        gap: 6px;
    }
    
    .today-menu .wine-price-item .price-label {
        font-size: 11px;
        min-width: 45px;
    }
    
    .today-menu .wine-price-item .price-value {
        font-size: 14px;
        min-width: 50px;
    }
    
    /* Layout orizzontale mobile */
    .today-menu .pizza-item.horizontal-layout .wine-price-item .price-label {
        min-width: 50px;
    }
    
    /* Modal mobile */
    .today-menu .modal-wine-prices .wine-price-item {
        font-size: 15px;
        gap: 8px;
    }
    
    .today-menu .modal-wine-prices .wine-price-item .price-label {
        font-size: 13px;
        min-width: 60px;
    }
    
    .today-menu .modal-wine-prices .wine-price-item .price-value {
        font-size: 16px;
    }
}

/* ========================================
   TABLET - Layout intermedio
   ======================================== */
@media (max-width: 768px) and (min-width: 481px) {
    .today-menu .wine-price-item .price-label {
        min-width: 55px;
    }
    
    .today-menu .modal-wine-prices .wine-price-item .price-label {
        min-width: 65px;
    }
}


/* ========================================
   CSS MENU A 3 LIVELLI - Aggiungere alla fine di style.css
   ======================================== */

/* HOMEPAGE - Titolo scelta menu */
.today-menu .menu-types-title {
    font-size: 24px;
    font-weight: 700;
    color: #2c3e50;
    text-align: center;
    margin-bottom: 30px;
    padding: 0 20px;
}

/* MENU TYPES CARDS - Simili alle category cards */
.today-menu .menu-types {
    display: grid;
    gap: 20px;
    max-width: 800px;
    width: 100%;
    margin: 0 auto;
}

.today-menu .menu-type-card {
    border-radius: 15px;
    padding: 0;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    overflow: hidden;
    min-height: 120px;
    background-color: #fff;
    box-shadow: 0 15px 40px rgba(0,0,0,0.2);
}

.today-menu .menu-type-image {
    width: 120px;
    height: 120px;
    flex-shrink: 0;
    background: rgba(255,255,255,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background-position: center;
    background-size: cover;
}

.today-menu .menu-type-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.today-menu .menu-type-image.no-image {
    font-size: 40px;
    color: rgba(255,255,255,0.7);
}

.today-menu .menu-type-content {
    flex: 1;
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: start;
}

.today-menu .menu-type-title {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 5px;
    color: #2c3e50;
}

.today-menu .menu-type-description {
    font-size: 14px;
    opacity: 0.8;
    line-height: 1.4;
    color: #666;
}

/* MENU CATEGORIES PAGE - Pagina separata per categorie */
.today-menu .menu-categories-page {
    display: none;
    background: white;
}

.today-menu .menu-categories-page.active {
    display: block;
}

.today-menu .menu-categories-page .menu-categories {
    background-color: #f4f4f4;
    padding: 20px;
    padding-bottom: 100px;
    display: grid;
    gap: 20px;
    max-width: 800px;
    width: 100%;
    margin: 0 auto;
}

/* FIXED MENU PAGE - Pagina menu fisso */
.today-menu .fixed-menu-page {
    display: none;
    background: white;
}

.today-menu .fixed-menu-page.active {
    display: block;
}

/* BANNER PREZZO FISSO */
.today-menu .fixed-price-banner {
    color: white;
    padding: 20px;
    text-align: center;
    position: relative;
    z-index: 98;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.today-menu .price-info {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 18px;
    font-weight: 600;
}

.today-menu .price-label {
    opacity: 0.9;
}

.today-menu .price-value {
    font-size: 24px;
    font-weight: 700;
    text-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

/* FIXED MENU GRID */
.today-menu .fixed-menu-page .menu-grid {
    background-color: #fff;
    padding: 40px 0 0 0;
    padding-bottom: 100px;
}

/* FIXED MENU ITEMS - Senza prezzo */
.today-menu .fixed-menu-item .pizza-header {
    display: block; /* Non flex come gli altri */
}

.today-menu .fixed-menu-item .pizza-name {
    font-size: 18px;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 0;
}

/* RESPONSIVE - Mobile */
@media (max-width: 768px) {
    .today-menu .menu-types-title {
        font-size: 20px;
        margin-bottom: 25px;
    }
    
    .today-menu .menu-type-card {
        min-height: 100px;
    }
    
    .today-menu .menu-type-image {
        height: 100%;
        aspect-ratio: 1 / 1;
    }
    
    .today-menu .menu-type-content {
        padding: 15px;
    }
    
    .today-menu .menu-type-title {
        font-size: 18px;
    }
    
    .today-menu .menu-type-description {
        font-size: 14px;
        font-weight: 400;
    }
    
    .today-menu .price-info {
        font-size: 16px;
    }
    
    .today-menu .price-value {
        font-size: 20px;
    }
    

}

/* ========================================
   AGGIORNAMENTI STILI ESISTENTI
   ======================================== */

/* Aggiorna l'altezza del menu header per il banner prezzo fisso */
.today-menu .fixed-menu-page .menu-header {
    position: sticky;
    top: 0;
    z-index: 100;
}

/* Assicura che il banner filtri si posizioni correttamente */
.today-menu .fixed-menu-page .filter-warning {
    position: sticky;
    top: 160px; /* Altezza header + banner prezzo */
    z-index: 99;
}

@media (max-width: 768px) {
    .today-menu .fixed-menu-page .filter-warning {
        top: 140px;
    }
}

/* ========================================
   TRANSIZIONI E ANIMAZIONI
   ======================================== */

.today-menu .menu-type-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 20px 45px rgba(0,0,0,0.25);
}


/* ========================================
   SUPPORTO LAYOUT ORIZZONTALE PER MENU FISSI
   ======================================== */

/* Se vuoi che anche i menu fissi supportino il layout orizzontale */
.today-menu .fixed-menu-item.horizontal-layout {
    display: flex;
    align-items: stretch;
    min-height: 120px;
}

.today-menu .fixed-menu-item.horizontal-layout .pizza-image {
    width: 120px;
    min-width: 120px;
    height: auto;
    min-height: 120px;
    flex-shrink: 0;
    border-radius: 12px 0 0 12px;
}

.today-menu .fixed-menu-item.horizontal-layout .pizza-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 15px 20px;
}

@media (max-width: 480px) {
    .today-menu .fixed-menu-item.horizontal-layout .pizza-image {
        width: 100px;
        min-width: 100px;
        min-height: 100px;
    }
    
    .today-menu .fixed-menu-item.horizontal-layout .pizza-content {
        padding: 12px 15px;
    }
}


/* Rimuovi padding quando menu degustazione è disabilitato */
.menu-categories-page.categories-as-home .menu-categories {
    padding-bottom: 20px; /* Invece di 100px */
}

/* Mantieni padding normale quando è attivo */
.menu-categories-page:not(.categories-as-home) .menu-categories {
    padding-bottom: 100px;
}

/* ========================================
   LAYOUT CIRCOLARI PER MENU DEGUSTAZIONE
   ======================================== */

/* SEZIONI CON TITOLI */
.today-menu .fixed-menu-section {
    margin-bottom: 40px;
}

.today-menu .fixed-menu-section:last-child {
    margin-bottom: 0;
}

.today-menu .section-title-circular {
    text-align: center;
    margin-bottom: 30px;
    position: relative;

}

.today-menu .section-title-circular h3 {
    font-size: 24px;
    font-weight: 400;
    color: #2c3e50;
    margin: 0;
    position: relative;
    display: inline-block;
    padding: 0 20px;
    background-color: #fff;
    z-index: 2;
    font-family: "Playfair", serif;
    font-style: italic;
}
.menu-header-description {
    font-size: 18px;
    color: #2c3e50;
    text-align: center;
    font-family: "Playfair", serif;
    font-style: italic;
    margin: 30px 30px 0;
}
/* ========================================
   LAYOUT CIRCOLARE VERTICALE
   ======================================== */

.today-menu .fixed-menu-item.circular-vertical {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 25px 20px;
    margin-bottom: 25px;
    border-radius: 20px;
    background-color: #fff;
}

/* ⭐ NUOVO: Stile per elementi cliccabili */
.today-menu .fixed-menu-item.clickable-item {
    cursor: pointer;
}


/* Cerchio grande per immagine - Verticale */
.today-menu .circular-vertical .circular-image {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    overflow: hidden;
    margin-bottom: 20px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* ⭐ RIMOSSO: Hover sull'immagine singola */

.today-menu .circular-vertical .circular-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.today-menu .circular-vertical .circular-image.no-image {
    color: #8e24aa;
    font-size: 32px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    display: none;
}

.today-menu .circular-vertical .circular-image.no-image .icon {
    font-size: 40px;
}

.today-menu .circular-vertical .circular-image.no-image .text {
    font-size: 12px;
    font-weight: 500;
}

/* Contenuto testo - Verticale */
.today-menu .circular-vertical .circular-content {
    flex: 1;
    width: 100%;
}

.today-menu .circular-vertical .circular-dish-name {
    font-size: 20px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 12px;
    line-height: 1.3;
}

.today-menu .circular-vertical .circular-description {
    font-size: 14px;
    color: #2c3e50;
    line-height: 1.5;
    margin-bottom: 20px;
    max-width: 300px;
    margin-left: auto;
    margin-right: auto;
}

/* Allergeni normali - Come layout default */
.today-menu .circular-vertical .circular-allergens,
.today-menu .circular-horizontal .circular-allergens {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    align-items: center;
    margin-top: auto;
}

.today-menu .circular-vertical .circular-allergens {
    justify-content: center;
}

.today-menu .circular-horizontal .circular-allergens {
    justify-content: flex-start;
}

/* Allergeni e surgelato - Formato normale */
.today-menu .circular-allergens .info-tag.allergen {
    color: #e67e22;
    padding: 0px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.today-menu .circular-allergens .info-tag.allergen img {
    width: 30px;
    height: 30px;
    max-width: 50px;
    max-height: 50px;
    object-fit: contain;
}

.today-menu .circular-allergens .info-tag.frozen {
    color: #3498db;
    padding: 0px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.today-menu .circular-allergens .info-tag.frozen img {
    width: 30px;
    height: 30px;
    object-fit: contain;
}

/* ========================================
   LAYOUT CIRCOLARE ORIZZONTALE
   ======================================== */

.today-menu .fixed-menu-item.circular-horizontal {
    display: flex;
    align-items: center;
    text-align: left;
    padding: 25px;
    margin-bottom: 25px;
    border-radius: 20px;
    min-height: 140px;
}

/* Cerchio grande per immagine - Orizzontale */
.today-menu .circular-horizontal .circular-image {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    overflow: hidden;
    margin-right: 25px;
    flex-shrink: 0;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* ⭐ RIMOSSO: Hover sull'immagine singola */

.today-menu .circular-horizontal .circular-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.today-menu .circular-horizontal .circular-image.no-image {
    color: #8e24aa;
    font-size: 28px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
}

.today-menu .circular-horizontal .circular-image.no-image .icon {
    font-size: 32px;
}

.today-menu .circular-horizontal .circular-image.no-image .text {
    font-size: 10px;
    font-weight: 500;
}

/* Contenuto testo - Orizzontale */
.today-menu .circular-horizontal .circular-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    border-left: 1px solid #a1a1a1;
    padding: 0 0 0 15px;
}

.today-menu .circular-horizontal .circular-dish-name {
    font-size: 18px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 10px;
    line-height: 1.3;
}

.today-menu .circular-horizontal .circular-description {
    font-size: 14px;
    color: #7f8c8d;
    line-height: 1.5;
    margin-bottom: 15px;
}

/* ========================================
   RESPONSIVE DESIGN
   ======================================== */

@media (max-width: 480px) {
    /* Verticale Mobile */
    .today-menu .fixed-menu-item.circular-vertical {
        padding: 20px 15px;
        margin-bottom: 20px;
    }
    
    .today-menu .circular-vertical .circular-image {
        width: 100px;
        height: 100px;
        margin-bottom: 15px;
    }
    
    .today-menu .circular-vertical .circular-dish-name {
        font-size: 18px;
        margin-bottom: 10px;
    }
    
    .today-menu .circular-vertical .circular-description {
        font-size: 13px;
        margin-bottom: 15px;
    }
    
    /* ⭐ AGGIORNATO: Orizzontale Mobile - RIMANE ORIZZONTALE */
    .today-menu .fixed-menu-item.circular-horizontal {
        /* Mantieni layout orizzontale */
        flex-direction: row;
        text-align: left;
        padding: 15px;
        min-height: 100px;
    }
    
    .today-menu .circular-horizontal .circular-image {
        width: 70px;
        height: 70px;
        margin-right: 15px;
        margin-bottom: 0;
    }
    
    .today-menu .circular-horizontal .circular-dish-name {
        font-size: 15px;
        margin-bottom: 8px;
    }
    
    .today-menu .circular-horizontal .circular-description {
        font-size: 12px;
        text-align: left;
        line-height: 1.3;
        margin-bottom: 8px;
    }
    
    .today-menu .circular-horizontal .circular-allergens {
        justify-content: flex-start;
        gap: 6px;
    }
    
    /* Sezioni mobile */
    .today-menu .section-title-circular h3 {
        font-size: 20px;
    }
    
    .today-menu .fixed-menu-section {
        margin-bottom: 30px;
    }
}

@media (max-width: 768px) and (min-width: 481px) {
    /* Tablet adjustments */
    .today-menu .circular-horizontal .circular-image {
        width: 85px;
        height: 85px;
        margin-right: 18px;
    }
    
    .today-menu .circular-horizontal .circular-dish-name {
        font-size: 16px;
    }
    
    .today-menu .circular-horizontal .circular-description {
        font-size: 13px;
    }
    
    .today-menu .section-title-circular h3 {
        font-size: 22px;
    }
}

/* ========================================
   ANIMAZIONI E EFFETTI SPECIALI
   ======================================== */

/* Effetto gradiente per il bordo delle sezioni */
.today-menu .fixed-menu-section {
    position: relative;
}

.today-menu .fixed-menu-section::after {
    content: '';
    position: absolute;
    bottom: -20px;
    left: 10%;
    right: 10%;
    height: 1px;
    background: linear-gradient(to right, transparent, rgba(142, 36, 170, 0.3), transparent);
    top: 11px;
}

.today-menu .fixed-menu-section:last-child::after {
    display: none;
}

.today-menu .fixed-menu-final-price {
    margin-bottom: 20px;
    display: flex;
    justify-content: center;
    padding: 0 20px;
}

.today-menu .final-price-container {
    background: #fff;
    color: #2c3e50;
    padding: 20px 40px;
    border-radius: 25px;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 8px;
    min-width: 200px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    font-family: "Playfair", serif;
    font-style: italic;
}


.today-menu .final-price-label {
    font-size: 20px;
    font-weight: 500;
    opacity: 0.9;
}

.today-menu .final-price-value {
    font-size: 40px;
    font-weight: 600;
    color: #2c3e50;
}

.today-menu .final-price-value .valuta {
    font-size: 30px;
}

.filtered-out {
    display: none!important;
}
