*{
margin:0;
padding:0;
box-sizing:border-box;
}

body{
font-family:'Poppins',sans-serif;
background:#faf7f4;
color:#46342a;

}

.container{
width:1200px;
max-width:90%;
margin:auto;
}


header{
    position:fixed;
    top:16px;
    left:50%;
    transform:translateX(-50%);

    width:min(1300px,92%);

    z-index:1000;

    background:rgba(255,255,255,.65);
    backdrop-filter:blur(24px);
    -webkit-backdrop-filter:blur(24px);

    border:1px solid rgba(255,255,255,.5);

    border-radius:24px;

    padding:14px 22px;

    box-shadow:
    0 10px 40px rgba(0,0,0,.08),
    inset 0 1px 1px rgba(255,255,255,.6);
    transition:.4s ease;
}

.nav{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:30px;
}



.logo{
display:flex;
align-items:center;
gap:15px;
}

.logo img{
width:70px;
}

.logo h3{
font-family:'Cormorant Garamond',serif;
font-size:34px;
}

.logo span{
font-size:12px;
letter-spacing:3px;
color:#d67f4c;
}

nav{
display:flex;
gap:40px;
}

nav a{
text-decoration:none;
color:#444;
}

.active{
color:#d97f4f;
}

.btn-outline{
border:1px solid #d97f4f;
padding:14px 24px;
border-radius:50px;
text-decoration:none;
color:#d97f4f;
}

.hero{
    position:relative;
    min-height:700px;
    

    display:flex;
    align-items:center;

    background-image:url("sfondoMimmo.jpg");
    background-repeat:no-repeat;
    background-position:right center;
    background-size:contain;

    overflow:hidden;
}
.hero-overlay{
    position:absolute;
    inset:0;

    background:
    linear-gradient(
        90deg,
        #faf7f4 0%,
        rgba(250,247,244,0.98) 25%,
        rgba(250,247,244,0.92) 40%,
        rgba(250,247,244,0.60) 60%,
        rgba(250,247,244,0.15) 75%,
        rgba(250,247,244,0) 100%
    );

    z-index:1;
}

.hero-content{
    position:relative;
    z-index:2;
}

.hero-left{
    max-width:560px;
}
.hero h1{
    font-family:'Cormorant Garamond',serif;
    font-size:110px;
    line-height:0.9;
    font-weight:600;
    margin:25px 0;
}

.hero p{
    font-size:20px;
    line-height:1.9;
    max-width:500px;
    color:#6b5a4f;
}
.hero::after{
    content:"";
    position:absolute;

    left:0;
    bottom:-1px;

    width:100%;
    height:100px;

    background:url("wave.svg") no-repeat center bottom;
    background-size:100% 100%;

    z-index:2;
}


.subtitle{
color:#d97f4f;
letter-spacing:2px;
font-size:14px;
}

.hero h1{
font-family:'Cormorant Garamond',serif;
font-size:92px;
line-height:.9;
margin:20px 0;
}

.hero p{
font-size:24px;
line-height:1.8;
max-width:550px;
}

.hero-right img{
width:100%;
border-radius:30px;
}

.hero-buttons{
display:flex;
gap:20px;
margin-top:40px;
}

.btn-primary{
background:#e58953;
color:white;
padding:18px 35px;
border-radius:50px;
text-decoration:none;
}

.btn-secondary{
border:1px solid #e58953;
padding:18px 35px;
border-radius:50px;
color:#e58953;
text-decoration:none;
}

.features{
padding:50px 0;
}

.features-grid{
display:grid;
grid-template-columns:repeat(3,1fr);
gap:40px;
}

.feature{
display:flex;
gap:20px;
}

.icon{
font-size:42px;
}

.menu{
padding:20px 0;
}

.section-subtitle{
display:block;
text-align:center;
color:#e58953;
letter-spacing:3px;
margin-bottom:15px;
}

.menu h2{
text-align:center;
font-size:60px;
font-family:'Cormorant Garamond',serif;
margin-bottom:50px;
}

.pizza-grid{
display:grid;
grid-template-columns:repeat(4,1fr);
gap:25px;
}

.card{
background:white;
border-radius:20px;
overflow:hidden;
box-shadow:0 5px 20px rgba(0,0,0,.05);
}

.card img{
width:100%;
height:220px;
object-fit:cover;
}

.card-body{
padding:22px;
}

.card-body h3{
font-family:'Cormorant Garamond',serif;
font-size:34px;
margin-bottom:10px;
}

.card-body span{
display:block;
margin-top:15px;
font-weight:600;
color:#e58953;
}

.center{
text-align:center;
margin-top:50px;
}

.cta{
background:#f6eee8;
padding:70px 0;
}

.cta-box{
display:flex;
justify-content:space-between;
align-items:center;
}

.cta h2{
font-size:60px;
font-family:'Cormorant Garamond',serif;
}

footer{
background:white;

}

.footer-grid{
display:grid;
grid-template-columns:repeat(4,1fr);
gap:50px;
padding-bottom:40px;
}

footer h3{
margin-bottom:15px;
font-family:'Cormorant Garamond',serif;
font-size:30px;
}

.copyright{
background:#df8b58;
padding:20px;
text-align:center;
color:white;
}

.icona{
    width: 80px;
}
.btn-primary,
.btn-secondary,
.btn-outline{
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

/* effetto hover generale */
.btn-primary:hover,
.btn-secondary:hover,
.btn-outline:hover{
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.15);
}

/* click effect */
.btn-primary:active,
.btn-secondary:active,
.btn-outline:active{
    transform: translateY(0px) scale(0.97);
    box-shadow: 0 5px 10px rgba(0,0,0,0.1);
}

.btn-primary::before{
    content:"";
    position:absolute;
    top:0;
    left:-100%;
    width:100%;
    height:100%;
    background: linear-gradient(
        120deg,
        transparent,
        rgba(255,255,255,0.4),
        transparent
    );
    transition: all 0.6s ease;
}

.btn-primary:hover::before{
    left:100%;
}

.orari{
    padding:40px 0;
    background:#faf7f4;
}

.orari h2{
    text-align:center;
    margin-bottom:30px;
    font-family:'Cormorant Garamond',serif;
    font-size:40px;
}

.orari-grid{
    display:grid;
    grid-template-columns:repeat(7,1fr);
    gap:15px;
}

.giorno{
    background:white;
    padding:20px;
    border-radius:15px;
    text-align:center;
    box-shadow:0 5px 15px rgba(0,0,0,0.05);
    transition:0.3s;
}

.giorno span:first-child{
    display:block;
    font-weight:600;
    margin-bottom:8px;
}

.giorno.active{
    border:2px solid #e58953;
    transform:scale(1.05);
}

.giorno.open{
    background:#e8fff0;
    border-color:#2ecc71;
}

.giorno.closed{
    background:#fff0f0;
    border-color:#e74c3c;
}

.status{
    text-align:center;
    margin-bottom:25px;
    font-size:28px;
}

/*====================================================
                RESPONSIVE MOBILE
====================================================*/

@media screen and (max-width:768px){

body{
    padding-bottom:90px;
}

/* ---------- HEADER ---------- */

header{

position:fixed;

top:15px;

left:50%;
transform:translateX(-50%);

width:94%;
max-width:500px;

padding:14px 18px;

border-radius:22px;

}

.nav{

    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:15px;

}

.logo{

    gap:10px;

}

.logo img{

    width:50px;

}

.logo h3{

    font-size:20px;
    line-height:1.05;

}

.logo{

    display:flex;
    align-items:center;
    gap:10px;

}

.logo div{

    display:flex;
    flex-direction:column;

}

.logo h3{

    font-size:20px;
    line-height:1.05;
    margin:0;

}

.logo span{

    display:block;
    font-size:10px;
    letter-spacing:2px;
    color:#d67f4c;
    margin-top:2px;
    line-height:1;

}

/* nasconde il menu desktop */

nav{

    display:none;

}

/* bottone ordina */

.btn-outline{

    padding:10px 18px;
    font-size:14px;

}

/* ---------- HERO ---------- */
.hero::after{

    height:55px;
    bottom:-2px;

}

.hero{

    min-height:100vh;

    padding-top:30px;

   background-size:cover;
background-position:68% center;

}

.hero-overlay{
    position:absolute;
    inset:0;

    background:
    linear-gradient(
        180deg,
        rgba(35,20,10,.35) 0%,
        rgba(35,20,10,.25) 35%,
        rgba(35,20,10,.18) 70%,
        rgba(35,20,10,.10) 100%
    );

    z-index:1;
}

.hero-left{

    max-width:100%;

}
.hero h1{

    color:#ffffff;

    text-shadow:
        0 4px 18px rgba(0,0,0,.65),
        0 2px 8px rgba(0,0,0,.45);

}

.hero p{

    color:#ffffff;

    text-shadow:
        0 2px 12px rgba(0,0,0,.75);

    font-weight:500;

}

.subtitle{

    color:#ffd2b3;

    font-weight:600;


    text-shadow:
        0 2px 10px rgba(0,0,0,.7);

}



.hero-buttons{

    flex-direction:column;
    align-items:center;
    gap:15px;

}

/* ---------- HERO ---------- */

.hero-buttons{
    display:flex;
    flex-direction:column;
    align-items:center;
    gap:14px;
    width:100%;
}
.btn-secondary{

    background:rgba(255,255,255,.92);

    color:#d97f4f;

    border:2px solid #d97f4f;

    font-weight:600;

    box-shadow:
        0 8px 24px rgba(0,0,0,.18);

}


.btn-primary,
.btn-secondary{

    width:100%;
    max-width:340px;

    padding:16px 22px;

    font-size:16px;
    line-height:1.3;

    text-align:center;

    white-space:normal;
}
.hero-content{
    width:100%;
}

.hero-left{
    width:100%;
    max-width:100%;
}

/* ---------- SEZIONI ---------- */

.features{

    padding:30px 0;

}

.features-grid{

    grid-template-columns:1fr;
    gap:25px;

}

.feature{

    flex-direction:column;
    text-align:center;
    align-items:center;

}

.menu h2{

    font-size:42px;

}


.pizza-grid{
    grid-template-columns:1fr;
    gap:28px;
}

.card{
    width:100%;
    max-width:380px;
    margin:auto;
    min-height:auto;
}


.card img{

    height:260px;
    object-position:center 35%;

}



.orari-grid{

    grid-template-columns:1fr;

}

.footer-grid{

    grid-template-columns:1fr;

}

/* ---------- NAVBAR INFERIORE ---------- */

.mobile-nav{

    position:fixed;
    bottom: 20px;

    left:50%;

    transform:translate(-50%,120px);

    width:92%;
    max-width:520px;

    display:flex;
    justify-content:space-around;
    align-items:center;

    padding:14px 8px;
    background:rgba(255,255,255,.55);
    backdrop-filter:blur(24px);
    -webkit-backdrop-filter:blur(24px);

    border:1px solid rgba(255,255,255,.35);

    box-shadow:0 12px 30px rgba(0,0,0,.08);


    border-radius:24px;



    opacity:0;
    pointer-events:none;

    transition:.35s ease;

    z-index:999;
}

.mobile-nav.show{

    opacity:1;

    transform:translate(-50%,0);

    pointer-events:auto;

}

.mobile-nav a{

    flex:1;

    text-align:center;

    text-decoration:none;

    color:#5d4a40;

    font-size:12px;

    display:flex;
    flex-direction:column;
    align-items:center;

    gap:6px;

}


.mobile-nav svg{

    width:22px;
    height:22px;

}

}

/* ---------- DESKTOP ---------- */

@media screen and (min-width:769px){

.mobile-nav{

display:none;

}

}
/*====================================================
            PAGINA MENÙ - Da Mimmo e Rocco
====================================================*/

/* ---------- NAVBAR PIÙ TRASPARENTE (come la home) ---------- */

body.menu-page-body header{
    background:rgba(255,255,255,.45);
    border:1px solid rgba(255,255,255,.35);
}

body.menu-page-body .mobile-nav{
    background:rgba(255,255,255,.4) !important;
    border:1px solid rgba(255,255,255,.3);
}

/* ---------- HERO con texture decorativa ---------- */

.menu-hero{
    position:relative;
    padding:170px 0 70px;
    text-align:center;
    overflow:hidden;
    background-image:url("sfondoMenu.png");
    background-repeat:repeat;
    background-size:340px;
}

.menu-hero::before{
    content:"";
    position:absolute;
    inset:0;
    background:linear-gradient(180deg,
        rgba(250,247,244,.55) 0%,
        rgba(250,247,244,.62) 60%,
        rgba(250,247,244,.85) 100%);
    pointer-events:none;
}

.hero-decor{
    display:none;
}

.menu-hero .container{
    position:relative;
    z-index:2;
}

.menu-hero .section-subtitle{
    position:relative;
    display:inline-block;
    padding:0 0 6px;
}

.menu-hero h1{
    font-family:'Cormorant Garamond',serif;
    font-size:60px;
    margin:6px 0 18px;
    position:relative;
}

.menu-hero p{
    max-width:600px;
    margin:0 auto;
    color:#6b5a4f;
    font-size:17px;
    line-height:1.7;
}

.hero-wave{
    position:absolute;
    left:0;
    bottom:-1px;
    width:100%;
    height:60px;
    background:url("wave.svg") no-repeat center bottom;
    background-size:100% 100%;
    z-index:1;
}

/* ---------- CATEGORY NAV (sticky) ---------- */

.category-nav-wrapper{
    position:sticky;
    top:90px;
    z-index:500;
    background:rgba(250,247,244,.92);
    backdrop-filter:blur(10px);
    -webkit-backdrop-filter:blur(10px);
    border-bottom:1px solid rgba(0,0,0,.05);
    padding:14px 0;
}

.category-nav{
    display:flex;
    gap:10px;
    overflow-x:auto;
    scrollbar-width:none;
    -ms-overflow-style:none;
}

.category-nav::-webkit-scrollbar{
    display:none;
}

.cat-link{
    flex:0 0 auto;
    white-space:nowrap;
    text-decoration:none;
    color:#6b5a4f;
    font-size:14px;
    font-weight:500;
    padding:10px 18px;
    border-radius:50px;
    border:1px solid rgba(0,0,0,.08);
    background:#fff;
    transition:.25s ease;
}

.cat-link.active,
.cat-link:hover{
    background:#e58953;
    color:#fff;
    border-color:#e58953;
    box-shadow:0 6px 16px rgba(229,137,83,.35);
}

/* ---------- SEZIONI MENÙ ---------- */

.menu-page{
    padding:50px 0 20px;
}

.menu-section{
    position:relative;
    padding:40px 0 10px;
    scroll-margin-top:160px;
}

.menu-section:not(:last-of-type)::after{
    content:"• • •";
    display:block;
    text-align:center;
    letter-spacing:10px;
    color:#e0c4ac;
    font-size:18px;
    margin-top:35px;
}

.menu-section h2{
    font-family:'Cormorant Garamond',serif;
    font-size:42px;
    margin-bottom:8px;
    color:#46342a;
    display:flex;
    align-items:center;
    gap:14px;
}

.section-icon{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    width:48px;
    height:48px;
    font-size:24px;
    background:#fff3e9;
    border-radius:50%;
    box-shadow:inset 0 0 0 2px rgba(229,137,83,.25);
    flex-shrink:0;
}

.section-note{
    color:#9a8a7e;
    font-size:14px;
    margin-bottom:25px;
    font-style:italic;
}

.item-list{
    display:grid;
    grid-template-columns:1fr;
    gap:18px;
    margin-top:20px;
}

.item-list.two-col{
    grid-template-columns:repeat(2,1fr);
}

.menu-item{
    padding:10px 14px 14px;
    border-bottom:1px dashed rgba(70,52,42,.18);
    border-radius:10px;
    transition:.25s ease;
}

.menu-item:hover{
    background:#fff8f2;
    transform:translateX(4px);
}

.item-head{
    display:flex;
    align-items:baseline;
    gap:8px;
}

.item-head h4{
    font-size:17px;
    font-weight:600;
    color:#46342a;
    white-space:nowrap;
}

.dots{
    flex:1;
    border-bottom:1px dotted rgba(70,52,42,.35);
    margin-bottom:5px;
}

.price{
    font-weight:700;
    color:#fff;
    white-space:nowrap;
    font-size:13.5px;
    background:#e58953;
    padding:4px 12px;
    border-radius:50px;
    box-shadow:0 3px 8px rgba(229,137,83,.3);
}

.menu-item p{
    margin-top:6px;
    font-size:13.5px;
    color:#8a7a6f;
    line-height:1.5;
}

/* ---------- LOYALTY BANNER ---------- */

.loyalty-banner{
    position:relative;
    margin:60px 0 20px;
    padding:35px;
    background:#df8b58;
    background-image:radial-gradient(circle at 90% 20%, rgba(255,255,255,.15) 0%, transparent 50%);
    border-radius:20px;
    color:#fff;
    text-align:center;
    overflow:hidden;
}

.loyalty-banner::before{
    content:"🎁";
    position:absolute;
    font-size:90px;
    opacity:.15;
    right:20px;
    top:-10px;
    transform:rotate(-10deg);
}

.loyalty-banner h3{
    font-family:'Cormorant Garamond',serif;
    font-size:30px;
    margin-bottom:6px;
}

.loyalty-banner p{
    font-size:15px;
    opacity:.95;
}

/*====================================================
                RESPONSIVE MOBILE
====================================================*/

@media screen and (max-width:768px){

    .menu-hero{
        padding:130px 0 50px;
        background-size:220px;
    }

    .menu-hero h1{
        font-size:38px;
    }

    .menu-hero p{
        font-size:15px;
        padding:0 10px;
    }

    .category-nav-wrapper{
        top:78px;
    }

    .menu-section h2{
        font-size:28px;
        gap:10px;
    }

    .section-icon{
        width:38px;
        height:38px;
        font-size:18px;
    }

    .item-list.two-col{
        grid-template-columns:1fr;
    }

    .item-head h4{
        font-size:15.5px;
    }

    .price{
        font-size:12.5px;
    }

    .menu-item:hover{
        transform:none;
    }

    body{
        padding-bottom:90px;
    }
}

/*====================================================
            PAGINA ORDINA - Da Mimmo e Rocco
====================================================*/

.order-hero{
    position:relative;
    padding:170px 0 70px;
    text-align:center;
    overflow:hidden;
    background:
        radial-gradient(circle at 15% 20%, rgba(229,137,83,.10) 0%, transparent 45%),
        radial-gradient(circle at 85% 15%, rgba(229,137,83,.12) 0%, transparent 40%),
        linear-gradient(180deg,#fdf9f5 0%,#faf2ea 100%);
}

.order-hero h1{
    font-family:'Cormorant Garamond',serif;
    font-size:54px;
    margin:6px 0 18px;
}

.order-hero p{
    max-width:620px;
    margin:0 auto;
    color:#6b5a4f;
    font-size:17px;
    line-height:1.7;
}

.order-page{
    padding:50px 0 20px;
}

/* ---------- PLATFORM CARDS ---------- */

/* ---------- PLATFORM CARDS ---------- */

.platforms {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    margin-top: 10px;
}

.platform-card {
    display: flex;
    flex-direction: column;
    border-radius: 22px;
    overflow: hidden;
    text-decoration: none;
    color: #46342a;
    background: #fff;
    box-shadow: 0 12px 36px rgba(0,0,0,.08);
    border: 1.5px solid rgba(0,0,0,.05);
    transition: .35s ease;
}

.platform-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 44px rgba(0,0,0,.13);
    border-color: rgba(0,0,0,.1);
}

.card-image-wrap {
    position: relative;
    height: 450px;
    overflow: hidden;
}

.card-image-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    transition: transform .4s ease;
}

.platform-card:hover .card-image-wrap img {
    transform: scale(1.05);
}

.card-image-fade {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 40%;
    background: linear-gradient(to bottom, transparent 0%, #fff 100%);
    pointer-events: none;
}

.platform-badge {
    position: absolute;
    top: 14px;
    left: 14px;
    color: #fff;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1px;
    padding: 5px 13px;
    border-radius: 50px;
    text-transform: uppercase;
}

.deliveroo .platform-badge { background: #00ccbc; }
.justeat .platform-badge  { background: #ff8000; }

.card-body-new {
    padding: 16px 26px 28px;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.card-body-new h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 32px;
    font-weight: 600;
    margin: 0;
    line-height: 1;
}

.card-body-new p {
    font-size: 13.5px;
    color: #8a7a6f;
    margin: 0;
    line-height: 1.5;
}

.card-cta {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    margin-top: 12px;
    font-size: 13px;
    font-weight: 500;
    color: #e58953;
    transition: gap .25s ease;
}

.platform-card:hover .card-cta { gap: 13px; }
/* ---------- CALL SECTION ---------- */

.call-section{
    margin-top:70px;
    text-align:center;
}

.call-section h2{
    font-family:'Cormorant Garamond',serif;
    font-size:42px;
    margin-bottom:8px;
    color:#46342a;
    display:flex;
    align-items:center;
    justify-content:center;
    gap:14px;
}

.call-section .section-note{
    max-width:560px;
    margin:0 auto 35px;
    text-align:center;
}

.call-cards{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:25px;
    max-width:700px;
    margin:0 auto;
}

.call-card{
    display:flex;
    flex-direction:column;
    gap:6px;
    padding:28px;
    border-radius:22px;
    text-decoration:none;
    background:#fff3e9;
    border:2px solid rgba(229,137,83,.2);
    transition:.3s ease;
}

.call-card:hover{
    background:#e58953;
    border-color:#e58953;
}

.call-card:hover .call-label,
.call-card:hover .call-number{
    color:#fff;
}

.call-label{
    font-size:13px;
    letter-spacing:1px;
    color:#9a8a7e;
    text-transform:uppercase;
}

.call-number{
    font-family:'Cormorant Garamond',serif;
    font-size:30px;
    font-weight:600;
    color:#46342a;
}

/* ---------- ADDRESS BOX ---------- */

.address-box{
    display:flex;
    align-items:flex-start;
    gap:16px;
    max-width:700px;
    margin:35px auto 0;
    padding:24px 26px;
    background:#fff;
    border-radius:18px;
    box-shadow:0 8px 24px rgba(0,0,0,.05);
    text-align:left;
}

.address-icon{
    font-size:26px;
}

.address-box h4{
    font-size:17px;
    margin-bottom:6px;
    color:#46342a;
}

.address-box p{
    font-size:13.5px;
    color:#8a7a6f;
    line-height:1.5;
}

/*====================================================
                RESPONSIVE MOBILE
====================================================*/
@media screen and (max-width: 768px) {
    .card-image-wrap {
        height: 400px !important;
    }
}
@media screen and (max-width: 768px) {
    .card-image-fade {
        height: 40%;
        background: linear-gradient(to bottom, transparent 0%, #fff 100%);
    }
}
@media screen and (max-width:768px){

    .order-hero{
        padding:130px 0 50px;
    }

    .order-hero h1{
        font-size:34px;
    }

    .order-hero p{
        font-size:15px;
        padding:0 10px;
    }
    .platforms { grid-template-columns: 1fr; }
    .card-image-wrap { height: 150px; }


    .call-section h2{
        font-size:30px;
    }

    .call-cards{
        grid-template-columns:1fr;
    }

    .address-box{
        flex-direction:column;
        text-align:center;
        align-items:center;
    }

    body{
        padding-bottom:90px;
    }
}

@keyframes scrollBg {
    from { background-position: 0 0; }
    to   { background-position: 0 -600px; }
}

.order-hero {
    position: relative;
    padding: 170px 0 70px;
    text-align: center;
    overflow: hidden;
    background-image: url("sfondoOrdina.png");
    background-repeat: repeat;
    background-size: 340px;
}

.order-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg,
        rgba(232,244,253,.80) 0%,
        rgba(232,244,253,.75) 60%,
        rgba(232,244,253,.95) 100%);
    pointer-events: none;
    z-index: 0;
}

.order-hero .container {
    position: relative;
    z-index: 2;
}

/*====================================================
            PAGINA GALLERIA - Da Mimmo e Rocco
====================================================*/

body.gallery-page-body header {
    background: rgba(255,255,255,.45);
    border: 1px solid rgba(255,255,255,.35);
}

body.gallery-page-body .mobile-nav {
    background: rgba(255,255,255,.4) !important;
    border: 1px solid rgba(255,255,255,.3);
}

/* ---------- HERO ---------- */

.gallery-hero {
    position: relative;
    padding: 170px 0 70px;
    text-align: center;
    overflow: hidden;
    background-image: url("sfondoGalleria.png");
    background-repeat: repeat;
    background-size: 340px;
    background-color: #fce8ed;
}

.gallery-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg,
        rgba(252,232,237,.80) 0%,
        rgba(252,232,237,.75) 60%,
        rgba(252,232,237,.95) 100%);
    pointer-events: none;
    z-index: 0;
}

.gallery-hero .container {
    position: relative;
    z-index: 2;
}

.gallery-hero .section-subtitle {
    color: #c2546e;
}

.gallery-hero h1 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 60px;
    margin: 6px 0 18px;
    color: #46342a;
}

.gallery-hero p {
    max-width: 600px;
    margin: 0 auto;
    color: #6b5a4f;
    font-size: 17px;
    line-height: 1.7;
}

.gallery-hero .hero-wave {
    position: absolute;
    left: 0;
    bottom: -1px;
    width: 100%;
    height: 60px;
    background: url("wave.svg") no-repeat center bottom;
    background-size: 100% 100%;
    z-index: 1;
}

/* ---------- FILTRI ---------- */

.gallery-filters-wrapper {
    position: sticky;
    top: 90px;
    z-index: 500;
    background: rgba(250,247,244,.92);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0,0,0,.05);
    padding: 14px 0;
}

.gallery-filters {
    display: flex;
    gap: 10px;
    overflow-x: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.gallery-filters::-webkit-scrollbar { display: none; }

.filter-btn {
    flex: 0 0 auto;
    white-space: nowrap;
    cursor: pointer;
    color: #6b5a4f;
    font-size: 14px;
    font-weight: 500;
    padding: 10px 18px;
    border-radius: 50px;
    border: 1px solid rgba(0,0,0,.08);
    background: #fff;
    transition: .25s ease;
    font-family: 'Poppins', sans-serif;
}

.filter-btn.active,
.filter-btn:hover {
    background: #c2546e;
    color: #fff;
    border-color: #c2546e;
    box-shadow: 0 6px 16px rgba(194,84,110,.30);
}

/* ---------- GRIGLIA GALLERIA ---------- */

.gallery-page {
    padding: 50px 0 60px;
}

.gallery-grid {
    columns: 3;
    column-gap: 20px;
}

.gallery-item {
    break-inside: avoid;
    margin-bottom: 20px;
    border-radius: 18px;
    overflow: hidden;
    position: relative;
    cursor: pointer;
    background: #f0e0e5;
}

.gallery-item img {
    width: 100%;
    display: block;
    transition: transform .4s ease;
}

.gallery-item:hover img {
    transform: scale(1.04);
}

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top,
        rgba(70,52,42,.75) 0%,
        transparent 55%);
    opacity: 0;
    transition: opacity .3s ease;
    display: flex;
    align-items: flex-end;
    padding: 20px;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-caption {
    color: #fff;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: .3px;
}

/* placeholder quando non c'è ancora l'immagine */
.gallery-placeholder {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: linear-gradient(135deg, #fce8ed, #f5d0d8);
    color: #c2546e;
    font-size: 13px;
    font-weight: 500;
    font-family: 'Poppins', sans-serif;
    letter-spacing: .5px;
    border-radius: 18px;
}

.gallery-placeholder .ph-icon {
    font-size: 32px;
    opacity: .5;
}

/* altezze variabili per effetto masonry */
.gallery-placeholder.h-sm  { height: 200px; }
.gallery-placeholder.h-md  { height: 270px; }
.gallery-placeholder.h-lg  { height: 340px; }
.gallery-placeholder.h-xl  { height: 400px; }

/* ---------- LIGHTBOX ---------- */

.lightbox {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: rgba(30,18,14,.92);
    align-items: center;
    justify-content: center;
    padding: 30px;
}

.lightbox.open {
    display: flex;
}

.lightbox img {
    max-width: 90vw;
    max-height: 85vh;
    border-radius: 16px;
    object-fit: contain;
}

.lightbox-close {
    position: absolute;
    top: 24px;
    right: 28px;
    color: #fff;
    font-size: 36px;
    cursor: pointer;
    line-height: 1;
    opacity: .8;
    transition: opacity .2s;
    background: none;
    border: none;
    font-family: 'Poppins', sans-serif;
}

.lightbox-close:hover { opacity: 1; }

.lightbox-prev,
.lightbox-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    color: #fff;
    font-size: 32px;
    cursor: pointer;
    opacity: .7;
    transition: opacity .2s;
    background: none;
    border: none;
    font-family: 'Poppins', sans-serif;
    padding: 10px;
}

.lightbox-prev:hover,
.lightbox-next:hover { opacity: 1; }

.lightbox-prev { left: 20px; }
.lightbox-next { right: 20px; }

/* ---------- RESPONSIVE MOBILE ---------- */

@media screen and (max-width: 768px) {

    .gallery-hero {
        padding: 130px 0 50px;
        background-size: 220px;
    }

    .gallery-hero h1 {
        font-size: 38px;
    }

    .gallery-hero p {
        font-size: 15px;
        padding: 0 10px;
    }

    .gallery-filters-wrapper {
        top: 78px;
    }

    .gallery-grid {
        columns: 2;
        column-gap: 12px;
    }

    .gallery-item {
        margin-bottom: 12px;
        border-radius: 12px;
    }

    .gallery-placeholder.h-sm  { height: 140px; }
    .gallery-placeholder.h-md  { height: 180px; }
    .gallery-placeholder.h-lg  { height: 220px; }
    .gallery-placeholder.h-xl  { height: 260px; }

    .lightbox-prev { left: 6px; }
    .lightbox-next { right: 6px; }

    body { padding-bottom: 90px; }
}


/*====================================================
            PAGINA INFO - Da Mimmo e Rocco
====================================================*/

body.info-page-body header {
    background: rgba(255,255,255,.45);
    border: 1px solid rgba(255,255,255,.35);
}

body.info-page-body .mobile-nav {
    background: rgba(255,255,255,.4) !important;
    border: 1px solid rgba(255,255,255,.3);
}

/* ---------- HERO ---------- */

.info-hero {
    position: relative;
    padding: 170px 0 70px;
    text-align: center;
    overflow: hidden;
    background-image: url("sfondoInfo.png");
    background-repeat: repeat;
    background-size: 340px;
    background-color: #e8f5ee;
}
.social-card {
    max-width: 560px;
    margin: 0 auto;
}

.phone-cards {
    max-width: 700px;
    margin: 0 auto;
}

.orari-card {
    max-width: 560px;
    margin: 0 auto;
}

.map-cta {
    justify-content: center;
}
.info-section-title {
    justify-content: center;
}

.info-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg,
        rgba(232,245,238,.80) 0%,
        rgba(232,245,238,.75) 60%,
        rgba(232,245,238,.95) 100%);
    pointer-events: none;
    z-index: 0;
}

.info-hero .container {
    position: relative;
    z-index: 2;
}

.info-hero .section-subtitle {
    color: #3a8c5c;
}

.info-hero h1 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 60px;
    margin: 6px 0 18px;
    color: #46342a;
}

.info-hero p {
    max-width: 600px;
    margin: 0 auto;
    color: #6b5a4f;
    font-size: 17px;
    line-height: 1.7;
}

.info-hero .hero-wave {
    position: absolute;
    left: 0;
    bottom: -1px;
    width: 100%;
    height: 60px;
    background: url("wave.svg") no-repeat center bottom;
    background-size: 100% 100%;
    z-index: 1;
}

/* ---------- LAYOUT PAGINA ---------- */

.info-page {
    padding: 60px 0 80px;
    display: flex;
    flex-direction: column;
    gap: 50px;
}

/* ---------- SEZIONE TITOLO ---------- */

.info-section-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 38px;
    color: #46342a;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 14px;
}

.info-section-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    font-size: 22px;
    background: #e8f5ee;
    border-radius: 50%;
    box-shadow: inset 0 0 0 2px rgba(58,140,92,.2);
    flex-shrink: 0;
}

/* ---------- CARD FACEBOOK ---------- */

.social-card {
    display: flex;
    align-items: center;
    gap: 24px;
    padding: 32px;
    border-radius: 22px;
    text-decoration: none;
    color: #46342a;
    background: #fff;
    box-shadow: 0 12px 36px rgba(0,0,0,.07);
    border: 1.5px solid rgba(0,0,0,.05);
    transition: .35s ease;
    max-width: 560px;
}

.social-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 44px rgba(0,0,0,.11);
    border-color: #1877f2;
}

.social-card-icon {
    flex-shrink: 0;
    width: 68px;
    height: 68px;
    border-radius: 50%;
    background: #1877f2;
    display: flex;
    align-items: center;
    justify-content: center;
}

.social-card-icon svg {
    width: 36px;
    height: 36px;
    fill: #fff;
}

.social-card-text h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 28px;
    margin-bottom: 4px;
}

.social-card-text p {
    font-size: 14px;
    color: #8a7a6f;
    line-height: 1.5;
}

.social-card-arrow {
    margin-left: auto;
    font-size: 22px;
    color: #1877f2;
    transition: transform .25s ease;
}

.social-card:hover .social-card-arrow {
    transform: translateX(6px);
}

/* ---------- MAPPA ---------- */

.map-wrap {
    border-radius: 22px;
    overflow: hidden;
    box-shadow: 0 12px 36px rgba(0,0,0,.08);
    border: 1.5px solid rgba(0,0,0,.05);
    position: relative;
}

.map-wrap iframe {
    width: 100%;
    height: 380px;
    display: block;
    border: none;
}

.map-cta {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 16px;
}

.btn-maps {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #3a8c5c;
    color: #fff;
    padding: 14px 26px;
    border-radius: 50px;
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    transition: .3s ease;
    box-shadow: 0 6px 18px rgba(58,140,92,.3);
}

.btn-maps:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 24px rgba(58,140,92,.4);
    background: #2d7049;
}

.btn-maps svg {
    width: 20px;
    height: 20px;
    fill: #fff;
    flex-shrink: 0;
}

.address-inline {
    font-size: 14px;
    color: #8a7a6f;
}

/* ---------- TELEFONI ---------- */

.phone-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    max-width: 700px;
}

.phone-card {
    display: flex;
    flex-direction: column;
    gap: 6px;
    padding: 28px;
    border-radius: 22px;
    text-decoration: none;
    background: #fff;
    border: 1.5px solid rgba(0,0,0,.06);
    box-shadow: 0 8px 24px rgba(0,0,0,.05);
    transition: .3s ease;
}

.phone-card:hover {
    background: #3a8c5c;
    border-color: #3a8c5c;
    transform: translateY(-4px);
    box-shadow: 0 14px 32px rgba(58,140,92,.25);
}

.phone-card:hover .phone-label,
.phone-card:hover .phone-number {
    color: #fff;
}

.phone-label {
    font-size: 12px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: #9a8a7e;
    transition: color .3s;
}

.phone-number {
    font-family: 'Cormorant Garamond', serif;
    font-size: 30px;
    font-weight: 600;
    color: #46342a;
    transition: color .3s;
    line-height: 1.1;
}

/* ---------- ORARI ---------- */

.orari-table {
    width: 100%;
    max-width: 560px;
    border-collapse: collapse;
}

.orari-table tr {
    border-bottom: 1px dashed rgba(70,52,42,.12);
}

.orari-table tr:last-child {
    border-bottom: none;
}

.orari-table td {
    padding: 13px 0;
    font-size: 15px;
    color: #6b5a4f;
}

.orari-table td:first-child {
    font-weight: 500;
    color: #46342a;
    width: 160px;
}

.orari-table td:last-child {
    text-align: right;
}

.orari-chiuso {
    color: #c0392b !important;
    font-weight: 500;
}

.orari-aperto {
    color: #3a8c5c !important;
    font-weight: 500;
}

.orari-card {
    background: #fff;
    border-radius: 22px;
    padding: 30px 36px;
    box-shadow: 0 8px 24px rgba(0,0,0,.05);
    border: 1.5px solid rgba(0,0,0,.05);
    max-width: 560px;
}

/* ---------- LOYALTY BANNER ---------- */

.loyalty-banner {
    position: relative;
    margin: 10px 0 0;
    padding: 35px;
    background: #3a8c5c;
    background-image: radial-gradient(circle at 90% 20%, rgba(255,255,255,.15) 0%, transparent 50%);
    border-radius: 20px;
    color: #fff;
    text-align: center;
    overflow: hidden;
}

.loyalty-banner::before {
    content: "🎁";
    position: absolute;
    font-size: 90px;
    opacity: .12;
    right: 20px;
    top: -10px;
    transform: rotate(-10deg);
}

.loyalty-banner h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 30px;
    margin-bottom: 6px;
}

.loyalty-banner p {
    font-size: 15px;
    opacity: .95;
}

/* ---------- RESPONSIVE ---------- */

@media screen and (max-width: 768px) {

    .info-hero {
        padding: 130px 0 50px;
        background-size: 220px;
    }

    .info-hero h1 {
        font-size: 36px;
    }

    .info-hero p {
        font-size: 15px;
        padding: 0 10px;
    }

    .social-card {
        max-width: 100%;
        padding: 22px;
        gap: 16px;
    }

    .map-wrap iframe {
        height: 280px;
    }

    .phone-cards {
        grid-template-columns: 1fr;
        max-width: 100%;
    }

    .orari-card {
        padding: 22px 20px;
    }

    .orari-table td:first-child {
        width: 130px;
    }

    .info-section-title {
        font-size: 30px;
    }

    body { padding-bottom: 90px; }
}

/* ====================================================
            ANIMAZIONI PAGINA
==================================================== */

@keyframes slideUp {
    from { opacity: 0; transform: translateY(30px); }
    to   { opacity: 1; transform: translateY(0); }
}

.animate {
    opacity: 0;
    animation: slideUp .3s ease forwards;
}

header {
    animation: none !important;
    opacity: 1 !important;
    transform: translateX(-50%) !important;
    transition: padding .4s ease, width .4s ease !important;
}

header * {
    animation: none !important;
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
}
.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}