/** Shopify CDN: Minification failed

Line 40:17 Expected identifier but found whitespace
Line 40:19 Unexpected "{"
Line 40:28 Expected ":"
Line 40:52 Expected ":"
Line 148:19 Expected identifier but found whitespace
Line 148:21 Unexpected "{"
Line 148:30 Expected ":"
Line 148:54 Expected ":"

**/
 .custom-gallery-section {
    position: relative;
    overflow: hidden;
    width: 100%;
    background-color: #000;
    padding-bottom: 50px;
  }

  .gallery-wrapper {
    position: relative;
  }

  .gallery-slider {
    display: flex;
    transition: transform 0.4s ease;
    gap: 0;
    scroll-behavior: smooth;
    overflow-x: auto;
    scrollbar-width: none;
  }

  .gallery-slider::-webkit-scrollbar {
    display: none;
  }

  .gallery-item {
    flex: 0 0 auto;
    margin-right: {{ section.settings.image_gap }}px;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .gallery-item:last-child {
    margin-right: 0; 
  }

  .gallery-image-wrapper {
    width: 450px;
    height: 650px;
    position: relative;
    overflow: hidden;
    transition: transform 0.5s ease;
  }

  .gallery-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }

  .gallery-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    pointer-events: none;
    padding-bottom: 25px;
  }


  .bottom-cloud {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 200px;
    background: linear-gradient(
      to top,
      rgba(22, 252, 3, 0.9) 0%,
      rgba(0, 255, 213, 0.7) 35%,
      transparent 80%
    );
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.6s ease;
    z-index: 1;
    filter: blur(25px);
  }

  .gallery-image-wrapper:hover .bottom-cloud {
    opacity: 1;
    transform: translateY(0);
  }

  .overlay-text {
    position: relative;
    text-align: center;
    color: #fff;
    z-index: 2;
    transition: all 0.5s ease;
  }

  .gallery-text {
    font-size: 48px;
    font-weight: 400;
    text-transform: uppercase;
    margin: 0;
    transition: color 0.3s ease;
    text-shadow: 0 2px 10px rgba(0,0,0,0.6);
  }

  .gallery-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: #fff;
    color: #000;
    border: none;
    font-size: 2rem;
    cursor: pointer;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.4);
    transition: all 0.3s ease;
    z-index: 10;
  }

  .gallery-arrow:hover {
    background: linear-gradient(135deg, #16fc03, #00ffd5);
    transform: scale(1.15);
  }

  .gallery-prev { left: 10px; }
  .gallery-next { right: 10px; }

  @media (max-width: 768px) {
    .gallery-item {
      flex: 0 0;
      margin-right: {{ section.settings.image_gap }}px;
    }
    .gallery-image-wrapper {
      width: 450px;
      height: 450px !important;
    }

    .gallery-text {
    text-align: center;
    }

    .gallery-overlay {
    margin-left:-55px;
    }
  }