/** Shopify CDN: Minification failed

Line 62:31 Expected identifier but found "/"
Line 146:0 Expected "}" to go with "{"

**/
.is-hidden {
  display: none !important;
}
  
  @media (min-width: 1025px) {
.custom-hero-banner {
  position: relative;
  width: 100%;
  height: auto;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 0;
  overflow: hidden;

  min-height: 595px; 
  aspect-ratio: 16/9;
}
  }
  @media (max-width: 1024px) {
  .custom-hero-banner {
  position: relative;
  width: 100%;
  height: auto;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 0;
  overflow: hidden;
}
  }
/* Wrapper per l'immagine con gradient */
.custom-hero-banner__image-wrapper {
  position: relative;
  width: 100%;
  margin-bottom:-1rem;
}

.custom-hero-banner__image-wrapper::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 30%, rgba(0, 0, 0, 0.7) 100%);
  z-index: 1;
}

.custom-hero-banner__image {
width: 100%;
  height: 100%;
  object-fit: contain; /* Mostra l'intera immagine senza ritagliarla */
  object-position: center top; /
  position: relative;
  z-index: 0;
}

/* 🔹 Nasconde l'immagine mobile su desktop */
.custom-hero-banner__image.mobile {
  display: none;
}

/* 🔹 Nasconde l'immagine desktop su mobile */
@media (max-width: 768px) {
  .custom-hero-banner__image.desktop {
    display: none;
  }
  .custom-hero-banner__image.mobile {
    display: block;
  }
}

/* 🔹 Testo sopra l'immagine */
.custom-hero-banner__content {
  position: absolute;
  z-index: 2;
  padding: 0 1rem;
  width: 100%;
  color: white;
  text-align: center;
  bottom: 15%;
}

.custom-hero-banner__title {
  font-size: 1.5rem;
  color: white;
  margin-bottom: 1rem;
}

.custom-hero-banner__subtitle {
  font-size: 1.2rem;
  margin-bottom: 10px;
  color: white;
}

/* 🔹 Contenitore per i due bottoni */
.custom-hero-banner__buttons {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-top: 15px;
}

/* 🔹 Stile dei bottoni */
@media (max-width: 1024px) {
  .custom-hero-banner__title {
    font-size: 1.5rem;
  }
  .custom-hero-banner__subtitle {
    font-size: 1.2rem;
  }
}

@media (max-width: 768px) {
  .custom-hero-banner__buttons {
    flex-direction: initial;
    gap: 10px;
  }
}

@media (max-width: 480px) {
  .custom-hero-banner__title {
    font-size: 1.5rem;
    margin-bottom: -0.8rem;
  }
  .custom-hero-banner__subtitle {
    font-size: 1.2rem;
  }
}
@media (min-width: 750px) {
.custom-hero-banner {
  min-height: 0px !important; aspect-ratio: unset !important; 
}
  .custom-hero-banner__buttons.hidden + .custom-hero-banner__subtitle {
  margin-bottom: 0px !important;
}
