.elementor-501 .elementor-element.elementor-element-d3abfdf{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;--background-transition:0.3s;--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}.elementor-501 .elementor-element.elementor-element-0f956a0 > .elementor-widget-container{padding:0px 0px 0px 0px;}.elementor-501 .elementor-element.elementor-element-612d6d7{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;--background-transition:0.3s;}.elementor-501 .elementor-element.elementor-element-612d6d7.e-con{--flex-grow:0;--flex-shrink:0;}.elementor-501 .elementor-element.elementor-element-f4c3323{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;--background-transition:0.3s;--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}@media(min-width:768px){.elementor-501 .elementor-element.elementor-element-612d6d7{--width:100.373%;}}/* Start custom CSS for html, class: .elementor-element-0f956a0 *//* ═══════════════════════════════════════════════════════════════
   STARINIERI - HEADER CSS
   ═══════════════════════════════════════════════════════════════ */

/* === HEADER BASE === */
.sr-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background-color: transparent;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.sr-header.is-scrolled {
    background-color: rgba(250, 247, 242, 0.98);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(44, 44, 44, 0.08);
}

.sr-header__container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1400px;
    margin: 0 auto;
    padding: 1.25rem 2rem;
    transition: padding 0.3s ease;
}

.sr-header.is-scrolled .sr-header__container {
    padding: 0.875rem 2rem;
}

/* === LOGO === */
.sr-header__logo {
    display: flex;
    flex-direction: column;
    text-decoration: none;
    transition: transform 0.3s ease;
}

.sr-header__logo:hover {
    transform: scale(1.02);
}

.sr-header__logo-text {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 1.75rem;
    font-weight: 600;
    color: #FFFFFF;
    letter-spacing: 0.05em;
    line-height: 1;
    transition: color 0.3s ease;
    text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.sr-header__logo-tagline {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.625rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.25em;
    color: rgba(255,255,255,0.85);
    margin-top: 0.25rem;
}

.sr-header.is-scrolled .sr-header__logo-text {
    color: #5C6B4A;
    text-shadow: none;
}

.sr-header.is-scrolled .sr-header__logo-tagline {
    color: #8B7355;
}

/* === NAVIGAZIONE === */
.sr-header__nav {
    display: flex;
    align-items: center;
}

.sr-header__menu {
    display: flex;
    align-items: center;
    gap: 2.5rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

.sr-header__menu-link {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.8125rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: #FFFFFF !important;
    text-decoration: none;
    position: relative;
    padding: 0.5rem 0;
    transition: color 0.3s ease;
    text-shadow: 0 2px 8px rgba(0,0,0,0.5);
}

.sr-header.is-scrolled .sr-header__menu-link {
    color: #4A4A4A !important;
    text-shadow: none;
}

.sr-header__menu-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #D4A853;
    transition: width 0.3s ease;
}

.sr-header__menu-link:hover::after,
.sr-header__menu-link.is-active::after {
    width: 100%;
}

.sr-header__menu-link:hover {
    color: #D4A853 !important;
}

/* === CTA BUTTON === */
.sr-header__cta {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.875rem 1.75rem;
    background-color: #FFFFFF;
    color: #2C2C2C;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    text-decoration: none;
    border-radius: 6px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.sr-header__cta:hover {
    background-color: #D4A853;
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(212, 168, 83, 0.4);
    color: #2C2C2C;
}

.sr-header__cta-icon {
    width: 16px;
    height: 16px;
}

/* === HAMBURGER (nascosto su desktop) === */
.sr-header__hamburger {
    display: none !important;
    flex-direction: column !important;
    justify-content: center !important;
    align-items: center !important;
    width: 48px !important;
    height: 48px !important;
    background-color: #D4A853 !important;
    border: none !important;
    border-radius: 8px !important;
    cursor: pointer !important;
    padding: 0 !important;
    z-index: 99999 !important;
    position: relative !important;
}

.sr-header__hamburger-line {
    display: block !important;
    width: 22px !important;
    height: 3px !important;
    background-color: #2C2C2C !important;
    margin: 3px 0 !important;
    border-radius: 2px !important;
    transition: all 0.3s ease;
}

.sr-header__hamburger.is-active {
    background-color: transparent !important;
}

.sr-header__hamburger.is-active .sr-header__hamburger-line {
    background-color: #FFFFFF !important;
}

.sr-header__hamburger.is-active .sr-header__hamburger-line:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
}

.sr-header__hamburger.is-active .sr-header__hamburger-line:nth-child(2) {
    opacity: 0;
}

.sr-header__hamburger.is-active .sr-header__hamburger-line:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
}

/* === MOBILE MENU === */
.sr-header__mobile-menu {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    width: 100vw !important;
    height: 100vh !important;
    background-color: #5C6B4A !important;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
    z-index: 99998 !important;
}

.sr-header__mobile-menu.is-open {
    opacity: 1;
    visibility: visible;
}

.sr-header__mobile-nav {
    text-align: center;
}

.sr-header__mobile-list {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem 0;
}

.sr-header__mobile-list li {
    margin: 1.5rem 0;
}

.sr-header__mobile-link {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 2rem;
    font-weight: 500;
    color: #FFFFFF !important;
    text-decoration: none;
}

.sr-header__mobile-link:hover {
    color: #D4A853 !important;
}

.sr-header__mobile-cta {
    display: inline-block;
    padding: 1rem 2rem;
    background-color: #D4A853 !important;
    color: #FFFFFF !important;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    text-decoration: none;
    border-radius: 4px;
}

.sr-header__mobile-cta:hover {
    background-color: #B8923F !important;
}

/* === BODY STATE === */
body.menu-open {
    overflow: hidden;
}

/* === RESPONSIVE TABLET === */
@media (max-width: 1024px) {
    .sr-header__menu {
        gap: 1.5rem;
    }
    
    .sr-header__cta span {
        display: none;
    }
    
    .sr-header__cta {
        padding: 0.75rem;
    }
}

/* === RESPONSIVE MOBILE === */
@media (max-width: 768px) {
    .sr-header__container {
        padding: 1rem 1.25rem;
    }
    
    .sr-header__nav,
    .sr-header__cta {
        display: none;
    }
    
    .sr-header__hamburger {
        display: flex !important;
    }
    
    .sr-header__logo-text {
        font-size: 1.5rem;
    }
}

/* === ACCESSIBILITÀ: Riduzione movimento === */
@media (prefers-reduced-motion: reduce) {
    .sr-header,
    .sr-header__container,
    .sr-header__logo,
    .sr-header__menu-link,
    .sr-header__menu-link::after,
    .sr-header__cta,
    .sr-header__mobile-menu,
    .sr-header__hamburger-line {
        transition: none !important;
    }
}

/* === ACCESSIBILITÀ: Focus tastiera === */
.sr-header__menu-link:focus-visible,
.sr-header__logo:focus-visible {
    outline: 2px solid #D4A853;
    outline-offset: 4px;
}

.sr-header__cta:focus-visible {
    outline: 2px solid #5C6B4A;
    outline-offset: 4px;
}

.sr-header__hamburger:focus-visible {
    outline: 2px solid #FFFFFF;
    outline-offset: 3px;
}

.sr-header__mobile-link:focus-visible,
.sr-header__mobile-cta:focus-visible {
    outline: 2px solid #D4A853;
    outline-offset: 4px;
}

/* === Safe area (notch / island) === */
.sr-header__container {
    padding-top: max(1.25rem, env(safe-area-inset-top));
}

.sr-header.is-scrolled .sr-header__container {
    padding-top: max(0.875rem, env(safe-area-inset-top));
}

@media (max-width: 768px) {
    .sr-header__container {
        padding-top: max(1rem, env(safe-area-inset-top));
    }
}

/* === Stampa === */
@media print {
    .sr-header {
        position: relative;
        background-color: #FAF7F2;
        box-shadow: none;
    }
    .sr-header__logo-text { color: #2C2C2C; text-shadow: none; }
    .sr-header__logo-tagline { color: #666; }
    .sr-header__menu-link { color: #2C2C2C !important; text-shadow: none; }
    .sr-header__hamburger,
    .sr-header__mobile-menu { display: none !important; }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-a0cfb66 *//* ═══════════════════════════════════════════════════════════════
   STARINIERI - PAGINA MENU CSS
   Versione con design coerente (margini intenzionali)
   ═══════════════════════════════════════════════════════════════ */

/* ==================== HERO MENU ==================== */
.sr-menu-hero {
    position: relative;
    height: 50vh;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border-radius: 0 0 12px 12px;
}

.sr-menu-hero__bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
}

.sr-menu-hero__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        180deg,
        rgba(44, 44, 44, 0.4) 0%,
        rgba(44, 44, 44, 0.6) 100%
    );
}

.sr-menu-hero__content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 2rem;
}

.sr-menu-hero__label {
    display: inline-block;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.6875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.25em;
    color: #D4A853;
    margin-bottom: 1rem;
}

.sr-menu-hero__title {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 3.5rem;
    font-weight: 500;
    color: #FFFFFF !important;
    margin-bottom: 1rem;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.sr-menu-hero__subtitle {
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.8;
    margin: 0;
}

.sr-menu-hero__subtitle em {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 1.125rem;
    font-style: italic;
    color: #D4A853;
}

/* ==================== INTRO STAGIONALE ==================== */
.sr-menu-intro {
    padding: 4rem 2rem;
    margin-top: 3rem;
    background-color: #FAF7F2;
    text-align: center;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(44, 44, 44, 0.08);
}

.sr-menu-intro__container {
    max-width: 700px;
    margin: 0 auto;
}

.sr-menu-intro__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background-color: rgba(92, 107, 74, 0.1);
    border-radius: 50%;
    margin-bottom: 1.5rem;
}

.sr-menu-intro__icon svg {
    width: 28px;
    height: 28px;
    color: #5C6B4A;
}

.sr-menu-intro__title {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 2.5rem;
    font-weight: 500;
    color: #2C2C2C;
    margin-bottom: 0.25rem;
}

.sr-menu-intro__subtitle {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.8125rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: #D4A853;
    margin-bottom: 1.5rem;
}

.sr-menu-intro__text {
    font-size: 1.0625rem;
    color: #4A4A4A;
    line-height: 1.8;
    margin: 0;
}

/* ==================== MENU CARDS ==================== */
.sr-menu-cards {
    padding: 5rem 0;
    background-color: #FFFFFF;
}

.sr-menu-cards__container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 2rem;
}

.sr-menu-cards__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
}

.sr-menu-card {
    position: relative;
    background-color: #FAF7F2;
    border-radius: 12px;
    padding: 2.5rem;
    transition: all 0.4s ease;
}

.sr-menu-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(44, 44, 44, 0.12);
}

.sr-menu-card--featured {
    background: linear-gradient(135deg, #5C6B4A 0%, #4A5A3A 100%);
    color: #FFFFFF;
}

.sr-menu-card__header {
    text-align: center;
    margin-bottom: 1.5rem;
}

.sr-menu-card__badge {
    display: inline-block;
    padding: 0.375rem 1rem;
    background-color: #D4A853;
    border-radius: 20px;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.625rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #2C2C2C;
    margin-bottom: 1rem;
}

.sr-menu-card__badge--alt {
    background-color: rgba(212, 168, 83, 0.15);
    color: #D4A853;
}

.sr-menu-card--featured .sr-menu-card__badge {
    background-color: #D4A853;
    color: #2C2C2C;
}

.sr-menu-card__title {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 2rem;
    font-weight: 500;
    color: #2C2C2C;
    margin-bottom: 0.75rem;
}

.sr-menu-card--featured .sr-menu-card__title {
    color: #FFFFFF;
}

.sr-menu-card__price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 0.25rem;
}

.sr-menu-card__price-value {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 3.5rem;
    font-weight: 600;
    color: #5C6B4A;
    line-height: 1;
}

.sr-menu-card--featured .sr-menu-card__price-value {
    color: #D4A853;
}

.sr-menu-card__price-currency {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 1.5rem;
    font-weight: 500;
    color: #5C6B4A;
}

.sr-menu-card--featured .sr-menu-card__price-currency {
    color: #D4A853;
}

.sr-menu-card__price-person {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.75rem;
    color: #8A8A8A;
    margin-left: 0.5rem;
}

.sr-menu-card--featured .sr-menu-card__price-person {
    color: rgba(255, 255, 255, 0.7);
}

.sr-menu-card__description {
    font-size: 0.9375rem;
    color: #4A4A4A;
    text-align: center;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.sr-menu-card--featured .sr-menu-card__description {
    color: rgba(255, 255, 255, 0.85);
}

.sr-menu-card__divider {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.sr-menu-card__divider span {
    color: #D4A853;
    font-size: 0.875rem;
}

.sr-menu-card__list {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem 0;
}

.sr-menu-card__item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(44, 44, 44, 0.08);
}

.sr-menu-card--featured .sr-menu-card__item {
    border-bottom-color: rgba(255, 255, 255, 0.15);
}

.sr-menu-card__item:last-child {
    border-bottom: none;
}

.sr-menu-card__item-icon {
    flex-shrink: 0;
    margin-top: 0.25rem;
}

.sr-menu-card__item-icon svg {
    width: 8px;
    height: 8px;
    color: #D4A853;
}

.sr-menu-card__item-text {
    font-size: 0.9375rem;
    color: #4A4A4A;
    line-height: 1.5;
}

.sr-menu-card--featured .sr-menu-card__item-text {
    color: rgba(255, 255, 255, 0.9);
}

.sr-menu-card__item-text strong {
    color: #2C2C2C;
    font-weight: 600;
}

.sr-menu-card--featured .sr-menu-card__item-text strong {
    color: #FFFFFF;
}

.sr-menu-card__item--highlight {
    background-color: rgba(212, 168, 83, 0.1);
    margin: 0.5rem -1rem;
    padding: 0.75rem 1rem;
    border-radius: 6px;
    border-bottom: none;
}

.sr-menu-card__item-extra {
    display: block;
    font-size: 0.75rem;
    color: #D4A853;
    font-weight: 500;
    margin-top: 0.25rem;
}

.sr-menu-card__included {
    background-color: rgba(255, 255, 255, 0.6);
    padding: 1rem;
    border-radius: 8px;
    margin-bottom: 1.5rem;
    text-align: center;
}

.sr-menu-card--featured .sr-menu-card__included {
    background-color: rgba(255, 255, 255, 0.1);
}

.sr-menu-card__included-label {
    display: block;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.6875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #8A8A8A;
    margin-bottom: 0.25rem;
}

.sr-menu-card--featured .sr-menu-card__included-label {
    color: rgba(255, 255, 255, 0.6);
}

.sr-menu-card__included-text {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 1.0625rem;
    color: #2C2C2C;
    margin: 0;
}

.sr-menu-card--featured .sr-menu-card__included-text {
    color: #FFFFFF;
}

.sr-menu-card__btn {
    display: block;
    width: 100%;
    padding: 1rem;
    background-color: #D4A853;
    color: #FFFFFF !IMPORTANT;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.8125rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    text-align: center;
    text-decoration: none;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.sr-menu-card__btn:hover {
    background-color: #B8923F;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(212, 168, 83, 0.3);
    color: #2C2C2C;
}

/* ==================== LE CERTEZZE ==================== */
.sr-menu-certezze {
    padding: 5rem 0;
    background-color: #F0EBE3;
}

.sr-menu-certezze__container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 2rem;
}

.sr-menu-certezze__header {
    text-align: center;
    margin-bottom: 3.5rem;
}

.sr-menu-certezze__label {
    display: inline-block;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: #D4A853;
    margin-bottom: 0.75rem;
}

.sr-menu-certezze__title {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 2.5rem;
    font-weight: 500;
    color: #2C2C2C;
    margin-bottom: 0.75rem;
}

.sr-menu-certezze__subtitle {
    font-size: 1.0625rem;
    color: #4A4A4A;
    margin: 0;
}

.sr-menu-certezze__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.sr-menu-certezza {
    background-color: #FFFFFF;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.4s ease;
}

.sr-menu-certezza:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(44, 44, 44, 0.12);
}

.sr-menu-certezza__image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.sr-menu-certezza__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.sr-menu-certezza:hover .sr-menu-certezza__image img {
    transform: scale(1.05);
}

.sr-menu-certezza__content {
    padding: 1.5rem;
}

.sr-menu-certezza__title {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 1.375rem;
    font-weight: 600;
    color: #2C2C2C;
    margin-bottom: 0.5rem;
}

.sr-menu-certezza__text {
    font-size: 0.9375rem;
    color: #4A4A4A;
    line-height: 1.6;
    margin: 0;
}

/* ==================== NOTE IMPORTANTI ==================== */
.sr-menu-note {
    padding: 5rem 0;
    background-color: #FFFFFF;
}

.sr-menu-note__container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 2rem;
}

.sr-menu-note__box {
    background-color: #FDF8F0;
    border: 2px solid #E6D5B8;
    border-radius: 12px;
    padding: 2.5rem;
}

.sr-menu-note__icon {
    display: flex;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.sr-menu-note__icon svg {
    width: 40px;
    height: 40px;
    color: #D4A853;
}

.sr-menu-note__title {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 1.75rem;
    font-weight: 500;
    color: #2C2C2C;
    text-align: center;
    margin-bottom: 2rem;
}

.sr-menu-note__items {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.sr-menu-note__item {
    display: flex;
    gap: 1rem;
    padding: 1.25rem;
    background-color: #FFFFFF;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(44, 44, 44, 0.06);
}

.sr-menu-note__item-icon {
    flex-shrink: 0;
}

.sr-menu-note__item-icon svg {
    width: 24px;
    height: 24px;
    color: #5C6B4A;
}

.sr-menu-note__item-content h4 {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 1.25rem;
    font-weight: 600;
    color: #2C2C2C;
    margin-bottom: 0.375rem;
}

.sr-menu-note__item-content p {
    font-size: 0.9375rem;
    color: #4A4A4A;
    line-height: 1.6;
    margin: 0;
}

.sr-menu-note__item-content strong {
    color: #5C6B4A;
}

.sr-menu-note__footer {
    font-size: 0.9375rem;
    font-style: italic;
    color: #8A8A8A;
    text-align: center;
    margin: 0;
}

/* ==================== CTA PRENOTAZIONE ==================== */
.sr-menu-cta {
    padding: 5rem 0;
    background: linear-gradient(135deg, #5C6B4A 0%, #4A5A3A 100%);
    text-align: center;
    border-radius: 12px;
    margin-bottom: 3rem;
}

.sr-menu-cta__container {
    max-width: 600px;
    margin: 0 auto;
    padding: 0 2rem;
}

.sr-menu-cta__title {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 2.25rem;
    font-weight: 500;
    color: #FFFFFF !important;
    margin-bottom: 0.75rem;
}

.sr-menu-cta__text {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 2rem;
}

.sr-menu-cta__btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1.125rem 2.5rem;
    background-color: #49CA3E;
    color: #FFFFFF !important;
    font-family: 'Montserrat', sans-serif;
    font-size: 0,5rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    text-decoration: none;
    border-radius: 6px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.3);
}

.sr-menu-cta__btn:hover {
    background-color: #20BD5A;
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.4);
    color: #FFFFFF;
}

.sr-menu-cta__btn svg {
    width: 22px;
    height: 22px;
}

/* ==================== RESPONSIVE ==================== */
@media (max-width: 1024px) {
    .sr-menu-cards__grid {
        gap: 2rem;
    }
    
    .sr-menu-certezze__grid {
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .sr-menu-hero {
        height: 45vh;
        min-height: 350px;
        border-radius: 0 0 12px 12px;
    }
    
    .sr-menu-hero__title {
        font-size: 2.5rem;
    }
    
    .sr-menu-intro {
        padding: 3rem 1.5rem;
        margin-top: 2rem;
        margin-left: 0;
        margin-right: 0;
        border-radius: 12px;
    }
    
    .sr-menu-intro__title {
        font-size: 2rem;
    }
    
    .sr-menu-cards {
        padding: 3rem 0;
    }
    
    .sr-menu-cards__grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .sr-menu-card {
        padding: 2rem;
    }
    
    .sr-menu-certezze {
        padding: 3rem 0;
    }
    
    .sr-menu-certezze__grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .sr-menu-certezze__title {
        font-size: 2rem;
    }
    
    .sr-menu-note {
        padding: 3rem 0;
    }
    
    .sr-menu-note__box {
        padding: 2rem 1.5rem;
    }
    
    .sr-menu-note__title {
        font-size: 1.5rem;
    }
    
    .sr-menu-note__item {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .sr-menu-cta {
        padding: 4rem 1.5rem;
        border-radius: 12px;
        margin-bottom: 2rem;
    }
    
    .sr-menu-cta__title {
        font-size: 1.875rem;
    }
}

@media (max-width: 480px) {
    .sr-menu-hero {
        height: 40vh;
        min-height: 300px;
    }
    
    .sr-menu-hero__content {
        padding: 1.5rem;
    }
    
    .sr-menu-hero__title {
        font-size: 2rem;
    }
    
    .sr-menu-cards__container,
    .sr-menu-certezze__container,
    .sr-menu-note__container,
    .sr-menu-cta__container {
        padding: 0 1rem;
    }
    
    .sr-menu-card__price-value {
        font-size: 3rem;
    }
    
    .sr-menu-cta__btn {
        width: 100%;
        justify-content: center;
    }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-c963685 *//* ═══════════════════════════════════════════════════════════════
   STARINIERI - FOOTER CSS
   Inserire questo CSS nell'elemento HTML di Elementor (sezione CSS)
   ═══════════════════════════════════════════════════════════════ */

.sr-footer {
    position: relative;
    background-color: #3D4A32;
    color: #FFFFFF;
}

/* === PATTERN DECORATIVO === */
.sr-footer__pattern {
    position: absolute;
    top: -39px;
    left: 0;
    right: 0;
    height: 40px;
    color: #3D4A32;
    overflow: hidden;
}

.sr-footer__pattern svg {
    width: 100%;
    height: 100%;
}

/* === MAIN FOOTER === */
.sr-footer__main {
    padding: 5rem 0 3rem;
}

.sr-footer__container {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 3rem;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* === BRAND COLUMN === */
.sr-footer__brand {
    padding-right: 2rem;
}

.sr-footer__logo {
    display: inline-flex;
    flex-direction: column;
    text-decoration: none;
    margin-bottom: 1.5rem;
}

.sr-footer__logo-text {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 2rem;
    font-weight: 600;
    color: #FFFFFF;
    letter-spacing: 0.05em;
    line-height: 1;
}

.sr-footer__logo-tagline {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.625rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.25em;
    color: #D4A853;
    margin-top: 0.375rem;
}

.sr-footer__description {
    font-size: 0.9375rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: 1.5rem;
}

/* === SOCIAL LINKS === */
.sr-footer__social {
    display: flex;
    gap: 0.75rem;
}

.sr-footer__social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: #FFFFFF !important;
    transition: all 0.3s ease;
}

.sr-footer__social-link:hover {
    background-color: #D4A853;
    color: #2C2C2C;
    transform: translateY(-3px);
}

.sr-footer__social-link svg {
    width: 20px;
    height: 20px;
}

/* === COLUMNS === */
.sr-footer__column {
    padding-top: 0.5rem;
}

.sr-footer__title {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 1.25rem;
    font-weight: 600;
    color: #FFFFFF !important;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.75rem;
}

.sr-footer__title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background-color: #D4A853;
}

/* === CONTACT LIST === */
.sr-footer__list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.sr-footer__item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 1rem;
    font-size: 0.9375rem;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.5;
}

.sr-footer__item a {
    color: rgba(255, 255, 255, 0.75);
    text-decoration: none;
    transition: color 0.3s ease;
}

.sr-footer__item a:hover {
    color: #D4A853;
}

.sr-footer__icon {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    margin-top: 0.125rem;
    color: #D4A853;
}

/* === HOURS === */
.sr-footer__hours-note {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.8125rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #D4A853;
    margin-bottom: 1rem;
}

.sr-footer__hours-table {
    width: 100%;
    font-size: 0.9375rem;
    border-collapse: collapse;
}

.sr-footer__hours-table tr {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.sr-footer__hours-table tr:last-child {
    border-bottom: none;
}

.sr-footer__hours-table td {
    padding: 0.5rem 0;
    color: rgba(255, 255, 255, 0.75);
}

.sr-footer__hours-table td:last-child {
    text-align: right;
}

.sr-footer__hours-table td.closed {
    color: rgba(255, 255, 255, 0.4);
    font-style: italic;
}

/* === NAV LINKS === */
.sr-footer__nav {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem 0;
}

.sr-footer__nav li {
    margin-bottom: 0.625rem;
}

.sr-footer__nav a {
    font-size: 0.9375rem;
    color: rgba(255, 255, 255, 0.75);
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    padding-left: 0;
}

.sr-footer__nav a:hover {
    color: #D4A853;
    padding-left: 0.5rem;
}

/* === FOOTER CTA === */
.sr-footer__cta {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.25rem;
    background-color: #49CA3E !important;
    color: #FFFFFF !important;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.8125rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.sr-footer__cta:hover {
    background-color: #20BD5A;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
    color: #FFFFFF;
}

.sr-footer__cta svg {
    width: 18px;
    height: 18px;
}

/* === BOTTOM BAR === */
.sr-footer__bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 1.5rem 0;
}

.sr-footer__bottom .sr-footer__container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    grid-template-columns: 1fr;
}

.sr-footer__copyright,
.sr-footer__legal {
    font-size: 0.8125rem;
    color: rgba(255, 255, 255, 0.5);
    margin: 0;
}

.sr-footer__legal a {
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    transition: color 0.3s ease;
}

.sr-footer__legal a:hover {
    color: #D4A853;
}

/* === RESPONSIVE === */
@media (max-width: 1024px) {
    .sr-footer__container {
        grid-template-columns: 1fr 1fr;
        gap: 2.5rem;
    }
    
    .sr-footer__brand {
        grid-column: span 2;
        padding-right: 0;
        text-align: center;
    }
    
    .sr-footer__social {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    /* === ORARI MOBILE MIGLIORATI === */
.sr-footer__hours-table {
    max-width: 100%;
    width: 100%;
}

.sr-footer__hours-table tr {
    display: flex;
    flex-direction: column;
    text-align: center;
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.sr-footer__hours-table tr:last-child {
    border-bottom: none;
    padding-top: 0;
}

.sr-footer__hours-table td {
    padding: 0.25rem 0;
    text-align: center !important;
}

.sr-footer__hours-table td:first-child {
    font-weight: 600;
    color: #FFFFFF;
    font-size: 0.9375rem;
}

.sr-footer__hours-table td:last-child {
    text-align: center !important;
    color: #D4A853;
    font-size: 1rem;
}

.sr-footer__hours-table td.closed {
    color: rgba(255, 255, 255, 0.5);
}

.sr-footer__hours-table td:empty {
    display: none;
}
    .sr-footer__main {
        padding: 4rem 0 2.5rem;
    }
    
    .sr-footer__container {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 0 1.25rem;
        text-align: center;
    }
    
    .sr-footer__brand {
        grid-column: span 1;
    }
    
    .sr-footer__title::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .sr-footer__item {
        justify-content: center;
    }
    
    .sr-footer__hours-note {
        justify-content: center;
    }
    
    .sr-footer__hours-table {
        max-width: 250px;
        margin: 0 auto;
    }
    
    .sr-footer__bottom .sr-footer__container {
        flex-direction: column;
        gap: 0.75rem;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .sr-footer__main {
        padding: 3rem 0 2rem;
    }
    
    .sr-footer__logo-text {
        font-size: 1.75rem;
    }
    
    .sr-footer__cta {
        width: 100%;
        justify-content: center;
    }
}

/* === ACCESSIBILITÀ: Riduzione movimento === */
@media (prefers-reduced-motion: reduce) {
    .sr-footer__social-link,
    .sr-footer__item a,
    .sr-footer__nav a,
    .sr-footer__cta,
    .sr-footer__legal a {
        transition: none !important;
    }
    .sr-footer__social-link:hover,
    .sr-footer__cta:hover {
        transform: none;
    }
}

/* === ACCESSIBILITÀ: Focus tastiera === */
.sr-footer__logo:focus-visible,
.sr-footer__social-link:focus-visible {
    outline: 2px solid #D4A853;
    outline-offset: 4px;
}

.sr-footer__nav a:focus-visible,
.sr-footer__item a:focus-visible,
.sr-footer__legal a:focus-visible {
    outline: 2px solid #D4A853;
    outline-offset: 2px;
}

.sr-footer__cta:focus-visible {
    outline: 2px solid #FFFFFF;
    outline-offset: 4px;
}

/* === Safe area (home indicator / notch) === */
.sr-footer__bottom {
    padding-bottom: max(1.5rem, env(safe-area-inset-bottom));
}

@media (max-width: 768px) {
    .sr-footer__main {
        padding-bottom: max(2.5rem, env(safe-area-inset-bottom));
    }
}

@media (max-width: 480px) {
    .sr-footer__main {
        padding-bottom: max(2rem, env(safe-area-inset-bottom));
    }
}

/* === Stampa === */
@media print {
    .sr-footer__pattern {
        display: none;
    }
    .sr-footer__social-link:hover,
    .sr-footer__cta:hover {
        transform: none;
    }
    .sr-footer a {
        color: #3D4A32;
    }
}/* End custom CSS */