/* Inline styles extracted from index.html, sedi.html, and sede.html */

/* From index.html */
/* Formato 3:4 per le slide dei ristoranti */
#ristoranti-carousel .interactive-banner-style-09 {
    aspect-ratio: 3 / 4;
    height: auto;
}

/* Fix per visualizzazione frecce navigazione */
#ristoranti-carousel {
    overflow: visible !important;
}

#ristoranti-carousel .outside-box-right-30 {
    overflow: visible !important;
}

#ristoranti-carousel .swiper {
    overflow: visible !important;
}

/* Fix per altezza uniforme delle card specialities */
@media (min-width: 992px) {
    .services-box-style-02 {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }

    .services-box-style-02 > .col {
        width: 100%;
        margin-bottom: 0 !important;
    }
}

/* Effetto hover per le card */
.services-box-style-02 .row.g-0 {
    transition: all 0.3s ease;
}

.services-box-style-02 .row.g-0:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15) !important;
}

.services-box-style-02 .services-box-img .cover-background {
    transition: transform 0.5s ease;
}

.services-box-style-02 .row.g-0:hover .services-box-img .cover-background {
    transform: scale(1.05);
}

@media (min-width: 576px) and (max-width: 991px) {
    .services-box-style-02 .services-box-img .cover-background {
        min-height: 320px;
    }
}

/* Full width services */
.service-panels .service-panel {
    overflow: hidden;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.service-panels .service-visual {
    background-size: cover;
    background-position: center;
    min-height: 60vh;
    filter: saturate(1.05);
}

.service-panels .service-copy {
    display: flex;
    align-items: center;
    position:relative;
    padding-left: 20px;
}

.flex-lg-row-reverse  .service-copy {
    padding-left: 0;
    padding-right: 20px;
}


.service-panels .service-inner {
    padding: clamp(30px, 4vw, 80px);
    max-width: 640px;
    margin: 0 auto;
}

.service-panels .service-icon {
    width: 70px;
    height: 70px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--base-color);
    color: #fff;
    font-size: 38px;
    position: relative;
    overflow: hidden;
    position:absolute; 
    top:50%;
    margin-top: -35px;
    left: -35px;
    border: 2px #F7F7F7 solid;
}

.flex-lg-row-reverse .service-icon {
    left:auto;
    right:-35px;
}

.service-panels .service-eyebrow {
    letter-spacing: 1.2px;
}

.service-panels .service-tag {
    display: inline-flex;
    align-items: center;
    padding: 9px 14px;
    border-radius: 999px;
    background: rgba(0, 0, 0, 0.04);
    border: 1px solid rgba(0, 0, 0, 0.05);
    color: var(--base-color);
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.6px;
}

.service-panels .service-cta {
    margin-top: 24px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--base-color);
    font-weight: 700;
    letter-spacing: 0.6px;
    text-decoration: none;
    position: relative;
    padding-bottom: 5px;
}

.service-panels .service-cta::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    height: 2px;
    width: 100%;
    background: var(--base-color);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.35s ease;
}

.service-panels .service-cta:hover::after,
.service-panels .service-cta:focus-visible::after {
    transform: scaleX(1);
}

@media (max-width: 1199px) {
    .service-panels .service-visual {
        min-height: 380px;
    }
}

@media (max-width: 991px) {
    .service-panels .service-panel {
        
    }

    .service-panels .service-visual {
        min-height: 60vh;
        background-attachment: scroll !important;
    }

    .service-panels .service-icon {
        left: 50%!important;
        right:auto!important;
        margin-top: -35px!important;
        margin-left: -35px!important;
        top:0!important;
    }

    .service-panels .service-copy {
        padding-left: 0!important;
        padding-right: 0!important;
        padding-top: 40px!important;
        padding-bottom: 20px!important;
    }

    .service-copy {
        text-align: center;
    }

}

@media (max-width: 767px) {
    .service-panels .service-panel {
       
    }

    .service-panels .service-visual {
        min-height: 50vh;
        background-attachment: scroll !important;
    }
}

/* Hover animato per link sedi */
.footer-locations a {
    position: relative;
    display: inline-flex;
    align-items: center;
    padding-bottom: 6px;
    text-decoration: none !important;
    transition: color 0.3s ease, transform 0.3s ease;
}

.footer-locations a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 2px;
    background: var(--base-color);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
    opacity: 0.85;
}

.footer-locations a:hover,
.footer-locations a:focus-visible {
    color: var(--base-color) !important;
    transform: translateY(-2px);
}

.footer-locations a:hover::after,
.footer-locations a:focus-visible::after {
    transform: scaleX(1);
}


/* Transizioni smooth per header sticky */
header .navbar {
    transition: background-color 0.4s ease, box-shadow 0.4s ease, transform 0.3s ease;
}

header .navbar .container-fluid {
    transition: padding 0.4s ease;
}

header .navbar-brand,
header .header-switch-brand {
    transition: color 0.4s ease, padding 0.4s ease;
}

header .header-push-button .push-button span {
    transition: background-color 0.4s ease;
}

header .btn,
header .header-switch-solid {
    transition: background-color 0.4s ease, border-color 0.4s ease, color 0.4s ease, transform 0.3s ease, box-shadow 0.3s ease;
}

header .btn:hover {
    transform: translateY(-2px);
}

header #langDropdown,
header #langDropdownMobile {
    transition: background-color 0.3s ease, border-color 0.3s ease;
}

header a,
header .dropdown-toggle {
    transition: color 0.4s ease;
}

/* Gradiente newsletter box */
.newsletter-gradient {
    background: linear-gradient(180deg, #EFEFEF 0%, #FFFFFF 100%) !important;
}

/* Overlay per menu laterale */
.menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    z-index: 998;
}

/* Overlay visibile quando il menu è aperto */
.show-menu .menu-overlay {
    opacity: 1;
    visibility: visible;
}

/* Assicura che il menu sia sopra l'overlay */
.push-menu {
    z-index: 999;
}

/* Video hero background */
.video-hero-section {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
}

.video-hero-background {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    z-index: 0;
    object-fit: cover;
}

/* Gradiente overlay per video hero */
.hero-overlay-light {
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.4) 100%);
    height: 100%;
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    opacity: 1 !important;
}

.video-hero-content {
    position: relative;
    z-index: 2;
    height: 100%;
}

/* Fix centramento verticale box "Ciò che conta" su mobile */
@media (max-width: 767px) {
    .full-screen.d-flex {
        padding-top: 80px !important;
        padding-bottom: 80px !important;
        flex-direction: column !important;
        justify-content: space-between !important;
    }
    .full-screen.d-flex .row.justify-content-center {
        margin: auto 0 !important;
    }
}

/* Dropdown lingua compatto */
#langDropdown,
#langDropdownMobile {
    padding: 6px 12px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 0;
    transition: all 0.3s ease;
    background-color: transparent;
}

#langDropdown:hover,
#langDropdownMobile:hover {
    background-color: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-1px);
}

header.sticky.sticky-active #langDropdown,
header.sticky.sticky-active #langDropdownMobile {
    border-color: rgba(0, 0, 0, 0.1);
}

header.sticky.sticky-active #langDropdown:hover,
header.sticky.sticky-active #langDropdownMobile:hover {
    background-color: rgba(0, 0, 0, 0.05);
    border-color: rgba(0, 0, 0, 0.2);
}

#langDropdown + .dropdown-menu,
#langDropdownMobile + .dropdown-menu {
    min-width: auto;
    padding: 4px;
    border-radius: 0;
    border: none;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.12);
    margin-top: 8px;
    background-color: #ffffff !important;
}

#langDropdown + .dropdown-menu .dropdown-item,
#langDropdownMobile + .dropdown-menu .dropdown-item {
    padding: 8px 16px;
    border-radius: 0;
    font-size: 13px;
    font-weight: 500;
    transition: all 0.2s ease;
    color: #262b35 !important;
    background-color: transparent !important;
}

#langDropdown + .dropdown-menu .dropdown-item:hover,
#langDropdownMobile + .dropdown-menu .dropdown-item:hover {
    background-color: var(--base-color) !important;
    color: white !important;
    transform: translateX(2px);
}

#langDropdown + .dropdown-menu .dropdown-item:focus,
#langDropdownMobile + .dropdown-menu .dropdown-item:focus {
    background-color: var(--base-color) !important;
    color: white !important;
}

#langDropdown + .dropdown-menu .dropdown-item:active,
#langDropdownMobile + .dropdown-menu .dropdown-item:active {
    background-color: var(--base-color) !important;
    color: white !important;
}

/* Rende tutti i box completamente squadrati */
[class*="border-radius"],
.btn,
button,
input,
select,
textarea,
.form-control,
.dropdown-menu,
.dropdown-item,
.push-menu,
.close-menu,
.menu-panel-close,
.menu-side-panel,
.services-box-style-02 .row.g-0,
.review-style-02 .d-flex,
.newsletter-style-02 .form-control,
.newsletter-style-02 .submit {
    border-radius: 0 !important;
}

/* Mantiene lo spinner circolare */
.menu-loader-spinner {
    border-radius: 50% !important;
}

/* Navigazione carousel ristoranti: bottoni squadrati sovrapposti come la gallery */
.restaurants-nav {
    position: absolute;
    top: -5px;
    left: 10px;
    display: flex;
    gap: 12px;
    z-index: 5;
}
.restaurants-nav button {
    width: 48px;
    height: 38px;
    border: 1px solid var(--base-color);
    background-color: #ffffff !important;
    color: var(--base-color);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 0;
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}
.restaurants-nav button:hover {
    transform: translateY(-2px);
    border-color: var(--base-color);
    box-shadow: 0 16px 36px rgba(0, 0, 0, 0.12);
}
.restaurants-nav i {
    font-size: 18px;
    color: var(--base-color);
}

@media (max-width: 767px) {
    .restaurants-nav {
        left: auto;
        right: -15px;
    }
}

/* Promo Slider Styles */
.promo-slider {
    background: var(--base-color);
    position: relative;
    overflow: hidden;
}

.promo-slider .swiper-slide {
    position: relative;
    overflow: hidden;
}

.promo-slide-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    background-size: cover;
    background-position: center;
    filter: grayscale(100%) brightness(0.4);
    opacity: 0.12;
    z-index: 0;
}

@media (max-width: 991px) {
    .promo-slider {

    }
}

@media (max-width: 575px) {
    .promo-slider {

    }
}

.promo-slide-wrapper {
    min-height: 620px;
    display: flex;
    align-items: center;
    padding: 20px 26px;
    position: relative;
    z-index: 1;
    padding:100px 20px 150px 20px;
}

@media (max-width: 991px) {
    .promo-slide-wrapper {
        min-height: auto;
        padding: 50px 20px 150px 20px;
    }
}

.promo-slide-wrapper .container-fluid {
    max-width: 1320px;
    padding: 0;
}

.promo-slide-wrapper .row {
    margin: 0;
    height: 100%;
    background: #ffffff;
    border-radius: 0;
    overflow: hidden;
    box-shadow: 0 28px 80px rgba(0, 0, 0, 0.12);
    align-items: stretch;
}

.promo-slide-wrapper .row > [class*="col-"] {
    padding: 0;
}

.promo-content {
    padding: 70px 80px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
    color: #262b35;
}

@media (max-width: 1400px) {
    .promo-content {
        padding: 60px;
    }
}

@media (max-width: 991px) {
    .promo-content {
        padding: 35px;
        text-align: center;
    }
}

@media (max-width: 575px) {
    .promo-content {
        padding: 24px;
    }
}

/* Badge ristorante (solo nella home) */
.promo-restaurant-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--base-color);
    color: #ffffff;
    padding: 9px 18px;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.5px;
    border-radius: 0;
    border: none;
    animation: badgeSlideIn 0.6s ease-out 0.3s both;
}

@media (max-width: 992px) {
    .promo-restaurant-badge {

    }
}

@media (max-width: 575px) {
    .promo-restaurant-badge {
        font-size: 12px;
        padding: 7px 14px;
        letter-spacing: 0.3px;
    }
}

@media (max-width: 991px) {
    .promo-restaurant-badge {
        text-align: center;
        justify-content: center;
        margin-left: auto;
        margin-right: auto;
    }
}

@keyframes badgeSlideIn {
    from {
        opacity: 0;
        transform: translateX(-20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.promo-subtitle {
    font-size: 14px;
    color: var(--base-color);
    letter-spacing: 1px;
    animation: promoFadeInLeft 0.6s ease-out 0.4s both;
}

.promo-title {
    font-size: 48px;
    line-height: 1.2;
    color: #262b35;
    animation: promoFadeInLeft 0.6s ease-out 0.5s both;
}

@media (max-width: 991px) {
    .promo-title {
        font-size: 36px;
    }
}

@media (max-width: 575px) {
    .promo-title {
        font-size: 28px;
    }
}

.promo-text {
    color: #626262;
    font-size: 17px;
    line-height: 1.8;
    animation: promoFadeInLeft 0.6s ease-out 0.6s both;
}

.promo-buttons {
    animation: promoFadeInLeft 0.6s ease-out 0.7s both;
}

@media (max-width: 991px) {
    .promo-buttons {
        justify-content: center;
    }
}

.promo-slide-wrapper .btn-base-color {
    background-color: var(--base-color);
    color: #ffffff !important;
    border-color: var(--base-color);
    box-shadow: none;
}

.promo-slide-wrapper .btn-base-color:hover {
    background-color: var(--dark-gray);
    color: #ffffff !important;
}

.promo-slide-wrapper .btn-transparent-dark-gray {
    border-color: #262b35;
    color: #262b35;
}

.promo-slide-wrapper .btn-transparent-dark-gray:hover {
    background-color: #262b35;
    color: #ffffff !important;
}

@keyframes promoFadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Promo Image */
.promo-image-wrapper {
    height: 100%;
    display: flex;
    align-items: stretch;
    background: #ffffff;
}

@media (max-width: 991px) {
    .promo-image-wrapper {
        padding: 0;
        min-height: 420px;
    }
}

@media (max-width: 575px) {
    .promo-image-wrapper {
        padding: 0;
        min-height: 320px;
    }
}

.promo-image {
    width: 100%;
    height: 100%;
    min-height: 520px;
    aspect-ratio: 4 / 3;
    border-radius: 0;
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.15);
    transition: all 0.4s ease;
    animation: promoFadeInRight 0.8s ease-out both;
    background: #f5f5f5;
}

@media (max-width: 991px) {
    .promo-image {
        min-height: 420px;
    }
}

@media (max-width: 575px) {
    .promo-image {
        min-height: 320px;
    }
}

@keyframes promoFadeInRight {
    from {
        opacity: 0;
        transform: translateX(20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.promo-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    transition: transform 0.6s ease;
}

.swiper-slide-active .promo-image:hover img {
    transform: scale(1.05);
}

/* Promo Badge */
.promo-badge {
    top: 25px;
    right: 25px;
    background: var(--base-color);
    padding: 12px 22px;
    z-index: 2;
    animation: badgePulse 2s ease-in-out infinite;
}

.promo-badge-sale {
    background: #dc3131;
}

@keyframes badgePulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

.promo-badge .badge-text {
    color: white;
    font-weight: 600;
    font-size: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Promo Navigation */
.promo-navigation {
    padding: 0 15px;
    position: absolute;
    bottom: 50px;
    z-index:2;
}

@media (max-width: 575px) {

}

.promo-nav-wrapper {
    max-width: 1320px;
    margin: 0 auto;
    gap: 40px;
}

.promo-arrows button {
    width: 54px;
    height: 44px;
    border: 1px solid #ffffff;
    background-color: transparent !important;
    color: #ffffff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: none;
    border-radius: 0;
    cursor: pointer;
}

.promo-arrows button:hover:not(.swiper-button-disabled) {
    transform: translateY(-2px);
    box-shadow: none;
    background-color: #ffffff !important;
}

.promo-arrows button:hover:not(.swiper-button-disabled) i {
    color: var(--base-color);
}

.promo-arrows button.swiper-button-disabled {
    opacity: 0.35;
    cursor: not-allowed;
}

.promo-arrows i {
    font-size: 18px;
    color: #ffffff;
    transition: color 0.3s ease;
}

/* Promo Pagination */
.promo-pagination {
    display: flex;
    gap: 10px;
}

@media (max-width: 575px) {
    .promo-pagination {
        display: none;
    }

    .promo-nav-wrapper {
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }

    .promo-arrows {
        order: 1;
    }
}

.promo-pagination .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background: #ffffff;
    opacity: 0.35;
    border-radius: 0;
    transition: all 0.3s ease;
    cursor: pointer;
}

.promo-pagination .swiper-pagination-bullet-active {
    opacity: 1;
    width: 32px;
}

.promo-pagination .swiper-pagination-bullet:hover {
    opacity: 0.7;
}

/* Smooth entrance for slide content */
.swiper-slide-active .promo-restaurant-badge,
.swiper-slide-active .promo-subtitle,
.swiper-slide-active .promo-title,
.swiper-slide-active .promo-text,
.swiper-slide-active .promo-buttons {
    animation-play-state: running;
}

/* Reset animation for non-active slides */
.swiper-slide:not(.swiper-slide-active) .promo-restaurant-badge,
.swiper-slide:not(.swiper-slide-active) .promo-subtitle,
.swiper-slide:not(.swiper-slide-active) .promo-title,
.swiper-slide:not(.swiper-slide-active) .promo-text,
.swiper-slide:not(.swiper-slide-active) .promo-buttons {
    opacity: 0;
}

/* Review cards (sede.html) */
.sede-review-row .review-style-02 {
    background: transparent;
    display: flex;
}

.sede-review-card {
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding: 30px;
    background: linear-gradient(135deg, #ffffff 0%, #f6f7fb 100%);
    border: 1px solid rgba(38, 43, 53, 0.06);
    box-shadow: 0 24px 65px rgba(0, 0, 0, 0.16);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    min-height: 100%;
    overflow: hidden;
    z-index: 0;
}

.sede-review-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, rgba(36, 46, 125, 0.08), rgba(255, 255, 255, 0));
    opacity: 0.9;
    pointer-events: none;
    z-index: 0;
}

.sede-review-card > * {
    position: relative;
    z-index: 1;
}

.sede-review-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 30px 85px rgba(0, 0, 0, 0.18);
}

.sede-review-card .review-quote-icon {
    position: absolute;
    top: 18px;
    right: 18px;
    color: rgba(36, 46, 125, 0.24);
    font-size: 26px;
    line-height: 1;
}

.sede-review-card .review-meta {
    display: flex;
    align-items: center;
    gap: 12px;
}

.sede-review-card .review-star-icon {
    color: #f7b500;
    letter-spacing: 2px;
}

.sede-review-card .review-star-icon i {
    color: inherit;
}

.sede-review-card .review-author {
    letter-spacing: 0.65px;
    text-transform: uppercase;
    font-size: 15px;
    font-weight: 700;
    color: var(--base-color);
}

.sede-review-card p {
    margin: 0;
    font-size: 16px;
    line-height: 1.7;
    color: #2c323a;
}

@media (max-width: 767px) {
    .sede-review-card {
        padding: 24px;
    }
}


/* From sedi.html */
/* Formato 3:4 per le slide dei ristoranti */
#ristoranti-carousel .interactive-banner-style-09 {
    aspect-ratio: 3 / 4;
    height: auto;
}

/* Fix per visualizzazione frecce navigazione */
#ristoranti-carousel {
    overflow: visible !important;
}

#ristoranti-carousel .outside-box-right-30 {
    overflow: visible !important;
}

#ristoranti-carousel .swiper {
    overflow: visible !important;
}

/* Fix per altezza uniforme delle card specialities */
@media (min-width: 992px) {
    .services-box-style-02 {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }

    .services-box-style-02 > .col {
        width: 100%;
        margin-bottom: 0 !important;
    }
}

/* Effetto hover per le card */
.services-box-style-02 .row.g-0 {
    transition: all 0.3s ease;
}

.services-box-style-02 .row.g-0:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15) !important;
}

.services-box-style-02 .services-box-img .cover-background {
    transition: transform 0.5s ease;
}

.services-box-style-02 .row.g-0:hover .services-box-img .cover-background {
    transform: scale(1.05);
}

/* Hover animato per link sedi */
.footer-locations a {
    position: relative;
    display: inline-flex;
    align-items: center;
    padding-bottom: 6px;
    text-decoration: none !important;
    transition: color 0.3s ease, transform 0.3s ease;
}

.footer-locations a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 2px;
    background: var(--base-color);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
    opacity: 0.85;
}

.footer-locations a:hover,
.footer-locations a:focus-visible {
    color: var(--base-color) !important;
    transform: translateY(-2px);
}

.footer-locations a:hover::after,
.footer-locations a:focus-visible::after {
    transform: scaleX(1);
}

/* Transizioni smooth per header sticky */
header .navbar {
    transition: background-color 0.4s ease, box-shadow 0.4s ease, transform 0.3s ease;
}

header .navbar .container-fluid {
    transition: padding 0.4s ease;
}

header .navbar-brand,
header .header-switch-brand {
    transition: color 0.4s ease, padding 0.4s ease;
}

header .header-push-button .push-button span {
    transition: background-color 0.4s ease;
}

header .btn,
header .header-switch-solid {
    transition: background-color 0.4s ease, border-color 0.4s ease, color 0.4s ease, transform 0.3s ease, box-shadow 0.3s ease;
}

header .btn:hover {
    transform: translateY(-2px);
}

header #langDropdown,
header #langDropdownMobile {
    transition: background-color 0.3s ease, border-color 0.3s ease;
}

header a,
header .dropdown-toggle {
    transition: color 0.4s ease;
}

/* Gradiente newsletter box */
.newsletter-gradient {
    background: linear-gradient(180deg, #EFEFEF 0%, #FFFFFF 100%) !important;
}

/* Overlay per menu laterale */
.menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    z-index: 998;
}

/* Overlay visibile quando uno dei menu è aperto */
.show-menu .menu-overlay,
body.menu-panel-open .menu-overlay {
    opacity: 1;
    visibility: visible;
}

/* Mantiene visibile lo slider di background anche su mobile */
.page-title-gallery-background {
    position: relative;
    overflow: hidden;
}
.page-title-gallery-background .swiper {
    z-index: 0 !important;
}
.page-title-gallery-background .opacity-extra-medium {
    z-index: 1;
}
.page-title-gallery-background .container {
    position: relative;
    z-index: 2;
}

/* Portfolio "sedi" - stile identico al carousel di index.html */
.sedi-portfolio {
    padding-left: 40px;
    padding-right: 40px;
}
.sedi-portfolio .portfolio-filter {
    display: flex;
    flex-wrap: wrap;
    padding-left: 0;
    border: 0;
    gap: 12px;
}
.sedi-portfolio > div:first-of-type {
    margin-bottom: 20px;
}
@media (min-width: 768px) {
    .sedi-portfolio > div:first-of-type {
        margin-top: -110px;
        margin-bottom: 15px;
    }
}
@media (max-width: 991px) {
    .sedi-portfolio {
        padding-left: 25px;
        padding-right: 25px;
    }
}
@media (max-width: 575px) {
    .sedi-portfolio {
        padding-left: 15px;
        padding-right: 15px;
    }
}
.sedi-portfolio .portfolio-filter li {
    padding: 0;
    margin: 0;
}
.sedi-portfolio .portfolio-filter a {
    border-radius: 0;
    padding: 10px 18px;
    border: 1px solid rgba(0,0,0,0.08);
    background-color: #f4f5f7;
    color: var(--medium-gray);
    letter-spacing: 0.5px;
    font-weight: 600;
    font-size: 13px;
    text-transform: uppercase;
    transition: all 0.25s ease;
}
.sedi-portfolio .portfolio-filter li.active a,
.sedi-portfolio .portfolio-filter a:hover {
    background-color: var(--base-color);
    color: #fff;
    border-color: var(--base-color);
    box-shadow: 0 10px 25px rgba(36, 46, 125, 0.25);
}

/* Scroll orizzontale su mobile per i filtri */
@media (max-width: 767px) {
    .sedi-portfolio > div:first-of-type {
        flex-direction: column;
        align-items: stretch !important;
    }
    .sedi-portfolio .portfolio-filter {
        flex-wrap: nowrap !important;
        overflow-x: auto;
        overflow-y: hidden;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none; /* Firefox */
        -ms-overflow-style: none; /* IE and Edge */
        padding-left: 15px;
        padding-right: 15px;
        margin-left: -15px;
        margin-right: -15px;
        justify-content: flex-start !important;
    }
    .sedi-portfolio .portfolio-filter::-webkit-scrollbar {
        display: none; /* Chrome, Safari, Opera */
    }
    .sedi-portfolio .portfolio-filter li {
        flex-shrink: 0;
        flex-grow: 0;
        flex-basis: auto;
        width: auto !important;
        white-space: nowrap;
    }
    .sedi-portfolio .portfolio-filter a {
        white-space: nowrap;
        display: inline-block;
    }
    .sedi-portfolio > div:first-of-type > .btn {
        margin-top: 15px;
    }
}

/* Formato 3:4 per le card portfolio - come il carousel */
.sedi-portfolio .interactive-banner-style-09 {
    aspect-ratio: 3 / 4;
    height: auto;
}

/* Riduce lo spazio tra le card del portfolio */
.sedi-portfolio .portfolio-wrapper.gutter-extra-large {
    margin-left: -10px;
    margin-right: -10px;
    margin-top: -10px;
}
.sedi-portfolio .portfolio-wrapper.gutter-extra-large .grid-item {
    padding: 10px;
}

/* Assicura che il menu sia sopra l'overlay */
.push-menu {
    z-index: 999;
}

/* Pannello laterale per il menu con iframe */
.menu-side-panel {
    position: fixed;
    top: 0;
    right: 0;
    width: min(540px, 92vw);
    height: 100%;
    background-color: var(--white);
    box-shadow: -25px 0 60px rgba(0, 0, 0, 0.18);
    transform: translateX(100%);
    transition: transform 0.35s ease;
    z-index: 1000;
    display: flex;
    flex-direction: column;
}

body.menu-panel-open .menu-side-panel {
    transform: translateX(0);
}

body.menu-panel-open {
    overflow: hidden;
}

.menu-panel-header {
    padding: 22px 26px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    background-color: #f7f7f7;
}

.menu-panel-close {
    width: 42px;
    height: 42px;
    border-radius: 0;
    border: none;
    background-color: var(--base-color);
    color: var(--white);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

.menu-panel-close:hover {
    transform: translateY(-1px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    background-color: var(--dark-gray);
}

.menu-panel-body {
    flex: 1;
    display: flex;
    flex-direction: column;
    background-color: var(--white);
    position: relative;
}

.menu-panel-frame {
    flex: 1;
    width: 100%;
    border: 0;
    transition: opacity 0.2s ease;
}

.menu-panel-frame.is-loading {
    opacity: 0;
}

.menu-panel-loader {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--white);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.2s ease, visibility 0.2s ease;
    z-index: 1;
}

.menu-panel-loader.show {
    opacity: 1;
    visibility: visible;
}

.menu-loader-spinner {
    width: 46px;
    height: 46px;
    border: 3px solid rgba(0, 0, 0, 0.1);
    border-top-color: var(--base-color);
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

.btn-outline-white {
    border: 2px solid var(--white);
    color: var(--white);
    background-color: transparent;
}

.btn-outline-white:hover {
    background-color: var(--white);
    color: var(--base-color);
}

/* Altezza uniforme per lo swiper galleria */
.uniform-gallery-swiper .swiper-slide {
    width: clamp(360px, 45vw, 640px) !important;
    aspect-ratio: 1 / 1;
}

.uniform-gallery-swiper .swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 0;
}

@media (max-width: 767px) {
    .uniform-gallery-swiper .swiper-slide {
        width: 85vw !important;
        max-width: 85vw;
        aspect-ratio: 1 / 1;
    }
}

/* Evita la visibilità parziale delle slide */
.uniform-gallery-swiper {
    overflow: hidden;
}

/* Video hero background */
.video-hero-section {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
}

.video-hero-background {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    z-index: 0;
    object-fit: cover;
}

/* Gradiente overlay per video hero */
.hero-overlay-light {
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.4) 100%);
    height: 100%;
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    opacity: 1 !important;
}

.video-hero-content {
    position: relative;
    z-index: 2;
    height: 100%;
}

/* Fix centramento verticale box "Ciò che conta" su mobile */
@media (max-width: 767px) {
    .full-screen.d-flex {
        padding-top: 80px !important;
        padding-bottom: 80px !important;
        flex-direction: column !important;
        justify-content: space-between !important;
    }
    .full-screen.d-flex .row.justify-content-center {
        margin: auto 0 !important;
    }
}

/* Dropdown lingua compatto */
#langDropdown,
#langDropdownMobile {
    padding: 6px 12px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 0;
    transition: all 0.3s ease;
    background-color: transparent;
}

#langDropdown:hover,
#langDropdownMobile:hover {
    background-color: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-1px);
}

header.sticky.sticky-active #langDropdown,
header.sticky.sticky-active #langDropdownMobile {
    border-color: rgba(0, 0, 0, 0.1);
}

header.sticky.sticky-active #langDropdown:hover,
header.sticky.sticky-active #langDropdownMobile:hover {
    background-color: rgba(0, 0, 0, 0.05);
    border-color: rgba(0, 0, 0, 0.2);
}

#langDropdown + .dropdown-menu,
#langDropdownMobile + .dropdown-menu {
    min-width: auto;
    padding: 4px;
    border-radius: 0;
    border: none;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.12);
    margin-top: 8px;
    background-color: #ffffff !important;
}

#langDropdown + .dropdown-menu .dropdown-item,
#langDropdownMobile + .dropdown-menu .dropdown-item {
    padding: 8px 16px;
    border-radius: 0;
    font-size: 13px;
    font-weight: 500;
    transition: all 0.2s ease;
    color: #262b35 !important;
    background-color: transparent !important;
}

#langDropdown + .dropdown-menu .dropdown-item:hover,
#langDropdownMobile + .dropdown-menu .dropdown-item:hover {
    background-color: var(--base-color) !important;
    color: white !important;
    transform: translateX(2px);
}

#langDropdown + .dropdown-menu .dropdown-item:focus,
#langDropdownMobile + .dropdown-menu .dropdown-item:focus {
    background-color: var(--base-color) !important;
    color: white !important;
}

#langDropdown + .dropdown-menu .dropdown-item:active,
#langDropdownMobile + .dropdown-menu .dropdown-item:active {
    background-color: var(--base-color) !important;
    color: white !important;
}

/* Rende tutti i box completamente squadrati */
[class*="border-radius"],
.btn,
button,
input,
select,
textarea,
.form-control,
.dropdown-menu,
.dropdown-item,
.push-menu,
.close-menu,
.menu-panel-close,
.menu-side-panel,
.services-box-style-02 .row.g-0,
.review-style-02 .d-flex,
.newsletter-style-02 .form-control,
.newsletter-style-02 .submit {
    border-radius: 0 !important;
}

/* Mantiene lo spinner circolare */
.menu-loader-spinner {
    border-radius: 50% !important;
}


/* From sede.html */
/* Formato 3:4 per le slide dei ristoranti */
#ristoranti-carousel .interactive-banner-style-09 {
    aspect-ratio: 3 / 4;
    height: auto;
}

/* Fix per visualizzazione frecce navigazione */
#ristoranti-carousel {
    overflow: visible !important;
}

#ristoranti-carousel .outside-box-right-30 {
    overflow: visible !important;
}

#ristoranti-carousel .swiper {
    overflow: visible !important;
}

/* Fix per altezza uniforme delle card specialities */
@media (min-width: 992px) {
    .services-box-style-02 {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }

    .services-box-style-02 > .col {
        width: 100%;
        margin-bottom: 0 !important;
    }
}

/* Effetto hover per le card */
.services-box-style-02 .row.g-0 {
    transition: all 0.3s ease;
}

.services-box-style-02 .row.g-0:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15) !important;
}

.services-box-style-02 .services-box-img .cover-background {
    transition: transform 0.5s ease;
    position: absolute;
        top: 0;
        left:0;
        width:50%;
        bottom: 0;
}

.services-box-style-02 .row.g-0:hover .services-box-img .cover-background {
    transform: scale(1.05);
}

@media (min-width: 575px) {
    .services-box-style-02 .services-box-img .cover-background {
    position:relative;
    width: 100%;
    height:300px;
}
}

/* Hover animato per link sedi */
.footer-locations a {
    position: relative;
    display: inline-flex;
    align-items: center;
    padding-bottom: 6px;
    text-decoration: none !important;
    transition: color 0.3s ease, transform 0.3s ease;
}

.footer-locations a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 2px;
    background: var(--base-color);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
    opacity: 0.85;
}

.footer-locations a:hover,
.footer-locations a:focus-visible {
    color: var(--base-color) !important;
    transform: translateY(-2px);
}

.footer-locations a:hover::after,
.footer-locations a:focus-visible::after {
    transform: scaleX(1);
}

/* Transizioni smooth per header sticky */
header .navbar {
    transition: background-color 0.4s ease, box-shadow 0.4s ease, transform 0.3s ease;
}

header .navbar .container-fluid {
    transition: padding 0.4s ease;
}

header .navbar-brand,
header .header-switch-brand {
    transition: color 0.4s ease, padding 0.4s ease;
}

header .header-push-button .push-button span {
    transition: background-color 0.4s ease;
}

header .btn,
header .header-switch-solid {
    transition: background-color 0.4s ease, border-color 0.4s ease, color 0.4s ease, transform 0.3s ease, box-shadow 0.3s ease;
}

header .btn:hover {
    transform: translateY(-2px);
}

header #langDropdown,
header #langDropdownMobile {
    transition: background-color 0.3s ease, border-color 0.3s ease;
}

header a,
header .dropdown-toggle {
    transition: color 0.4s ease;
}

/* Gradiente newsletter box */
.newsletter-gradient {
    background: linear-gradient(180deg, #EFEFEF 0%, #FFFFFF 100%) !important;
}

/* Overlay per menu laterale */
.menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    z-index: 998;
}

/* Overlay visibile quando uno dei menu è aperto */
.show-menu .menu-overlay,
body.menu-panel-open .menu-overlay {
    opacity: 1;
    visibility: visible;
}

/* Assicura che il menu sia sopra l'overlay */
.push-menu {
    z-index: 999;
}

/* Pannello laterale per il menu con iframe */
.menu-side-panel {
    position: fixed;
    top: 0;
    right: 0;
    width: min(540px, 92vw);
    height: 100%;
    background-color: var(--white);
    box-shadow: -25px 0 60px rgba(0, 0, 0, 0.18);
    transform: translateX(100%);
    transition: transform 0.35s ease;
    z-index: 1000;
    display: flex;
    flex-direction: column;
}

body.menu-panel-open .menu-side-panel {
    transform: translateX(0);
}

body.menu-panel-open {
    overflow: hidden;
}

.menu-panel-header {
    padding: 22px 26px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    background-color: #f7f7f7;
}

.menu-panel-close {
    width: 42px;
    height: 42px;
    border-radius: 0;
    border: none;
    background-color: var(--base-color);
    color: var(--white);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

.menu-panel-close:hover {
    transform: translateY(-1px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    background-color: var(--dark-gray);
}

.menu-panel-body {
    flex: 1;
    display: flex;
    flex-direction: column;
    background-color: var(--white);
    position: relative;
}

.menu-panel-frame {
    flex: 1;
    width: 100%;
    border: 0;
    transition: opacity 0.2s ease;
}

.menu-panel-frame.is-loading {
    opacity: 0;
}

.menu-panel-loader {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--white);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.2s ease, visibility 0.2s ease;
    z-index: 1;
}

.menu-panel-loader.show {
    opacity: 1;
    visibility: visible;
}

.menu-loader-spinner {
    width: 46px;
    height: 46px;
    border: 3px solid rgba(0, 0, 0, 0.1);
    border-top-color: var(--base-color);
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

.btn-outline-white {
    border: 2px solid var(--white);
    color: var(--white);
    background-color: transparent;
}

.btn-outline-white:hover {
    background-color: var(--white);
    color: var(--base-color);
}

/* Altezza uniforme per lo swiper galleria */
.uniform-gallery-swiper .swiper-slide {
    width: clamp(360px, 45vw, 640px) !important;
    aspect-ratio: 1 / 1;
}

.uniform-gallery-swiper .swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 0;
}

@media (max-width: 767px) {
    .uniform-gallery-swiper .swiper-slide {
        width: 85vw !important;
        max-width: 85vw;
        aspect-ratio: 1 / 1;
    }
}

/* Evita la visibilità parziale delle slide */
.uniform-gallery-swiper {
    overflow: hidden;
}

/* Video hero background */
.video-hero-section {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
}

.video-hero-background {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    z-index: 0;
    object-fit: cover;
}

/* Gradiente overlay per video hero */
.hero-overlay-light {
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.4) 100%);
    height: 100%;
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    opacity: 1 !important;
}

.video-hero-content {
    position: relative;
    z-index: 2;
    height: 100%;
}

/* Fix centramento verticale box "Ciò che conta" su mobile */
@media (max-width: 767px) {
    .full-screen.d-flex {
        padding-top: 80px !important;
        padding-bottom: 80px !important;
        flex-direction: column !important;
        justify-content: space-between !important;
    }
    .full-screen.d-flex .row.justify-content-center {
        margin: auto 0 !important;
    }
}

/* Dropdown lingua compatto */
#langDropdown,
#langDropdownMobile {
    padding: 6px 12px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 0;
    transition: all 0.3s ease;
    background-color: transparent;
}

#langDropdown:hover,
#langDropdownMobile:hover {
    background-color: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-1px);
}

header.sticky.sticky-active #langDropdown,
header.sticky.sticky-active #langDropdownMobile {
    border-color: rgba(0, 0, 0, 0.1);
}

header.sticky.sticky-active #langDropdown:hover,
header.sticky.sticky-active #langDropdownMobile:hover {
    background-color: rgba(0, 0, 0, 0.05);
    border-color: rgba(0, 0, 0, 0.2);
}

#langDropdown + .dropdown-menu,
#langDropdownMobile + .dropdown-menu {
    min-width: auto;
    padding: 4px;
    border-radius: 0;
    border: none;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.12);
    margin-top: 8px;
    background-color: #ffffff !important;
}

#langDropdown + .dropdown-menu .dropdown-item,
#langDropdownMobile + .dropdown-menu .dropdown-item {
    padding: 8px 16px;
    border-radius: 0;
    font-size: 13px;
    font-weight: 500;
    transition: all 0.2s ease;
    color: #262b35 !important;
    background-color: transparent !important;
}

#langDropdown + .dropdown-menu .dropdown-item:hover,
#langDropdownMobile + .dropdown-menu .dropdown-item:hover {
    background-color: var(--base-color) !important;
    color: white !important;
    transform: translateX(2px);
}

#langDropdown + .dropdown-menu .dropdown-item:focus,
#langDropdownMobile + .dropdown-menu .dropdown-item:focus {
    background-color: var(--base-color) !important;
    color: white !important;
}

#langDropdown + .dropdown-menu .dropdown-item:active,
#langDropdownMobile + .dropdown-menu .dropdown-item:active {
    background-color: var(--base-color) !important;
    color: white !important;
}

/* Allineamento verticale sezione benvenuto */
.overlap-gap-section > .row.align-items-center > [class*="col-"] {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* Rende tutti i box completamente squadrati */
[class*="border-radius"],
.btn,
button,
input,
select,
textarea,
.form-control,
.dropdown-menu,
.dropdown-item,
.push-menu,
.close-menu,
.menu-panel-close,
.menu-side-panel,
.services-box-style-02 .row.g-0,
.review-style-02 .d-flex,
.newsletter-style-02 .form-control,
.newsletter-style-02 .submit {
    border-radius: 0 !important;
}

/* Mantiene lo spinner circolare */
.menu-loader-spinner {
    border-radius: 50% !important;
}

/* Review cards - dark overlay variant */
.review-card-overlay {
    background-color: rgba(36, 46, 125, 0.28);
    border: 1px solid rgba(36, 46, 125, 0.45);
    color: #f4f4f6;
}

.review-card-overlay p {
    color: #f4f4f6;
}

.review-card-overlay .text-base-color {
    color: #ffffff !important;
}

.review-card-overlay .review-star-icon i {
    color: #ffd166;
}

.review-overlay {
    background-color: #000;
    position: absolute;
    top: 0;
    left: 0;
    right:0;
    bottom:0;
} 

/* Services box image sizing: full-height desktop/tablet, square on mobile */
.services-box-style-02 .services-box-img {
    position: relative;
}

.services-box-style-02 .services-box-img .cover-background {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

@media (max-width: 767px) {
    .services-box-style-02 .services-box-img .cover-background {
        position: relative;
        inset: auto;
        height: auto !important;
        width: 100%;
        aspect-ratio: 1 / 1;
    }
}

/* Navigazione gallery immagini */
.gallery-nav {
    position: absolute;
    top: -12px;
    left: 0;
    display: flex;
    gap: 12px;
    z-index: 5;
}
.gallery-nav button {
    width: 48px;
    height: 38px;
    border: 1px solid var(--base-color);
    background-color: #ffffff !important;
    color: var(--base-color);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
    border-radius: 0;
}
.gallery-nav button:hover {
    transform: translateY(-2px);
    border-color: var(--base-color);
    box-shadow: 0 16px 36px rgba(0, 0, 0, 0.12);
}
.gallery-nav i {
    font-size: 18px;
    color: var(--base-color);
}
@media (max-width: 767px) {
    .gallery-nav {
        left: auto;
        right: 0;
    }
}

/* Promo Slider Styles */
.promo-slider {
    background: var(--base-color);
    position: relative;
    overflow: hidden;
}

.promo-slider .swiper-slide {
    position: relative;
    overflow: hidden;
}

.promo-slide-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    background-size: cover;
    background-position: center;
    filter: grayscale(100%) brightness(0.4);
    opacity: 0.12;
    z-index: 0;
}

@media (max-width: 991px) {
    .promo-slider {

    }
}

@media (max-width: 575px) {
    .promo-slider {

    }
}

.promo-slide-wrapper {
    min-height: 620px;
    display: flex;
    align-items: center;
    padding: 20px 26px;
    position: relative;
    z-index: 1;
    padding:100px 20px 150px 20px;
}

@media (max-width: 991px) {
    .promo-slide-wrapper {
        min-height: auto;
        padding: 50px 20px 150px 20px;
    }
}

.promo-slide-wrapper .container-fluid {
    max-width: 1320px;
    padding: 0;
}

.promo-slide-wrapper .row {
    margin: 0;
    height: 100%;
    background: #ffffff;
    border-radius: 0;
    overflow: hidden;
    box-shadow: 0 28px 80px rgba(0, 0, 0, 0.12);
    align-items: stretch;
}

.promo-slide-wrapper .row > [class*="col-"] {
    padding: 0;
}

.promo-content {
    padding: 70px 80px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
    color: #262b35;
}

@media (max-width: 1400px) {
    .promo-content {
        padding: 60px;
    }
}

@media (max-width: 991px) {
    .promo-content {
        padding: 35px;
        text-align: center;
    }
}

@media (max-width: 575px) {
    .promo-content {
        padding: 24px;
    }
}

/* Badge ristorante (solo nella home) */
.promo-restaurant-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--base-color);
    color: #ffffff;
    padding: 9px 18px;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.5px;
    border-radius: 0;
    border: none;
    animation: badgeSlideIn 0.6s ease-out 0.3s both;
}

@media (max-width: 992px) {
    .promo-restaurant-badge {

    }
}

@media (max-width: 575px) {
    .promo-restaurant-badge {
        font-size: 12px;
        padding: 7px 14px;
        letter-spacing: 0.3px;
    }
}

@media (max-width: 991px) {
    .promo-restaurant-badge {
        text-align: center;
        justify-content: center;
        margin-left: auto;
        margin-right: auto;
    }
}

@keyframes badgeSlideIn {
    from {
        opacity: 0;
        transform: translateX(-20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.promo-subtitle {
    font-size: 14px;
    color: var(--base-color);
    letter-spacing: 1px;
    animation: promoFadeInLeft 0.6s ease-out 0.4s both;
}

.promo-title {
    font-size: 48px;
    line-height: 1.2;
    color: #262b35;
    animation: promoFadeInLeft 0.6s ease-out 0.5s both;
}

@media (max-width: 991px) {
    .promo-title {
        font-size: 36px;
    }
}

@media (max-width: 575px) {
    .promo-title {
        font-size: 28px;
    }
}

.promo-text {
    color: #626262;
    font-size: 17px;
    line-height: 1.8;
    animation: promoFadeInLeft 0.6s ease-out 0.6s both;
}

.promo-buttons {
    animation: promoFadeInLeft 0.6s ease-out 0.7s both;
}

@media (max-width: 991px) {
    .promo-buttons {
        justify-content: center;
    }
}

.promo-slide-wrapper .btn-base-color {
    background-color: var(--base-color);
    color: #ffffff !important;
    border-color: var(--base-color);
    box-shadow: none;
}

.promo-slide-wrapper .btn-base-color:hover {
    background-color: var(--dark-gray);
    color: #ffffff !important;
}

.promo-slide-wrapper .btn-transparent-dark-gray {
    border-color: #262b35;
    color: #262b35;
}

.promo-slide-wrapper .btn-transparent-dark-gray:hover {
    background-color: #262b35;
    color: #ffffff !important;
}

@keyframes promoFadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Promo Image */
.promo-image-wrapper {
    height: 100%;
    display: flex;
    align-items: stretch;
    background: #ffffff;
}

@media (max-width: 991px) {
    .promo-image-wrapper {
        padding: 0;
        min-height: 420px;
    }
}

@media (max-width: 575px) {
    .promo-image-wrapper {
        padding: 0;
        min-height: 320px;
    }
}

.promo-image {
    width: 100%;
    height: 100%;
    min-height: 520px;
    aspect-ratio: 4 / 3;
    border-radius: 0;
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.15);
    transition: all 0.4s ease;
    animation: promoFadeInRight 0.8s ease-out both;
    background: #f5f5f5;
}

@media (max-width: 991px) {
    .promo-image {
        min-height: 420px;
    }
}

@media (max-width: 575px) {
    .promo-image {
        min-height: 320px;
    }
}

@keyframes promoFadeInRight {
    from {
        opacity: 0;
        transform: translateX(20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.promo-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    transition: transform 0.6s ease;
}

.swiper-slide-active .promo-image:hover img {
    transform: scale(1.05);
}

/* Promo Badge */
.promo-badge {
    top: 25px;
    right: 25px;
    background: var(--base-color);
    padding: 12px 22px;
    z-index: 2;
    animation: badgePulse 2s ease-in-out infinite;
}

.promo-badge-sale {
    background: #dc3131;
}

@keyframes badgePulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

.promo-badge .badge-text {
    color: white;
    font-weight: 600;
    font-size: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Promo Navigation */
.promo-navigation {
    padding: 0 15px;
    position: absolute;
    bottom: 50px;
    z-index:2;
}

@media (max-width: 575px) {

}

.promo-nav-wrapper {
    max-width: 1320px;
    margin: 0 auto;
    gap: 40px;
}

.promo-arrows button {
    width: 54px;
    height: 44px;
    border: 1px solid #ffffff;
    background-color: transparent !important;
    color: #ffffff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: none;
    border-radius: 0;
    cursor: pointer;
}

.promo-arrows button:hover:not(.swiper-button-disabled) {
    transform: translateY(-2px);
    box-shadow: none;
    background-color: #ffffff !important;
}

.promo-arrows button:hover:not(.swiper-button-disabled) i {
    color: var(--base-color);
}

.promo-arrows button.swiper-button-disabled {
    opacity: 0.35;
    cursor: not-allowed;
}

.promo-arrows i {
    font-size: 18px;
    color: #ffffff;
    transition: color 0.3s ease;
}

/* Promo Pagination */
.promo-pagination {
    display: flex;
    gap: 10px;
}

@media (max-width: 575px) {
    .promo-pagination {
        display: none;
    }

    .promo-nav-wrapper {
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }

    .promo-arrows {
        order: 1;
    }
}

.promo-pagination .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background: #ffffff;
    opacity: 0.35;
    border-radius: 0;
    transition: all 0.3s ease;
    cursor: pointer;
}

.promo-pagination .swiper-pagination-bullet-active {
    opacity: 1;
    width: 32px;
}

.promo-pagination .swiper-pagination-bullet:hover {
    opacity: 0.7;
}

/* Smooth entrance for slide content */
.swiper-slide-active .promo-restaurant-badge,
.swiper-slide-active .promo-subtitle,
.swiper-slide-active .promo-title,
.swiper-slide-active .promo-text,
.swiper-slide-active .promo-buttons {
    animation-play-state: running;
}

/* Reset animation for non-active slides */
.swiper-slide:not(.swiper-slide-active) .promo-restaurant-badge,
.swiper-slide:not(.swiper-slide-active) .promo-subtitle,
.swiper-slide:not(.swiper-slide-active) .promo-title,
.swiper-slide:not(.swiper-slide-active) .promo-text,
.swiper-slide:not(.swiper-slide-active) .promo-buttons {
    opacity: 0;
}
