/* ===== PRANZO PAGE - SALES OPTIMIZED STYLES ===== */


body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #333;
}


/* ===== HERO SECTION - PRIMA IMPRESSIONE ===== */
.pranzo-hero {
    color: white;
    padding: 3rem 2rem;
    text-align: center;
    background-image: url('../img/private_bkg.png');

}

.pranzo-hero-content {
    max-width: 600px;
    margin: 0 auto;
}

.pranzo-hero h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.pranzo-price {
    font-size: 3rem;
    font-weight: 800;
    color: #FFD700;
    margin: 1rem 0;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.pranzo-price-subtitle {
    font-size: 1.1rem;
    opacity: 0.9;
    margin-bottom: 2rem;
}

.pranzo-subtitle {
color: #eee;
}



/* ===== INTRO SECTION - LANDING PAGE SALES ===== */
.intro-section {
    background: white;
    color: #333;
    padding: 4rem 2rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.intro-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #FFD700 0%, #FFA500 100%);
    z-index: 1;
}

.intro-content {
    max-width: 700px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.intro-section h1 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    color: #1a4d3a;
    line-height: 1.2;
}

.intro-section .highlight {
    color: #FF6B35;
    font-weight: 900;
}

.intro-subtitle {
    font-size: 1.3rem;
    color: #666;
    margin-bottom: 2rem;
    line-height: 1.5;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.intro-price-container {
    background: linear-gradient(135deg, #1a4d3a 0%, #2d5a47 100%);
    color: white;
    padding: 2rem;
    border-radius: 20px;
    margin: 2rem 0;
    position: relative;
    box-shadow: 0 10px 30px rgba(26, 77, 58, 0.2);
}

.intro-price {
    font-size: 4rem;
    font-weight: 900;
    color: #FFD700;
    margin: 0;
    line-height: 1;
}

.intro-price-subtitle {
    font-size: 1.1rem;
    color: #fff;
    margin-top: 0.5rem;
    opacity: 0.9;
}

.intro-price-original {
    font-size: 1.5rem;
    color: #ccc;
    text-decoration: line-through;
    margin-right: 1rem;
}

.intro-benefits-inline {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin: 2rem 0;
    flex-wrap: wrap;
}

.intro-benefit-inline {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #1a4d3a;
    font-weight: 600;
}

.intro-benefit-inline::before {
    content: '✓';
    color: #4CAF50;
    font-weight: bold;
    font-size: 1.2rem;
}

.intro-cta-button {
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    color: #1a4d3a;
    padding: 1.2rem 3rem;
    border: none;
    border-radius: 50px;
    font-size: 1.3rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.4);
    position: relative;
    overflow: hidden;
}

.intro-cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.5s;
}

.intro-cta-button:hover::before {
    left: 100%;
}

.intro-cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(255, 215, 0, 0.5);
}

.intro-guarantee {
    font-size: 0.9rem;
    color: #666;
    margin-top: 1rem;
    font-style: italic;
}

/* Benefits Badges - Same Style as benefit-item */
.intro-benefits-badges {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 1000px;
    margin: 3rem auto;
}

.intro-benefit-badge {
    text-align: center;
    padding: 1.5rem;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.intro-benefit-badge:hover {
    transform: translateY(-5px);
}

.intro-benefit-icon {
    font-size: 3rem;
    color: #FFD700;
    margin-bottom: 1rem;
    font-weight: 300;
    text-shadow: 0 2px 4px rgba(255, 215, 0, 0.3);
}

.intro-benefit-title {
    font-size: 1.2rem;
    font-weight: 600;
    color: #1a4d3a;
    margin-bottom: 0.5rem;
}

.intro-benefit-description {
    color: #666;
    font-size: 0.95rem;
}

/* ===== MENU CONTAINER - SALES FLOW ===== */
.pranzo-menu-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    padding: 4rem 2rem;
    position: relative;
    overflow: hidden;
}

.pranzo-menu-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #FFD700 0%, #FFA500 100%);
    z-index: 1;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}



.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: #8b7355;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
}

.section-subtitle {
    font-size: 1.2rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.menu-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-top: 2rem;
}

.menu-column {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    border: 1px solid #e9ecef;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.menu-column::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #1a4d3a, #2d5a47);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.menu-column:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(26, 77, 58, 0.15);
    border-color: #1a4d3a;
}

.menu-column:hover::before {
    opacity: 1;
}

.menu-category {
    text-align: center;
    margin-bottom: 2rem;
    padding: 1rem;
    background: linear-gradient(135deg, #1a4d3a 0%, #2d5a47 100%);
    border-radius: 15px;
    color: white;
}

.menu-category h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin: 0;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
}

.menu-item {
    display: flex;
    flex-direction: column;
    text-align: left;
    padding: 1.5rem 0;
    border-bottom: 1px solid #f0f0f0;
    transition: all 0.3s ease;
}

.menu-item:last-child {
    border-bottom: none;
}

.menu-item:hover {
    background: linear-gradient(135deg, #fff9e6 0%, #ffffff 100%);
    border-radius: 10px;
    padding-left: 1rem;
    padding-right: 1rem;
}

.menu-item h4 {
    order: 1;
    font-size: 1.1rem;
    font-weight: 700;
    color: #1a4d3a;
    margin-bottom: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    text-align: left;
}

.menu-item p {
    order: 2;
    color: #666;
    font-size: 0.95rem;
    line-height: 1.5;
    margin: 0;
    font-style: italic;
    text-align: left;
}

/* Price Highlight */
.menu-price-highlight {
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    color: #1a4d3a;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-weight: 700;
    font-size: 0.9rem;
    display: inline-block;
    margin-top: 0.5rem;
    box-shadow: 0 2px 8px rgba(255, 215, 0, 0.3);
}

/* Call to Action Bottom */
.menu-cta-section {
    text-align: center;
    margin-top: 3rem;
    padding: 2rem;
    background: linear-gradient(135deg, #1a4d3a 0%, #2d5a47 100%);
    border-radius: 20px;
    color: white;
}

.menu-cta-section h3 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.menu-cta-section p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.menu-cta-button {
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    color: #1a4d3a;
    padding: 1rem 2.5rem;
    border: none;
    border-radius: 50px;
    font-size: 1.2rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.4);
}

.menu-cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(255, 215, 0, 0.5);
}

/* ===== PRENOTAZIONE SECTION ===== */
.pranzo-prenotazione-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    padding: 4rem 2rem;
    position: relative;
    overflow: hidden;
}

.pranzo-prenotazione-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #FFD700 0%, #FFA500 100%);
    z-index: 1;
}

.pranzo-prenotazione-section .container {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.pranzo-prenotazione-section .section-header {
    text-align: center;
    margin-bottom: 3rem;
    padding: 2rem;
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    border: 1px solid #e9ecef;
}

.pranzo-prenotazione-section .section-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: #1a4d3a;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
}

.pranzo-prenotazione-section .section-subtitle {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.price-highlight {
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    color: #1a4d3a;
    padding: 1rem 2rem;
    border-radius: 15px;
    display: inline-block;
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.3);
}

.price-main {
    font-size: 2rem;
    font-weight: 900;
    display: block;
    margin-bottom: 0.3rem;
}

.price-details {
    font-size: 0.9rem;
    font-weight: 600;
    opacity: 0.8;
}

.pranzo-form {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
    border: 1px solid #e9ecef;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

/* Layout mobile per form-row fino a 768px */
@media (max-width: 768px) {
    .form-row {
        grid-template-columns: 1fr;
        gap: 1rem;
        margin-bottom: 1rem;
    }
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #1a4d3a;
    font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.8rem 1rem;
    border: 2px solid #e9ecef;
    border-radius: 10px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: #fafafa;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #1a4d3a;
    background: white;
    box-shadow: 0 0 0 3px rgba(26, 77, 58, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 80px;
}

.form-help-text {
    display: block;
    margin-top: 0.3rem;
    font-size: 0.8rem;
    color: #666;
    font-style: italic;
}

/* ===== CUSTOM DATE PICKER ===== */
.custom-date-picker {
    position: relative;
    width: 100%;
}

.custom-date-picker input {
    width: calc(100% - 40px);
    padding-right: 40px;
    cursor: pointer;
}

.calendar-toggle {
    position: absolute;
    right: 8px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    font-size: 1.2rem;
    cursor: pointer;
    padding: 4px;
    border-radius: 4px;
    transition: background-color 0.3s ease;
}

.calendar-toggle:hover {
    background-color: #f0f0f0;
}

.custom-calendar {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    border: 2px solid #153731;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(21, 55, 49, 0.15);
    z-index: 1000;
    display: none;
    margin-top: 4px;
    font-family: 'Inter', sans-serif;
}

.custom-calendar.show {
    display: block;
}

.calendar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    border-bottom: 1px solid #e9ecef;
    background: #f8f9fa;
}

.calendar-nav {
    background: #153731;
    color: white;
    border: none;
    border-radius: 4px;
    padding: 0.5rem 0.8rem;
    cursor: pointer;
    font-size: 1.2rem;
    transition: background-color 0.3s ease;
}

.calendar-nav:hover {
    background: #2d5a47;
}

.calendar-month-year {
    font-weight: 700;
    font-size: 1.1rem;
    color: #153731;
}

.calendar-weekdays {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    background: #f8f9fa;
    border-bottom: 1px solid #e9ecef;
}

.weekday {
    padding: 0.8rem 0.5rem;
    text-align: center;
    font-weight: 600;
    font-size: 0.9rem;
    color: #153731;
}

.weekday.weekend {
    color: #ccc;
    background: #f0f0f0;
}

.calendar-days {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 2px;
    padding: 0.5rem;
}

.calendar-day {
    padding: 0.8rem 0.5rem;
    text-align: center;
    cursor: pointer;
    border-radius: 4px;
    transition: all 0.3s ease;
    font-size: 0.9rem;
    color: #153731;
    background: white;
    border: 1px solid transparent;
}

.calendar-day:hover {
    background: #f8f9fa;
    border-color: #153731;
}

.calendar-day.selected {
    background: #153731;
    color: white;
    border-color: #153731;
}

.calendar-day.today {
    background: #e8f5e8;
    color: #153731;
    font-weight: 600;
}

.calendar-day.other-month {
    color: #ccc;
    background: #f8f9fa;
}

.calendar-day.weekend {
    color: #ccc;
    background: #f0f0f0;
    cursor: not-allowed;
    opacity: 0.5;
}

.calendar-day.weekend:hover {
    background: #f0f0f0;
    border-color: transparent;
    transform: none;
}

.calendar-day.past {
    color: #ccc;
    background: #f8f9fa;
    cursor: not-allowed;
}

    .calendar-day.past:hover {
        background: #f8f9fa;
        border-color: transparent;
        transform: none;
    }
    
    /* Custom Calendar Mobile */
    .custom-calendar {
        position: fixed;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: 90%;
        max-width: 350px;
        z-index: 10000;
    }
    
    .calendar-header {
        padding: 0.8rem;
    }
    
    .calendar-nav {
        padding: 0.4rem 0.6rem;
        font-size: 1rem;
    }
    
    .calendar-month-year {
        font-size: 1rem;
    }
    
    .weekday {
        padding: 0.6rem 0.3rem;
        font-size: 0.8rem;
    }
    
    .calendar-days {
        gap: 1px;
        padding: 0.3rem;
    }
    
    .calendar-day {
        padding: 0.6rem 0.3rem;
        font-size: 0.8rem;
    }

.form-checkboxes {
    margin: 2rem 0;
}

.checkbox-label {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    cursor: pointer;
    font-size: 0.9rem;
    color: #666;
}

.checkbox-label input[type="checkbox"] {
    margin-right: 0.8rem;
    width: auto;
}

.submit-btn {
    width: 100%;
    background: linear-gradient(135deg, #1a4d3a 0%, #2d5a47 100%);
    color: white;
    padding: 1rem 2rem;
    border: none;
    border-radius: 50px;
    font-size: 1.2rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(26, 77, 58, 0.3);
}

.submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(26, 77, 58, 0.4);
}

/* ===== CALENDAR STYLING ===== */
/* Date picker input styling */
input[type="date"] {
    color: #153731;
    font-weight: 600;
}

input[type="date"]:focus {
    color: #153731;
}

/* Date picker indicator */
input[type="date"]::-webkit-calendar-picker-indicator {
    background: transparent;
    color: #153731;
    cursor: pointer;
    border-radius: 4px;
    padding: 4px;
}

input[type="date"]::-webkit-calendar-picker-indicator:hover {
    background: #ffffff;
    border-radius: 4px;
}

input[type="date"]::-webkit-calendar-picker-indicator:focus {
    outline: 2px solid #153731;
    outline-offset: 2px;
}

/* Date picker edit fields */
input[type="date"]::-webkit-datetime-edit {
    color: #153731;
    font-weight: 600;
}

input[type="date"]::-webkit-datetime-edit-fields-wrapper {
    background: #ffffff;
}

input[type="date"]::-webkit-datetime-edit-text {
    color: #153731;
    font-weight: 600;
}

input[type="date"]::-webkit-datetime-edit-month-field,
input[type="date"]::-webkit-datetime-edit-day-field,
input[type="date"]::-webkit-datetime-edit-year-field {
    color: #153731;
    font-weight: 600;
}

/* Calendar popup dropdown styling */
input[type="date"]::-webkit-calendar-picker-dropdown {
    background-color: #ffffff;
    color: #153731;
    border: 2px solid #153731;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(21, 55, 49, 0.15);
}

/* Calendar month view */
input[type="date"]::-webkit-calendar-picker-dropdown::-webkit-calendar-picker-month-view {
    background-color: #ffffff;
    color: #153731;
    border: 1px solid #e9ecef;
}

/* Calendar day cells */
input[type="date"]::-webkit-calendar-picker-dropdown::-webkit-calendar-picker-month-view::-webkit-calendar-picker-day {
    color: #153731;
    background-color: #ffffff;
    border: 1px solid transparent;
    border-radius: 4px;
    margin: 1px;
}

/* Calendar day hover effect */
input[type="date"]::-webkit-calendar-picker-dropdown::-webkit-calendar-picker-month-view::-webkit-calendar-picker-day:hover {
    background-color: #f8f9fa;
    color: #153731;
    border-color: #153731;
}

/* Calendar day selected */
input[type="date"]::-webkit-calendar-picker-dropdown::-webkit-calendar-picker-month-view::-webkit-calendar-picker-day:selected {
    background-color: #153731;
    color: #ffffff;
    border-color: #153731;
}

/* Calendar navigation buttons */
input[type="date"]::-webkit-calendar-picker-dropdown::-webkit-calendar-picker-month-view::-webkit-calendar-picker-navigation-button {
    color: #153731;
    background-color: #ffffff;
    border: 1px solid #153731;
    border-radius: 4px;
}

input[type="date"]::-webkit-calendar-picker-dropdown::-webkit-calendar-picker-month-view::-webkit-calendar-picker-navigation-button:hover {
    background-color: #f8f9fa;
    color: #153731;
}

/* Calendar month/year header */
input[type="date"]::-webkit-calendar-picker-dropdown::-webkit-calendar-picker-month-view::-webkit-calendar-picker-month {
    color: #153731;
    background-color: #ffffff;
    font-weight: 700;
}

/* Calendar weekday header */
input[type="date"]::-webkit-calendar-picker-dropdown::-webkit-calendar-picker-month-view::-webkit-calendar-picker-weekday {
    color: #153731;
    background-color: #ffffff;
    font-weight: 600;
}

/* Additional calendar styling for better compatibility */
input[type="date"]::-webkit-calendar-picker-dropdown::-webkit-calendar-picker-month-view::-webkit-calendar-picker-day:not(:hover):not(:selected) {
    background-color: #ffffff;
    color: #153731;
}

/* Calendar today styling */
input[type="date"]::-webkit-calendar-picker-dropdown::-webkit-calendar-picker-month-view::-webkit-calendar-picker-day.today {
    background-color: #f8f9fa;
    color: #153731;
    font-weight: 600;
}

/* Calendar other month days */
input[type="date"]::-webkit-calendar-picker-dropdown::-webkit-calendar-picker-month-view::-webkit-calendar-picker-day.other-month {
    color: #ccc;
    background-color: #ffffff;
}

/* ===== XO CALENDAR CUSTOM STYLING ===== */
.xo-calendar {
    background-color: #ffffff !important;
    border: 2px solid #153731 !important;
    border-radius: 8px !important;
    box-shadow: 0 4px 12px rgba(21, 55, 49, 0.15) !important;
    color: #153731 !important;
    font-family: 'Inter', sans-serif !important;
    margin: 0 auto !important;
    text-align: center !important;
}

.xo-calendar-show {
    display: block !important;
    opacity: 1 !important;
    visibility: visible !important;
}

.xo-calendar-header {
    background-color: #ffffff !important;
    color: #153731 !important;
    border-bottom: 1px solid #e9ecef !important;
    padding: 1rem !important;
    text-align: center !important;
}

.xo-calendar-month-year {
    color: #153731 !important;
    font-weight: 700 !important;
    font-size: 1.1rem !important;
}

.xo-calendar-nav-button {
    background-color: #ffffff !important;
    color: #153731 !important;
    border: 1px solid #153731 !important;
    border-radius: 4px !important;
    padding: 0.5rem !important;
    cursor: pointer !important;
    transition: all 0.3s ease !important;
}

.xo-calendar-nav-button:hover {
    background-color: #f8f9fa !important;
    color: #153731 !important;
}

.xo-calendar-weekdays {
    background-color: #ffffff !important;
    color: #153731 !important;
    font-weight: 600 !important;
    border-bottom: 1px solid #e9ecef !important;
    text-align: center !important;
}

.xo-calendar-weekday {
    color: #153731 !important;
    font-weight: 600 !important;
    padding: 0.5rem !important;
    font-size: 9px !important;
}

.xo-calendar-days {
    background-color: #ffffff !important;
    padding: 0.5rem !important;
    text-align: center !important;
    display: grid !important;
    grid-template-columns: repeat(7, 1fr) !important;
    gap: 2px !important;
    width: 100% !important;
    box-sizing: border-box !important;
}

.xo-calendar-day {
    background-color: #ffffff !important;
    color: #153731 !important;
    border: 1px solid transparent !important;
    border-radius: 4px !important;
    padding: 0.5rem !important;
    margin: 0 !important;
    cursor: pointer !important;
    transition: all 0.3s ease !important;
    text-align: center !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
}

.xo-calendar-day:hover {
    background-color: #f8f9fa !important;
    color: #153731 !important;
    border-color: #153731 !important;
}

.xo-calendar-day.selected {
    background-color: #153731 !important;
    color: #ffffff !important;
    border-color: #153731 !important;
}

.xo-calendar-day.today {
    background-color: #f8f9fa !important;
    color: #153731 !important;
    font-weight: 600 !important;
}

.xo-calendar-day.other-month {
    color: #ccc !important;
    background-color: #ffffff !important;
}

.xo-calendar-day.disabled {
    color: #ccc !important;
    background-color: #f8f9fa !important;
    cursor: not-allowed !important;
}

.xo-calendar-day.disabled:hover {
    background-color: #f8f9fa !important;
    color: #ccc !important;
    border-color: transparent !important;
}

/* Stili specifici per weekend disabilitati */
.xo-calendar-day.weekend-disabled {
    background-color: #f8f9fa !important;
    color: #ccc !important;
    cursor: not-allowed !important;
    opacity: 0.5 !important;
    pointer-events: none !important;
}

.xo-calendar-day.weekend-disabled:hover {
    background-color: #f8f9fa !important;
    color: #ccc !important;
    border-color: transparent !important;
    transform: none !important;
}

/* ===== BENEFICI SECTION ===== */
.pranzo-benefits {
    background: #f8f9fa;
    padding: 3rem 2rem;
}

.pranzo-benefits h2 {
    text-align: center;
    font-size: 2rem;
    color: #1a4d3a;
    margin-bottom: 2rem;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.benefit-item {
    text-align: center;
    padding: 1.5rem;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.benefit-item:hover {
    transform: translateY(-5px);
}

.benefit-icon {
    font-size: 3rem;
    color: #1a4d3a;
    margin-bottom: 1rem;
}

.benefit-title {
    font-size: 1.2rem;
    font-weight: 600;
    color: #1a4d3a;
    margin-bottom: 0.5rem;
}

.benefit-text {
    color: #666;
    font-size: 0.95rem;
}

/* ===== MENU PREVIEW ===== */
.pranzo-menu-preview {
    padding: 3rem 2rem;
    background: white;
}

.pranzo-menu-preview h2 {
    text-align: center;
    font-size: 2rem;
    color: #1a4d3a;
    margin-bottom: 2rem;
}

.menu-categories {
    max-width: 800px;
    margin: 0 auto;
}

.menu-category {
    margin-bottom: 2rem;
    background: #f8f9fa;
    border-radius: 15px;
    padding: 1.5rem;
    border-left: 5px solid #1a4d3a;
}

.menu-category h3 {
    color: #1a4d3a;
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.menu-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 0;
    border-bottom: 1px solid #eee;
}

.menu-item:last-child {
    border-bottom: none;
}

.menu-item-name {
    font-weight: 500;
    color: #333;
}

.menu-item-desc {
    font-size: 0.9rem;
    color: #666;
    font-style: italic;
}

/* ===== URGENCY SECTION ===== */
.pranzo-urgency {
    background: linear-gradient(135deg, #dc3545 0%, #c82333 100%);
    color: white;
    padding: 2rem;
    text-align: center;
}

.pranzo-urgency h2 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.pranzo-urgency p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    opacity: 0.9;
}

/* ===== BOOKING FORM ===== */
.pranzo-booking {
    background: #f8f9fa;
    padding: 3rem 2rem;
}

.pranzo-booking h2 {
    text-align: center;
    font-size: 2rem;
    color: #1a4d3a;
    margin-bottom: 2rem;
}

.booking-form {
    max-width: 500px;
    margin: 0 auto;
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #1a4d3a;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.8rem;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #1a4d3a;
    box-shadow: 0 0 0 3px rgba(26, 77, 58, 0.1);
}

.submit-btn {
    width: 100%;
    background: #1a4d3a;
    color: white;
    padding: 1rem;
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.submit-btn:hover {
    background: #2d5a47;
    transform: translateY(-2px);
}

/* ===== POPUP STYLES ===== */
.pranzo-popup {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: linear-gradient(135deg, #1a4d3a 0%, #2d5a47 100%);
    color: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
    z-index: 10000;
    text-align: center;
    min-width: 300px;
    max-width: 400px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.pranzo-popup.show {
    opacity: 1;
    visibility: visible;
}

.pranzo-popup.success {
    border-left: 4px solid #4CAF50;
}

.pranzo-popup.error {
    border-left: 4px solid #f44336;
}

.pranzo-popup-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.pranzo-popup.success .pranzo-popup-icon {
    color: #4CAF50;
}

.pranzo-popup.error .pranzo-popup-icon {
    color: #f44336;
}

.pranzo-popup-message {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    line-height: 1.4;
}

.pranzo-popup-close {
    position: absolute;
    top: 10px;
    right: 15px;
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.5rem;
    cursor: pointer;
    transition: color 0.3s ease;
}

.pranzo-popup-close:hover {
    color: white;
}

.pranzo-popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.pranzo-popup-overlay.show {
    opacity: 1;
    visibility: visible;
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 479px) {
    /* Sposta pranzo-hero-text verso il basso di 80px */
    .pranzo-hero-text {
        margin-top: 80px !important;
    }
}

@media (max-width: 480px) {
    /* Sposta pranzo-hero-text verso il basso di 80px */
    .pranzo-hero-text {
        margin-top: 80px !important;
    }

    .pranzo-title {
        color: #ffffff;
    }
}

@media (max-width: 768px) {
    /* Sposta pranzo-hero-text verso il basso di 80px */
    .pranzo-hero-text {
        margin-top: 150px !important;
    }
    
    .pranzo-hero h1 {
        font-size: 2rem;
    }

    .pranzo-title {
        color: #ffffff;
        font-size: 3rem!important;
    }

    .pranzo-hero{
height: 100vh;
    }
    
    .pranzo-price {
        font-size: 2.5rem;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .pranzo-hero,
    .pranzo-benefits,
    .pranzo-menu-preview,
    .pranzo-booking {
        padding: 2rem 1rem;
    }
}

@media (max-width: 360px) {
    /* Intro Section - Landing Page Mobile */
    .intro-section {
        padding: 2rem 1rem;
        text-align: center;
        background: white;
    }
    
    .intro-content {
        width: 100%;
        max-width: 320px;
        margin: 0 auto;
    }
    
    .intro-section h1 {
        font-size: 2rem;
        color: #1a4d3a;
        text-align: center;
        margin-bottom: 1rem;
        line-height: 1.3;
    }
    
    .intro-subtitle {
        font-size: 1.1rem;
        color: #666;
        text-align: center;
        margin-bottom: 1.5rem;
    }
    
    .intro-price-container {
        padding: 1.5rem;
        margin: 1.5rem 0;
    }
    
    .intro-price {
        font-size: 3rem;
        color: #FFD700;
        text-align: center;
    }
    
    .intro-price-subtitle {
        color: white;
        text-align: center;
        margin-top: 0.5rem;
    }
    
    .intro-benefits-inline {
        flex-direction: column;
        gap: 1rem;
        margin: 1.5rem 0;
    }
    
    .intro-benefit-inline {
        justify-content: center;
    }
    
    .intro-cta-button {
        padding: 1rem 2rem;
        font-size: 1.1rem;
        display: block;
        margin: 0 auto;
        text-align: center;
        width: 100%;
        max-width: 280px;
    }
    
    /* Benefits Badges Mobile */
    .intro-benefits-badges {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin: 2rem 0;
    }
    
    .intro-benefit-badge {
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
        padding: 1.5rem;
    }
    
    /* Hero Section - Centrato e semplificato */
    .pranzo-hero {
        padding: 2rem 1rem;
        text-align: center;
        display: flex;
        align-items: center;
        justify-content: center;
        min-height: 100vh;
    }
    
    .pranzo-hero-content {
        width: 100%;
        max-width: 320px;
        margin: 0 auto;
    }
    
    .pranzo-hero h1 {
        font-size: 1.8rem;
        color: white;
        text-align: center;
        margin-bottom: 1rem;
    }
    
    .pranzo-price {
        font-size: 2.2rem;
        color: rgb(224, 210, 8);
        text-align: center;
        margin: 1rem 0;
    }
    
    .pranzo-price-subtitle {
        color: white;
        text-align: center;
        margin-bottom: 2rem;
    }
    
    .pranzo-cta {
        padding: 0.8rem 1.5rem;
        font-size: 1rem;
        display: block;
        margin: 0 auto;
        text-align: center;
    }
    
    /* Benefits Section - Centrato */
    .pranzo-benefits {
        padding: 2rem 1rem;
        text-align: center;
    }
    
    .pranzo-benefits h2 {
        color: white;
        text-align: center;
        margin-bottom: 2rem;
    }
    
    .benefits-grid {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .benefit-item {
        width: 100%;
        max-width: 300px;
        text-align: center;
        background: white;
        color: #1a4d3a;
        padding: 1.5rem;
    }
    
    .benefit-title {
        color: #1a4d3a;
        text-align: center;
    }
    
    .benefit-text {
        color: #666;
        text-align: center;
    }
    
    /* Menu Preview - Centrato */
    .pranzo-menu-preview {
        padding: 2rem 1rem;
        text-align: center;
        background: #1a4d3a;
    }
    
    .pranzo-menu-preview h2 {
        color: white;
        text-align: center;
        margin-bottom: 2rem;
    }
    
    .menu-categories {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .menu-category {
        width: 100%;
        max-width: 300px;
        background: white;
        color: #1a4d3a;
        text-align: center;
        margin-bottom: 1rem;
    }
    
    .menu-category h3 {
        color: #1a4d3a;
        text-align: center;
    }
    
    .menu-item {
        text-align: center;
        justify-content: center;
    }
    
    .menu-item-name {
        color: #1a4d3a;
        text-align: center;
    }
    
    /* Urgency Section - Centrato */
    .pranzo-urgency {
        text-align: center;
        padding: 2rem 1rem;
    }
    
    .pranzo-urgency h2 {
        color: white;
        text-align: center;
    }
    
    .pranzo-urgency p {
        color: white;
        text-align: center;
    }
    
    /* Booking Form - Centrato */
    .pranzo-booking {
        padding: 2rem 1rem;
        text-align: center;
        background: #1a4d3a;
    }
    
    .pranzo-booking h2 {
        color: white;
        text-align: center;
        margin-bottom: 2rem;
    }
    
    .booking-form {
        padding: 1.5rem;
        margin: 0 auto;
        text-align: center;
        background: white;
    }
    
    .form-group {
        text-align: center;
    }
    
    .form-group label {
        color: #1a4d3a;
        text-align: center;
    }
    
    .submit-btn {
        text-align: center;
        margin: 0 auto;
    }
    
    .pranzo-popup {
        min-width: 280px;
        max-width: 90%;
        padding: 1.5rem;
    }
    
    /* Menu Container Mobile */
    .pranzo-menu-section {
        padding: 2rem 1rem;
    }
    
    .section-header {
        padding: 1.5rem;
        margin-bottom: 2rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .section-subtitle {
        font-size: 1rem;
    }
    
    .menu-grid {
        gap: 1.5rem;
    }
    
    .menu-column {
        padding: 1.5rem;
    }
    
    .menu-category {
        padding: 0.8rem;
        margin-bottom: 1.5rem;
    }
    
    .menu-category h3 {
        font-size: 1.1rem;
    }
    
    .menu-item {
        padding: 1rem 0;
    }
    
    .menu-item h4 {
        font-size: 1rem;
    }
    
    .menu-item p {
        font-size: 0.9rem;
    }
    
    .menu-cta-section {
        padding: 1.5rem;
        margin-top: 2rem;
    }
    
    .menu-cta-section h3 {
        font-size: 1.5rem;
    }
    
    .menu-cta-section p {
        font-size: 1rem;
    }
    
    .menu-cta-button {
        padding: 0.8rem 2rem;
        font-size: 1.1rem;
        width: 100%;
        max-width: 280px;
    }
    
    /* Prenotazione Section Mobile */
    .pranzo-prenotazione-section {
        padding: 2rem 1rem;
    }
    
    .pranzo-prenotazione-section .section-header {
        padding: 1.5rem;
        margin-bottom: 2rem;
    }
    
    .pranzo-prenotazione-section .section-title {
        font-size: 2rem;
    }
    
    .pranzo-prenotazione-section .section-subtitle {
        font-size: 1rem;
    }
    
    .price-highlight {
        padding: 0.8rem 1.5rem;
    }
    
    .price-main {
        font-size: 1.5rem;
    }
    
    .price-details {
        font-size: 0.8rem;
    }
    
    .pranzo-form {
        padding: 1.5rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .form-group {
        margin-bottom: 1rem;
    }
    
    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 0.7rem 0.8rem;
        font-size: 0.95rem;
    }
    
    .form-checkboxes {
        margin: 1.5rem 0;
    }
    
    .checkbox-label {
        font-size: 0.85rem;
        margin-bottom: 0.8rem;
    }
    
    .submit-btn {
        padding: 0.8rem 1.5rem;
        font-size: 1.1rem;
    }
    
    /* Calendar Mobile Styling */
    input[type="date"]::-webkit-datetime-edit {
        font-size: 0.9rem;
    }
    
    input[type="date"]::-webkit-datetime-edit-month-field,
    input[type="date"]::-webkit-datetime-edit-day-field,
    input[type="date"]::-webkit-datetime-edit-year-field {
        font-size: 0.9rem;
    }
    
    input[type="date"]::-webkit-calendar-picker-dropdown {
        border: 1px solid #153731;
        border-radius: 6px;
        box-shadow: 0 2px 8px rgba(21, 55, 49, 0.1);
    }
    
    input[type="date"]::-webkit-calendar-picker-dropdown::-webkit-calendar-picker-month-view::-webkit-calendar-picker-day {
        border-radius: 3px;
        margin: 0.5px;
        font-size: 0.9rem;
    }
    
    input[type="date"]::-webkit-calendar-picker-dropdown::-webkit-calendar-picker-month-view::-webkit-calendar-picker-navigation-button {
        border-radius: 3px;
        font-size: 0.9rem;
    }
    
    /* XO Calendar Mobile Styling */
    .xo-calendar {
        border: 1px solid #153731 !important;
        border-radius: 6px !important;
        box-shadow: 0 2px 8px rgba(21, 55, 49, 0.1) !important;
    }
    
    .xo-calendar-header {
        padding: 0.8rem !important;
    }
    
    .xo-calendar-month-year {
        font-size: 1rem !important;
    }
    
    .xo-calendar-nav-button {
        padding: 0.4rem !important;
        font-size: 0.9rem !important;
        border-radius: 3px !important;
    }
    
    .xo-calendar-weekday {
        padding: 0.4rem !important;
        font-size: 0.6rem !important;
    }
    
    .xo-calendar-days {
        padding: 0.3rem !important;
        display: grid !important;
        grid-template-columns: repeat(7, 1fr) !important;
        gap: 1px !important;
        width: 100% !important;
        box-sizing: border-box !important;
    }
    
    .xo-calendar-day {
        padding: 0.4rem !important;
        margin: 0 !important;
        border-radius: 3px !important;
        font-size: 0.9rem !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
    }
}

/* ===== VERTICAL MENU - NASCONDI SOLO IN PRANZO.PHP ===== */
.pranzo-page .vertical-menu {
    display: none !important;
}

/* ===== FONT SORA THIN PER CTA BUTTONS ===== */
.cta-button,
.intro-cta-button,
.menu-cta-button,
.submit-btn {
    font-family: 'Sora', sans-serif !important;
    font-weight: 100 !important;
}