

/* HEADER  */
.mix-hero{
  position: relative;
  min-height: 78vh;
  max-height: 820px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: #000;
}

/* Background */
.mix-hero__bg{
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;

  transform: scale(1.06);
  transition: transform 6s cubic-bezier(.22,.61,.36,1); /* MOLTO smooth */
  will-change: transform;
}

/* Micro boost on hover */
@media (hover:hover){
  .mix-hero:hover .mix-hero__bg{
    transform: scale(1.10);
  }
}


/* Overlay */
.mix-hero__overlay{
  position: absolute;
  inset: 0;
  background:
    radial-gradient(1200px 600px at 50% 35%, rgba(255,255,255,.10), transparent 55%),
    linear-gradient(180deg, rgba(0,0,0,.70) 0%, rgba(0,0,0,.35) 38%, rgba(0,0,0,.74) 100%);
}

/* Logo top-right */
.mix-hero__brand{
  position: absolute;
  z-index: 3;
  top: 22px;
  right: 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;

  padding: 10px 12px;
  border-radius: 16px;

  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.18);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);

  box-shadow: 0 14px 40px rgba(0,0,0,.28);
  text-decoration: none;
}

.mix-hero__brandImg{
  display: block;
  height: 34px;     /* regola qui la dimensione */
  width: auto;
}

/* Container centrato */
.mix-hero__container{
  position: relative;
  z-index: 2;
}

/* Content */
.mix-hero__content{
  padding: 72px 0;
}

/* Glass */
.mix-hero__glass{
  position: relative;
  display: inline-block;
  max-width: 920px;
  padding: 34px 36px 30px;
  border-radius: 28px;

  background: rgba(255,255,255,.10);
  border: 1px solid rgba(255,255,255,.22);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);

  box-shadow: 0 22px 60px rgba(0,0,0,.35);
  overflow: hidden;
}

/* Shine */
.mix-hero__glass::before{
  content:"";
  position:absolute;
  inset:-60% -40%;
  background: linear-gradient(120deg, transparent 35%, rgba(255,255,255,.18) 50%, transparent 65%);
  transform: rotate(12deg) translateX(-25%);
  opacity: .55;
  pointer-events:none;
}

/* Kicker */
.mix-hero__kicker{
  display: inline-block;
  font-size: .85rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: rgba(255,255,255,.85);
  margin-bottom: 10px;
  color: #ffffff;
}



/* Titolo */
.mix-hero__title{
  font-size: 4.1rem;
  line-height: 1;
  font-weight: 900;
  margin: 0 0 14px;
  color: #fff;
  letter-spacing: .4px;
  text-shadow:
    0 10px 35px rgba(0,0,0,.55),
    0 2px 10px rgba(0,0,0,.40);
}

/* Sottotitolo */
.mix-hero__subtitle{
  font-size: 1.12rem;
  line-height: 1.7;
  color: rgba(255,255,255,.92);
  max-width: 720px;
  margin: 0 auto;
}

/* Accent opzionale */
.mix-hero__accent{
  margin: 22px auto 0;
  height: 10px;
  width: 190px;
  border-radius: 999px;
  background:
    radial-gradient(140px 36px at 20% 50%, rgba(197,163,90,.70), transparent 70%),
    radial-gradient(160px 36px at 90% 50%, rgba(0,103,176,.40), transparent 70%),
    rgba(255,255,255,.22);
  border: 1px solid rgba(255,255,255,.30);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}



/* =========================
   BUTTON – GLASS WHITE → OUTLINE (base)
   ========================= */
   .btn-glass-outline{
    display: inline-flex;
    align-items: center;
    justify-content: center;
  
    padding: 14px 30px;
    border-radius: 999px;
  
    font-size: 0.95rem;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
  
    color: #0f2f4f;
    text-decoration: none;
  
    background: linear-gradient(135deg, rgba(255,255,255,0.85), rgba(255,255,255,0.65));
    border: 1px solid rgba(255,255,255,0.90);
  
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
  
    box-shadow:
      0 10px 28px rgba(0,0,0,0.12),
      inset 0 1px 0 rgba(255,255,255,0.65);
  
    transition:
      background 0.35s ease,
      color 0.3s ease,
      border-color 0.35s ease,
      box-shadow 0.35s ease,
      transform 0.25s cubic-bezier(.22,.61,.36,1);
  }
  
  /* Hover / Focus: SOLO stroke blu (su sfondi chiari) */
  .btn-glass-outline:hover,
  .btn-glass-outline:focus{
    background: transparent;
    color: white;
    border-color: rgba(30, 110, 170, 0.85);
  
    box-shadow:
      0 12px 34px rgba(30, 110, 170, 0.20),
      inset 0 1px 0 rgba(255,255,255,0.25);
  
    transform: translateY(-2px);
    text-decoration: none;
  }
  
  /* Active */
  .btn-glass-outline:active{
    transform: translateY(0);
    box-shadow:
      0 8px 22px rgba(30, 110, 170, 0.18),
      inset 0 1px 0 rgba(255,255,255,0.20);
  }
  


  /* =========================
     VARIANTE PER SFONDI SCURI (HERO)
     ========================= */
  .btn-glass-outline--dark{
    color: rgba(255,255,255,0.95);
    border-color: rgba(255,255,255,0.85);
  }
  
  /* Hover SOLO stroke BIANCO (così non sparisce sull’hero) */
  .btn-glass-outline--dark:hover,
  .btn-glass-outline--dark:focus{
    background: transparent;
    color: #ffffff;
    border-color: rgba(255,255,255,0.95);
  
    box-shadow:
      0 12px 34px rgba(0,0,0,0.30),
      inset 0 1px 0 rgba(255,255,255,0.20);
  }
  

/* Parallax on hover */
@media (hover:hover){
  .mix-hero:hover .mix-hero__bg{
    transform: scale(1.12);
    transition: transform 1.2s ease;
  }
}

  


  /* =========================
   SECTION – CTA BOXED (testo + immagine)
   ========================= */
.mix-custom-cta-section{
  background: transparent;
}

.mix-custom-cta-box{
  border-radius: 28px;
  overflow: hidden;

  background: #fff;
  border: 1px solid rgba(15,47,79,.10);

  box-shadow: 0 18px 45px rgba(15, 50, 90, 0.14);
}

/* Colonna testo */
.mix-custom-cta-box__content{
  height: 100%;
  padding: 42px 38px;

  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* Pill */
.mix-custom-cta-box__pill{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  align-self: flex-start;

  padding: 9px 22px;
  border-radius: 999px;

  font-size: .75rem;
  font-weight: 900;
  letter-spacing: .22em;
  text-transform: uppercase;

  color: #0f2f4f;
  background: rgba(15,47,79,.06);
  border: 1px solid rgba(15,47,79,.12);

  margin-bottom: 14px;
}

/* Testo */
.mix-custom-cta-box__text{
  margin: 0 0 22px;
  max-width: 520px;

  font-size: 1.05rem;
  line-height: 1.85;
  color: #0f2f4f;
  opacity: .95;
}

/* CTA */
.mix-custom-cta-box__cta{
  margin-top: 4px;
}

/* Media */
.mix-custom-cta-box__media{
  position: relative;
  width: 100%;
  height: 100%;

  min-height: 360px;
  background-size: cover;
  background-position: center;
}

.mix-custom-cta-box__mediaOverlay{
  position: absolute;
  inset: 0;
  background:
    radial-gradient(800px 380px at 30% 30%, rgba(255,255,255,.10), transparent 60%),
    linear-gradient(180deg, rgba(0,0,0,.10), rgba(0,0,0,.35));
}


/* =========================
   PATCH BUTTON: evita "sparizione" su hover in box chiaro
   Usa class: .btn-glass-outline.-onlight
   ========================= */
.btn-glass-outline.-onlight{
  color: #0f2f4f;
  border-color: rgba(15,47,79,.14);
}

/* Hover: SOLO stroke blu, ma con testo sempre ben visibile */
.btn-glass-outline.-onlight:hover,
.btn-glass-outline.-onlight:focus{
  background: transparent;
  color: #1e6faa; /* testo blu visibile */
  border-color: rgba(30, 110, 170, 0.85);

  box-shadow:
    0 12px 34px rgba(30, 110, 170, 0.20),
    inset 0 1px 0 rgba(255,255,255,0.25);

  text-decoration: none;
}








/* =========================
   INFO BANNER – NOTE QUOTE
   ========================= */
   .mix-note-section{
    background: transparent;
  }
  
  .mix-note-banner{
    display: block;
    padding: 16px 24px;
    border-radius: 20px;
  
    background: linear-gradient(
      135deg,
      rgba(255,255,255,0.85),
      rgba(255,255,255,0.65)
    );
  
    border: 1px solid rgba(15,47,79,0.12);
  
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
  
    box-shadow:
      0 10px 26px rgba(15, 50, 90, 0.12),
      inset 0 1px 0 rgba(255,255,255,0.6);
  }
  
  .mix-note-text{
    font-size: 0.85rem;
    line-height: 1.6;
    letter-spacing: 0.02em;
    color: #0f2f4f; /* blu elegante */
    opacity: 0.9;
  }
  





  
  /* =========================
     VISUAL (SINISTRA)
     ========================= */
  .resort-visual{
    position: relative;
    flex: 1 1 50%;
    min-height: 320px;
    background-size: cover;
    background-position: center;
  }
  
  .resort-visual__overlay{
    position:absolute;
    inset:0;
    background:
      radial-gradient(900px 420px at 20% 25%, rgba(255,255,255,.18), transparent 60%),
      linear-gradient(110deg, rgba(0,0,0,.30), rgba(0,0,0,.08) 55%, rgba(0,0,0,.24));
  }
  
  /* Tag sopra immagine (glass) */
  .resort-visual__tag{
    position: absolute;
    left: 18px;
    top: 18px;
    padding: 10px 16px;
    border-radius: 999px;
    font-size: .85rem;
    letter-spacing: .04em;
    color: rgba(255,255,255,.92);
    background: rgba(28,28,28,.35);
    border: 1px solid rgba(255,255,255,.22);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    z-index: 2;
  }
  
  /* =========================
     PANEL (DESTRA)
     ========================= */
  .resort-panel{
    position: relative;
    flex: 1 1 50%;
    background: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  
  /* texture premium */
  .resort-panel::before{
    content:"";
    position:absolute;
    inset:0;
    background:
      radial-gradient(900px 380px at 10% 20%, rgba(197,163,90,.10), transparent 60%),
      radial-gradient(900px 380px at 90% 85%, rgba(0,103,176,.08), transparent 60%);
    pointer-events:none;
  }
  
  /* contenuto sopra texture */
  .resort-panel > *{
    position: relative;
    z-index: 1;
  }
  
  /* shine leggero */
  .resort-panel::after{
    content:"";
    position:absolute;
    inset:-60% -40%;
    background: linear-gradient(
      120deg,
      transparent 35%,
      rgba(255,255,255,.22) 50%,
      transparent 65%
    );
    transform: rotate(12deg) translateX(-25%);
    opacity: 0;
    transition: opacity .35s ease, transform .55s ease;
    pointer-events:none;
  }
  
  .carousel-item:hover .resort-panel::after{
    opacity: 1;
    transform: rotate(12deg) translateX(10%);
  }
  
  /* =========================
     INDEX BADGE (TOP RIGHT)
     ========================= */
  .resort-panel__index{
    position: absolute;
    top: 22px;
    right: 22px;
  
    width: 44px;
    height: 44px;
    border-radius: 50%;
  
    display: flex;
    align-items: center;
    justify-content: center;
  
    font-size: 1rem;
    font-weight: 700;
    color: #0f2f4f;
  
    background: rgba(255,255,255,.95);
    border: 2px solid rgba(15,47,79,.18);
  
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
  
    box-shadow: 0 10px 26px rgba(15,43,70,.18);
    z-index: 3;
  }
  
  /* =========================
     TYPOGRAPHY
     ========================= */
  .resort-panel__brand{
    letter-spacing: .6px;
    text-transform: uppercase;
    font-size: .95rem;
    opacity: .85;
  }
  
  .resort-panel__destination{
    font-size: 2.25rem;
    line-height: 1.05;
    font-weight: 800;
    margin-top: .35rem;
    color: #0f2f4f;
  }
  
  .resort-panel__headline{
    font-size: 1.05rem;
    letter-spacing: .2px;
  }
  
  .resort-panel__description{
    font-size: .98rem;
    line-height: 1.75;
    color: #444;
    max-width: 620px;
  }
  
  .resort-panel__label{
    font-weight: 700;
    margin-bottom: .35rem;
  }
  
  /* =========================
     INDICATORS (DOTS)
     ========================= */
  .resort-showcase__dots li{
    width: 8px;
    height: 8px;
    border-radius: 999px;
    background: rgba(15,47,79,.25);
  }
  
  .resort-showcase__dots .active{
    background: #0067b0;
  }
  
  /* =========================
     CONTROLS – FRECCE
     ========================= */
  .resort-showcase__control{
    width: 64px;
    opacity: 1;
    z-index: 5;
  }
  
  .resort-showcase__arrow{
    width: 46px;
    height: 46px;
    border-radius: 50%;
  
    display: flex;
    align-items: center;
    justify-content: center;
  
    font-size: 28px;
    line-height: 1;
  
    color: #0f2f4f;
  
    background: rgba(255,255,255,.95);
    border: 1px solid rgba(15,47,79,.15);
  
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
  
    box-shadow: 0 10px 28px rgba(15,43,70,.22);
    transition: transform .25s ease, box-shadow .25s ease;
  }
  
  /* posizionamento frecce */
  .carousel-control-prev{ left: 14px; }
  .carousel-control-next{ right: 14px; }
  
  .resort-showcase__control:hover .resort-showcase__arrow{
    transform: translateY(-2px);
    box-shadow: 0 14px 38px rgba(15,43,70,.30);
  }
  

/* =========================
   BADGE CIRCULAR – DARK (TOP RIGHT)
   ========================= */
   .mix-badge-dark{
    display: inline-flex;
    align-items: center;
    justify-content: center;
  
    width: 44px;
    height: 44px;
    border-radius: 50%;
  
    font-size: 1rem;
    font-weight: 700;
    color: rgba(255,255,255,.95);
  
    background: rgba(0,0,0,.55);       /* vetro nero */
    border: 1.5px solid rgba(0,0,0,.85);
  
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
  
    box-shadow: 0 8px 22px rgba(0,0,0,.35);
  
    letter-spacing: .02em;
  }
  
  /* Posizionamento top-right */
  .mix-badge-dark--top-right{
    position: absolute;
    top: 22px;
    right: 22px;
    z-index: 5;
  }
  

/* =========================
   MIX ACCORDION 
   ========================= */

/* Desktop height fissa  con --mixH (es. 420px) */
.mix-accordion{
  display: flex;
  border-radius: 24px;
  overflow: hidden;
  background: #000;
  box-shadow: 0 18px 45px rgba(15,43,70,.14);
}

/* pannelli */
.mix-panel{
  position: relative;
  flex: 1;
  cursor: pointer;
  background-size: cover;
  background-position: center;
  transition: flex .75s cubic-bezier(.22,.61,.36,1);
}


/* overlay */
.mix-overlay{
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,.45), rgba(0,0,0,.88));
}

/* contenuto */
.mix-inner{
  position: relative;
  z-index: 1;
  padding: 22px 22px 18px;
  color: #fff;
  display: flex;
  flex-direction: column;
}

/* header top */
.mix-top{
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 18px; /* più stacco dal titolo */
}

.mix-pill{
  padding: 7px 16px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.85);
  font-size: .72rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  background: rgba(255,255,255,.06);
  backdrop-filter: blur(10px);
}

.mix-index{
  width: 42px;
  height: 42px;
  border-radius: 999px;
  border: 2px solid rgba(255,255,255,.85);
  display: flex;
  align-items: center;
  justify-content: center;
}

/* corpo */
.mix-body{
  /* in desktop lo teniamo in basso ma senza vuoti inutili */
  /* margin-top: auto; */
  max-width: 760px;
  opacity: 0;
  transform: translateY(12px);
  transition: opacity .5s ease, transform .7s cubic-bezier(.22,.61,.36,1);
}

/* title */
.mix-title{
  font-size: 2.05rem;
  font-weight: 900;
  line-height: 1.1;
  margin: 0 0 14px;
  color: #fff;
  text-shadow: 0 14px 40px rgba(0,0,0,.55);
}

/* blocchi */
.mix-block{
  background: rgba(255,255,255,.10);
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 16px;
  padding: 14px 14px;
  margin-bottom: 12px;
  backdrop-filter: blur(12px);
}

.mix-meta{
  font-size: .72rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  opacity: .9;
  margin-bottom: 6px;
}

.mix-hotel{
  font-weight: 900;
  margin-bottom: 6px;
}

.mix-stars{ opacity: .9; font-weight: 800; }

.mix-text{
  line-height: 1.6;
  opacity: .92;
}

.mix-price{
  margin-top: 8px;
  padding: 6px 10px;
  display: inline-block;
  border-radius: 12px;
  background: rgb(255 255 255 / 18%);
  border: 1px solid rgba(197,163,90,.22);
}

.mix-link{
  display: inline-block;
  margin-top: 10px;
  font-weight: 800;
  color: #fff;
  text-decoration: none;
}

.mix-link:hover{ text-decoration: none; opacity: .9; transform: translateX(2px); }

/* volo */
.mix-flight{
  margin-top: 6px;
  background: rgba(0,0,0,.18);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 16px;
  padding: 12px 14px;
}

.mix-flight__label{
  font-size: .72rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  font-weight: 900;
  margin-bottom: 6px;
  opacity: .95;
}

.mix-flight__text{
  opacity: .9;
  line-height: 1.6;
}

/* + scopri: centrato perfetto */
.mix-hint{
  position: absolute;
  font-size: 1.2rem;
  inset: 0;
  display: grid;
  place-items: center;
  pointer-events: none;
  opacity: .92;
  letter-spacing: .14em;
  text-transform: uppercase;
  transform: rotate(-90deg);
  transition: opacity .25s ease, transform .5s cubic-bezier(.22,.61,.36,1);
}

/* attivo */
.mix-panel.is-active{ flex: 4; }
.mix-panel.is-active .mix-body{
  opacity: 1;
  transform: translateY(0);
  transition-delay: .10s;
}
.mix-panel.is-active .mix-hint{
  opacity: 0;
  transform: rotate(-90deg) translateY(-6px);
}




/* =========================
   LABEL / PILL – MIX 
   ========================= */
   .mix-label-pill{
    display: inline-flex;
    align-items: center;
    justify-content: center;
  
    padding: 10px 34px;
    border-radius: 999px;
  
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 0.22em;
    text-transform: uppercase;
  
    color: #0f2f4f !important;
    text-align: center;
  
    background: linear-gradient(
      135deg,
      rgba(255,255,255,0.88),
      rgba(255,255,255,0.66)
    ) !important;
  
    border: 1px solid rgba(255,255,255,0.92) !important;
  
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
  
    box-shadow:
      0 10px 26px rgba(15, 50, 90, 0.18),
      inset 0 1px 0 rgba(255,255,255,0.65);
  
    margin: 0 auto 22px;
  }
  
  /* Variante su sfondo chiaro (più “pulita”) */
  .mix-label-pill--light{
    background: rgba(255,255,255,0.96) !important;
    border-color: rgba(15,47,79,0.12) !important;
  }
  
  /* Variante su sfondo scuro/foto (testo bianco) */
  .mix-label-pill--dark{
    color: rgba(255,255,255,0.96) !important;
    background: rgba(255,255,255,0.10) !important;
    border-color: rgba(255,255,255,0.22) !important;
    box-shadow: 0 18px 45px rgba(0,0,0,0.25), inset 0 1px 0 rgba(255,255,255,0.35);
  }
  
 

  
/* =========================
   RESPONSIVE
========================= */

  
@media (max-width: 991.98px){
    .mix-hero{ min-height: 62vh; }
    .mix-hero__glass{ padding: 28px 24px 24px; border-radius: 24px; }
    .mix-hero__title{ font-size: 3.2rem; }
    .mix-hero__brandImg{ height: 30px; }
    .resort-slide{ min-height: auto; }
    .resort-panel__destination{ font-size: 1.9rem; }
}


@media (max-width: 767.98px){
    .btn-glass-outline{
      padding: 12px 24px;
      font-size: 0.9rem;
    }

    .mix-custom-cta-box{
        border-radius: 22px;
      }
    
    .mix-custom-cta-box__content{
        padding: 30px 22px;
        text-align: center;
    }
    
    .mix-custom-cta-box__pill{
        align-self: center;
    }
    
    .mix-custom-cta-box__text{
        margin-left: auto;
        margin-right: auto;
        font-size: .98rem;
    }
    
    .mix-custom-cta-box__media{
        min-height: 240px;
    }

    .mix-note-banner{
        padding: 14px 18px;
        border-radius: 18px;
    }
    
    .mix-note-text{
        font-size: 0.8rem;
    }

    .resort-panel__index{
        width: 38px;
        height: 38px;
        top: 16px;
        right: 16px;
        font-size: .9rem;
    }

    .resort-showcase__control{
        display: none;
    }  


    
    /* i controlli restano full-height ma mettono il contenuto in basso */
    #resortShowcase .carousel-control-prev,
    #resortShowcase .carousel-control-next{
        display: flex !important;
        align-items: flex-end !important;     /* ↓ in basso */
        justify-content: center !important;

        opacity: 1 !important;
        z-index: 999 !important;

        top: 0 !important;                   /* full height */
        bottom: 0 !important;
        transform: none !important;

        width: 56px !important;
        padding-bottom: 22px !important;     /* distanza dal bordo */
    }

    /* posizione laterale */
    #resortShowcase .carousel-control-prev{ left: 12px !important; }
    #resortShowcase .carousel-control-next{ right: 12px !important; }

    /* disattiva eventuali icone bootstrap */
    #resortShowcase .carousel-control-prev-icon,
    #resortShowcase .carousel-control-next-icon{
        background-image: none !important;
    }

    /* bottone freccia */
    #resortShowcase .resort-showcase__arrow{
    width: 38px !important;
    height: 38px !important;
    font-size: 22px !important;

    display: flex !important;
    align-items: center !important;
    justify-content: center !important;

    border-radius: 50% !important;
    background: rgba(255,255,255,.95) !important;
    border: 1px solid rgba(15,47,79,.15) !important;
    color: #0f2f4f !important;

    box-shadow: 0 10px 28px rgba(15,43,70,.22) !important;
    backdrop-filter: blur(10px) !important;
    -webkit-backdrop-filter: blur(10px) !important;
    }

    /* overlay non deve bloccare i tap */
    #resortShowcase .resort-visual__overlay{
    pointer-events: none !important;
    }

    .mix-accordion{ height: var(--mixH, 420px); }
    .mix-panel{ height: 100%; }
    .mix-inner{ height: 100%; }


    /* Tab chiuse: niente pill + index */
    .mix-panel:not(.is-active) .mix-top{
        opacity: 0;
        pointer-events: none;
    }
    
    /* Tab attiva: visibili */
    .mix-panel.is-active .mix-top{
        opacity: 1;
        pointer-events: auto;
    }

    /* titolo centrato su tab chiuse */
    .mix-accordion{
        display: flex !important;
        flex-direction: column !important;
        height: auto !important;
      }
    
    .mix-panel{
        flex: none !important;
        width: 100% !important;
        min-height: 110px !important;
    }
    
    /* chiuse (puoi regolare altezza) */
    .mix-panel:not(.is-active){
        min-height: 188px !important;
    }
    
    .mix-panel.is-active{
        min-height: auto !important;
    }
    
    /* Nasconde il +Scopri nelle tab chiuse (mobile) */
    .mix-panel:not(.is-active) .mix-hint{
      display: none !important;
    }
    
    /* top nascosto nelle chiuse */
    .mix-panel:not(.is-active) .mix-top{ display: none !important; }
    .mix-panel.is-active .mix-top{ display: flex !important; }
    
    /* body chiuso/aperto */
    .mix-body{
        margin-top: 0 !important;
        max-height: 0 !important;
        overflow: hidden !important;
        opacity: 0 !important;
        transform: none !important;
        transition: max-height .6s cubic-bezier(.22,.61,.36,1), opacity .25s ease !important;
    }

    .mix-panel.is-active .mix-body{
        max-height: 2400px !important;
        opacity: 1 !important;
    }
    
    /* TITOLO CENTRATO su tab chiuse (presa da data-title) */
    .mix-panel:not(.is-active)::after{
        content: attr(data-title);
        position: absolute;
        inset: 0;
        z-index: 2;
    
        display: flex;
        align-items: center;
        justify-content: center;
    
        padding: 0 18px;
        text-align: center;
    
        font-size: 1.25rem;
        text-transform: uppercase;
        font-weight: 900;
        line-height: 1.15;
    
        color: #fff;
        text-shadow: 0 12px 35px rgba(0,0,0,.55);
    
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    
        pointer-events: none;
    }
    
    /* Mix-hint: su mobile lo mettiamo come +Scopri in basso (se lo vuoi)
         Se invece vuoi nasconderlo del tutto nelle chiuse, commenta il blocco */
    .mix-hint{
        inset: auto !important;
        left: 50% !important;
        bottom: 12px !important;
    
        width: auto !important;
        height: auto !important;
    
        display: inline-flex !important;
        transform: translateX(-50%) !important;
    
        opacity: .92 !important;
        font-size: .95rem !important;
        letter-spacing: .14em !important;
        text-transform: uppercase !important;
    }
    
    .mix-panel.is-active .mix-hint{
        opacity: 0 !important;
        transform: translateX(-50%) translateY(6px) !important;
    }


    .mix-label-pill{
        padding: 9px 26px;
        font-size: 0.72rem;
        margin-bottom: 18px;
      }


}

  
@media (max-width: 576px){
    .mix-hero{ min-height: 56vh; }
    .mix-hero__content{ padding: 56px 0; }
    .mix-hero__title{ font-size: 2.55rem; }
    .mix-hero__subtitle{ font-size: 1.02rem; }
  
    .mix-hero__brand{
      top: 14px;
      right: 14px;
      padding: 8px 10px;
      border-radius: 14px;
    }
    .mix-hero__brandImg{ height: 28px; }
}
  



