/** Shopify CDN: Minification failed

Line 48:9 Expected identifier but found whitespace
Line 48:11 Unexpected "{"
Line 48:20 Expected ":"
Line 48:47 Expected ":"
Line 55:9 Expected identifier but found whitespace
Line 55:11 Unexpected "{"
Line 55:20 Expected ":"
Line 55:47 Expected ":"

**/


/* CSS from section stylesheet tags */
.grid-container {
  max-width: 1410px;
  width: 100%;
  margin: auto;
  padding: 60px 0;
}

.image-gallery {
  width: 100%;
  overflow: hidden;
  padding: 1rem 0;
}

.image-gallery__wrapper {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-column-gap: 10px;
  grid-row-gap: 30px;
}

.image-gallery__item {
  border-radius: 16px;
  overflow: hidden;
  background: #f5f5f5;
  min-width: 250px;
  max-width: 400px;
  scroll-snap-align: start;
}

.image-gallery__img {
  display: block;
  width: 100%;
  height: {{ section.settings.image_height }}px;
  object-fit: cover;
  border-radius: 16px;
}

.image-gallery__placeholder {
  width: 100%;
  height: {{ section.settings.image_height }}px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #eaeaea;
  color: #666;
  font-size: 14px;
}

/* ✅ Mobile: enable horizontal scroll */
@media (max-width: 768px) {
  .image-gallery__wrapper {
    display: flex;
    gap: 1rem;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 10px;
  }

  .image-gallery__item {
    flex: 0 0 80%;
    min-width: 250px;
  }

    .grid-container {
        padding: 30px 20px;
    }
}
.video-banner {
        position: relative;
        width: 100%;
        overflow: hidden;
        background: #000;
    }

  .video-banner__wrapper {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .video-banner__iframe,
  .video-banner__video {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    transform: translate(-50%, -50%);
    object-fit: cover;
    border: 0;
  }

    .video-banner__content {
        position: relative;
        z-index: 2;
        text-align: center;
        color: #fff;
        padding: 4rem 1rem 2rem 1rem;
    }

.video-banner__heading {
    font-size: 46px;
    font-weight: 700;
    margin: 0;
    line-height: 56px;
    color: #fff;
}

  .video-banner::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.35); 
    z-index: 1;
  }

  @media(max-width:768px){

    .video-banner__wrapper {
        height: 50vh;
    }

    .video-banner__content {
        padding: 4rem 1rem 0rem 1rem;
    }
    
  }
.faq-section {
    width: 100%;
    padding: 60px 20px;
    background: #f8f8f8;
}

.faq-container {
    max-width: 1410px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    grid-column-gap: 50px;
    align-items: start;
    background: #fff;
    padding: 60px;
    border-radius: 30px;
}

.faq-image img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 20px;
}

.faq-placeholder {
  width: 100%;
  height: 300px;
  background: #f0f0f0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #666;
  border-radius: 20px;
}

.faq-heading {
    font-size: 46px;
    font-weight: 800;
    margin-bottom: 20px;
    text-transform: uppercase;
    line-height: 56px;
    margin-top: 0;
}

.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.faq-item {
  border: 1px solid #eee;
  border-radius: 10px;
  overflow: hidden;
  background: #fff;
}

.faq-question {
  width: 100%;
  padding: 15px 20px;
  text-align: left;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: transparent;
  border: none;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
}

.faq-icon {
  font-size: 20px;
  color: #fec300;
  font-weight: 700;
}

.faq-item.active button {
    outline: unset !important;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 20px;
  transition: all 0.3s ease;
  color: #333;
  line-height: 1.5;
}

.faq-item.active .faq-answer {
  max-height: 300px;
  padding: 15px 20px 20px;
}

@media (max-width: 768px) {
    
  .faq-container {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .faq-heading {
    font-size: 22px;
    text-align: center;
  }

  .faq-container {
        padding: 20px;
  }

    .faq-section {
        width: 100%;
        padding: 30px 0px;
        background: #f8f8f8;
    }

}