/** Shopify CDN: Minification failed

Line 196:0 Unexpected "}"

**/
/* Default Layout: Desktop */
.itb-section {
  width: 100%;
  max-width: 100%;
}

.itb-container {
  width: 100%;
  height: 100%;
  position: relative;
}

.itb-background-image {
  width: 100%;
  height: 100%;
  min-height: 450px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.itb-no-image {
  background-color: rgba(var(--color-foreground), 0.1);
}

.itb-content {
  text-align: center;
  z-index: 2;
  width: 100%;
  padding: 2rem;
}

.itb-heading {
  margin-bottom: 2rem;
  color: rgb(var(--color-foreground));
}

.itb-buttons-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  max-width: 90%;
  margin: 0 auto;
  padding-bottom: 4rem;
}

.itb-button {
  flex: 0 1 auto;
  padding: 2rem;
  border-radius: 30px;
  /* font-size: 2rem; */
  position: relative;
  overflow: hidden; /* Prevents image overflow */
  flex-direction: column-reverse;
  gap:1rem;
}

.itb_button img {
  width: 100%;
  height: 100%;
  vertical-align: middle;
}
.itb-buttons-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 15px;
}

.itb-button .button-image {
      display: block;
      width: 200px;
      height: 200px;
      object-fit: contain;
    }

/* Desktop (>= 990px) - 5 buttons per row */
@media screen and (min-width: 990px) {
  .itb-buttons-container {
    max-width: 90%;
  }

  .itb-button {
    /* font-size: 2.4rem; */
      max-width: fit-content;
  }

  /* Image hover behavior */
  .itb-button .button-image {
    display: none;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: opacity 0.5s ease;
  }
  .itb-button:hover .itb-btn-label {
    opacity: 0;
  }


  .itb-button:hover .button-image {
    display: block;
  }
}

/* Mobile (<= 768px) - Image on top, text below, remove hover */
@media screen and (max-width: 768px) {
  .itb-container {
    height: 100%;
    min-height: 60vh;
  }

  .itb-buttons-container {
    max-width: 100%;
  }

  /* Stack image on top, text on bottom */
  .itb-button {
    display: flex;
    flex-direction: column-reverse;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 1.5rem;
    text-align: center;
    border-radius: 15px;
    gap:1rem;
  }

  /* Ensure image appears first, followed by text */
  .itb-button .button-image {
      display: block;
      width: 170px;
      height: 150px;
      object-fit: contain;
    }

  /* Text (button label) below the image */
  .itb-button .button-label {
    order: 1; /* Text comes below image */
    margin-top: 1rem; /* Adds space between image and text */
  }

 
  .itb-image {
    max-width: 120px;
  }

 
  .itb-button:hover .button-label {
    opacity: 1;
  }

  .itb-button:hover .button-image {
    display: block;
  }
}


@media screen and (max-width: 480px) {
  .itb-button {
      padding: 1rem;
      max-width: 45%;
      display: flex;
      flex-direction: column-reverse;
      gap: 1rem;
    }
  }

  .itb-content {
    padding: 1rem;
  }

  .itb-image {
    max-width: 100px;
  }
  
  /* .itb-button img {
    width: 100%;
    height: auto;
  } */
}
