<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/** Shopify CDN: Minification failed

Line 9:29 Expected ")" to end URL token

**/
  .full-image {
    height: calc(75vh);
    overflow: hidden;
    background-image: url({{ section.settings.desktop_image | image_url }});
    background-position: center;
    background-repeat: no-repeat;
    background-size: 100%;
    max-width: 96%; /* Margine laterale */
    margin: 0 auto; /* Centra l'immagine */
  }

  .full-image-mob {
    background-image: none;
    height: auto;
    max-width: 96%; /* Margine laterale per mobile */
    margin: 0 auto;
  }

  .full-image__img, .full-image__img-mob {
    width: 100%;
    height: auto;
    display: none !important;
  }

  .btn-primary {
    display: flex;
    justify-content: center;
    margin-bottom: 40px;
  }

  @media only screen and (max-width: 1024px) {
    .full-image {
      background-image: none;
      height: auto;
      max-width: 95%; /* Margine laterale */
      margin: 0 auto; /* Centra l'immagine */
      padding-left: 1%;
      padding-right: 1%;
    }

    .full-image__img {
      display: none !important;
    }

    .full-image-mob {
      background-image: none;
      height: auto;
      max-width: 92%; /* Margine laterale per mobile */
      margin: 0 auto;
    }

    .full-image__img-mob {
      display: block !important;
    }
    .btn-primary {
      margin-top: 30px; /* Distanza tra immagine e CTA su mobile */
      max-width: 80%; /* La CTA non sarÃ&nbsp; full-screen */
    }
  }</pre></body></html>