/** Shopify CDN: Minification failed

Line 29:10 Expected identifier but found whitespace
Line 29:12 Unexpected "{"
Line 29:21 Expected ":"

**/
.app-gallery-section {
    padding: 60px 20px;
    background: #fff;
    text-align: center;
  }

  .app-gallery-subtitle {
    font-size: 14px;
    color: #666;
    margin-bottom: 10px;
    letter-spacing: 0.5px;
  }

  .app-gallery-title {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 40px;
    color: #000;
  }

  .app-gallery-title .highlight {
    color: {{ section.settings.highlight_color }};
  }

  .app-gallery-container {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    overflow: hidden;
  }

  .app-gallery-track {
    display: flex;
    gap: 20px;
    transition: transform 0.4s ease;
  }

  .app-gallery-item {
    flex: 0 0 calc(25% - 15px);
    min-width: calc(25% - 15px);
    aspect-ratio: 4/3;
    border-radius: 12px;
    overflow: hidden;
    background: #f5f5f5;
  }

  .app-gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }

  .app-gallery-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255,255,255,0.92);
    border: none;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 10px rgba(0,0,0,0.15);
    z-index: 10;
    transition: background 0.2s;
  }

  .app-gallery-nav:hover {
    background: #fff;
    box-shadow: 0 4px 16px rgba(0,0,0,0.2);
  }

  .app-gallery-nav.prev { left: -22px; }
  .app-gallery-nav.next { right: -22px; }

  .app-gallery-nav.disabled {
    opacity: 0.3;
    cursor: default;
  }

  @media (max-width: 1024px) {
    .app-gallery-item {
      flex: 0 0 calc(33.333% - 14px);
      min-width: calc(33.333% - 14px);
    }
  }

  @media (max-width: 768px) {
    .app-gallery-item {
      flex: 0 0 calc(50% - 10px);
      min-width: calc(50% - 10px);
    }
    .app-gallery-title { font-size: 26px; }
  }

  @media (max-width: 480px) {
    .app-gallery-item {
      flex: 0 0 100%;
      min-width: 100%;
    }
  }