

/* Testo */
.text-wrapper {
  width: 100%;
  padding: 4rem 2rem;
  background-color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
}

.text-wrapper .inner {
  max-width: 600px;
  width: 100%;
}

/* Lista servizi */
.text-wrapper ul {
  list-style: none;
  padding: 0;
  margin: 2rem 0;
}

.text-wrapper li {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.icon-textarea img {
  width: 24px;
  height: 24px;
}

.panel-text h3 {
  font-size: 1.2rem;
  margin-bottom: 0.3rem;
}

.panel-text p {
  font-size: 1rem;
  margin: 0;
  color: #555;
}

/* CTA */
.btn-custom {
  text-transform: uppercase;
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: bold;
  background: none;
  border: none;
  cursor: pointer;
  padding-bottom: 2px;
  position: relative;
  color: #000;
}

.btn-custom:hover {
  opacity: 0.6;
}

.title_btn {
  font-size: 1rem;
  margin: 0;
}


.store-experience-block {
  width: 100%;
}

.store-experience-section {
  display: flex;
  flex-direction: row;
  width: 100%;
}

.store-experience-section .image-wrapper {
  width: 100%;
  height: 100vh;
}

.store-experience-section .image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}


.image-wrapper {height: 100vh; overflow: hidden;}


.image-wrapper img {width: 100%; height: 100%; object-fit: cover; display: block;}

.store-experience-section .text-wrapper {
  width: 100%;
  background-color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 3rem 1.5rem;
}

.store-experience-section .inner {
  max-width: 600px;
  width: 100%;
}

.store-experience-section ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.store-experience-section li {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.store-experience-section h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.store-experience-section p {
  font-size: 1rem;
  color: #333;
  margin:0 0 1rem 0;
}

.store-experience-section .cta {
  margin-top: 2rem;
}

.icon-textarea {
    margin-top: .5rem;
}
.panel-text h3 {font-size:22px;}

.cta-experience {
    text-align: center;
    text-transform: uppercase;
    /* border: solid 1px #161515; */
    background-color: #161515;
    color: #ffffff;
    padding: 20px 10px;
    border-radius: 5px;
}

.cta-experience a {color: #ffffff;}
.cta-experience a:hover {opacity:.5}






@media (min-width: 922px) {
    .site-content .ast-container {
        display: inline-grid
;
    }
}



.arrow_exp{
    max-width: 600px;
    left: 0em;

    position: absolute;
    z-index: 10;
        width: 20%;
}





html, body {
  height: 100%;
  margin: 0;
  scroll-behavior: smooth;
  overflow: hidden;
}

.store-experience-block {
  height: 100vh;
  overflow-y: scroll;
  scroll-snap-type: y mandatory;
}

.store-experience-section {
  scroll-snap-align: start;
  height: 100vh;
  flex: none;
  display: flex;
}











.evento-content {
  display: flex;
  flex-wrap: wrap;          /* così su schermi piccoli vanno sotto */
  gap: 2rem;                /* spazio tra i box */
  align-items: flex-start;  /* allineamento verticale (in alto) */
}

/* Ogni box prende la metà della larghezza */
.box_title,
.box_description {
  flex: 1 1 50%;     /* base 50%, ma flessibile */
  box-sizing: border-box;
}



.evento-wrapper {
    padding: 2rem 0;
    max-width: 900px;
    margin: 0 auto;
}
/* Responsive: su mobile vanno uno sotto l'altro */
@media (max-width: 768px) {
  .box_title,
  .box_description {
    flex: 1 1 100%;
  }
}





.evento-wrapper {
    padding: 2rem 0;
    max-width: 900px;
    margin: 0 auto;
}
.evento-content {
  display: flex;
  flex-wrap: wrap;          /* su schermi piccoli va a capo */
  gap: 0rem;                /* spazio tra i box */
  align-items: flex-end;
  padding: 2rem 5rem;
}
h1.evento-title {
    font-size: 2.7rem;
}
.box_title,
.box_description {
  flex: 1 1 50%;     /* ogni box prende metà spazio */
  box-sizing: border-box;
}

@media (max-width: 768px) {
  .box_title,
  .box_description {
    flex: 1 1 100%; /* su mobile vanno uno sotto l’altro */
  }
}
  .evento-elenco-content {
    margin: 3rem;
  }

  .evento-elenco-content h2 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
  }

  .evento-elenco-box {
    padding: 1rem 0;
  }

  .evento-elenco-list {
    list-style: decimal inside;   /* numerazione interna */
    margin: 0;
    padding: 0;
    display: grid;
    grid-template-columns: 1fr 1fr; /* 2 colonne */
    gap: 2rem;
    counter-reset: list-counter;  /* reset del contatore */
  }


  /* stile numeri */
  .evento-elenco-list li::before {
    content: counter(list-counter) ".";
    position: absolute;
    left: 1rem;
    top: 1rem;
    font-weight: bold;
    color: #333;
  }

  .evento-elenco-list h3 {
    font-size: 1.2rem;
    margin: 0 0 .5rem 0;
  }

  .evento-elenco-list p {
    margin: 0;
    font-size: 1rem;
    line-height: 1.5;
    color: #444;
  }

  .evento-elenco-list {
list-style: none; /* tolgo i numeri di default */
margin: 0;
padding: 0;
display: grid;
grid-template-columns: 1fr 1fr;
gap: 2rem;
counter-reset: list-counter;
}

.evento-elenco-list li {
position: relative;
padding: 1rem 4rem;
counter-increment: list-counter;
}

/* numeri personalizzati */
.evento-elenco-list li::before {
content: counter(list-counter);
position: absolute;
left: 1rem;
top: 1rem;
background: #151616;
color: #fff;
font-weight: bold;
width: 1.8rem;
height: 1.8rem;
line-height: 1.8rem;
text-align: center;
border-radius: 50%; /* cerchio */
}


  /* Responsive: 1 colonna su mobile */
  @media (max-width: 768px) {
    .evento-elenco-list {
      grid-template-columns: 1fr;
    }
  }





  .evento-content {
    display: flex;
    flex-wrap: wrap;          /* su schermi piccoli va a capo */
    gap: 0rem;                /* spazio tra i box */
    align-items: flex-end;
    padding: 2rem 5rem;
  }
  h1.evento-title {
      font-size: 2.7rem;
  }
  .box_title,
  .box_description {
    flex: 1 1 50%;     /* ogni box prende metà spazio */
    box-sizing: border-box;
  }

  @media (max-width: 768px) {
    .box_title,
    .box_description {
      flex: 1 1 100%; /* su mobile vanno uno sotto l’altro */
    }
  }
    .evento-elenco-content {
      margin: 3rem;
    }

    .evento-elenco-content h2 {
      font-size: 1.8rem;
      margin-bottom: 1.5rem;
    }

    .evento-elenco-box {
      padding: 1rem 0;
    }

    .evento-elenco-list {
      list-style: decimal inside;   /* numerazione interna */
      margin: 0;
      padding: 0;
      display: grid;
      grid-template-columns: 1fr 1fr; /* 2 colonne */
      gap: 2rem;
      counter-reset: list-counter;  /* reset del contatore */
    }


    /* stile numeri */
    .evento-elenco-list li::before {
      content: counter(list-counter) ".";
      position: absolute;
      left: 1rem;
      top: 1rem;
      font-weight: bold;
      color: #333;
    }

    .evento-elenco-list h3 {
      font-size: 1.2rem;
      margin: 0 0 .5rem 0;
    }

    .evento-elenco-list p {
      margin: 0;
      font-size: 1rem;
      line-height: 1.5;
      color: #444;
    }

    .evento-elenco-list {
  list-style: none; /* tolgo i numeri di default */
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  counter-reset: list-counter;
}

.evento-elenco-list li {
  position: relative;
  padding: 1rem 4rem;
  counter-increment: list-counter;
}

/* numeri personalizzati */
.evento-elenco-list li::before {
  content: counter(list-counter);
  position: absolute;
  left: 1rem;
  top: 1rem;
  background: #151616;
  color: #fff;
  font-weight: bold;
  width: 1.8rem;
  height: 1.8rem;
  line-height: 1.8rem;
  text-align: center;
  border-radius: 50%; /* cerchio */
}


.store-experience-section {
  display: flex;
  flex-direction: row;   /* immagine a sinistra, testo a destra */
  width: 100%;
  height: 100vh;         /* ogni sezione a tutta altezza */
}

.store-experience-section .image-wrapper {
  flex: 1 1 50%;         /* 50% spazio */
  height: 100%;          /* occupa tutta l’altezza della sezione */
  overflow: hidden;
}

.store-experience-section .image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;     /* immagine ritagliata per riempire */
  display: block;
}

.store-experience-section .text-wrapper {
  flex: 1 1 50%;         /* l’altra metà per il testo */
  background-color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 3rem 2rem;
}


    /* Responsive: 1 colonna su mobile */
    @media (max-width: 768px) {
      .evento-elenco-list {
        grid-template-columns: 1fr;
      }
    }
