/** Shopify CDN: Minification failed

Line 249:2 Unexpected "}"

**/
  /* Collection Center-Mode Slider Styles */
  .list-collections-page {
    position: relative;
    overflow: visible;
    min-height: 100vh;
    height: 100vh;
  }

  .collection-slider-wrapper {
    position: relative;
    width: 100%;
    padding: 0;
    margin: 0;
    height: 100vh;
    overflow: visible;
    display: flex;
    flex-direction: column;
  }

  .collection-slider-header {
    padding: 120px 2rem 2rem;
    flex-shrink: 0;
  }

  @media (max-width: 767px) {
    .collection-slider-header {
      padding: 100px 1rem 1rem;
    }
  }

  .collection-slider-title {
    font-size: 2.25rem;
    font-weight: 900;
    text-transform: uppercase;
    color: white;
    margin: 0;
  }

  @media (min-width: 768px) {
    .collection-slider-title {
      font-size: 3rem;
    }
  }

  @media (min-width: 1024px) {
    .collection-slider-title {
      font-size: 3.75rem;
    }
  }

  .collection-slider-controls {
    display: none;
  }

  .collection-slider-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 20;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
  }

  .collection-slider-btn-left {
    left: 20px;
  }

  .collection-slider-btn-right {
    right: 20px;
  }

  .collection-slider-btn:hover:not(:disabled) {
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.1);
  }

  .collection-slider-btn:disabled {
    opacity: 0.3;
    cursor: not-allowed;
  }

  .collection-slider-container {
    overflow: visible;
    position: relative;
    width: 100%;
    max-width: 100%;
    flex: 1;
    min-height: 0;
  }

  .collection-slider-track {
    display: flex;
    gap: 1.25rem;
    transition: transform 0.55s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    will-change: transform;
    align-items: center;
    height: 100%;
  }

  .collection-slider-card {
    flex: 0 0 auto;
    transition: all 0.55s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    cursor: pointer;
  }

  .product-card-link {
    display: block;
    width: 100%;
    text-decoration: none;
    color: inherit;
  }

  .collection-card-link {
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 100%;
    text-decoration: none;
    color: inherit;
  }

  /* Tablet: 2 cards visible */
  @media (min-width: 768px) and (max-width: 1024px) {
    .collection-slider-container {
      padding: 0;
      margin: 0;
    }

    .collection-slider-card {
      width: calc((100% - 20px) / 2);
      min-width: calc((100% - 20px) / 2);
      max-width: calc((100% - 20px) / 2);
      display: flex;
      flex-direction: column;
      height: 100%;
    }

    .collection-slider-card.active {
      width: calc((100% - 20px) / 2);
      min-width: calc((100% - 20px) / 2);
      max-width: calc((100% - 20px) / 2);
    }

    .collection-slider-btn {
      width: 45px;
      height: 45px;
    }
  }

  /* Desktop: 3 cards visible */
  @media (min-width: 1025px) {
    .collection-slider-container {
      padding: 0;
      margin: 0;
    }

    .collection-slider-card {
      width: calc((100% - 40px) / 3);
      min-width: calc((100% - 40px) / 3);
      max-width: calc((100% - 40px) / 3);
      display: flex;
      flex-direction: column;
      height: 100%;
    }

    .collection-slider-card.active {
      width: calc((100% - 40px) / 3);
      min-width: calc((100% - 40px) / 3);
      max-width: calc((100% - 40px) / 3);
    }
  }

    .collection-slider-track {
      align-items: center;
    }

    .collection-slider-card:not(.active) {
      opacity: 1;
    }

  .collection-card-image {
    width: 100%;
    height: 100%;
    overflow: visible;
    position: relative;
    transition: all 0.55s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: transparent;
    border-radius: 25px;
  }

  .collection-slider-card.active .collection-card-image {
    transform: scale(1);
  }

    .collection-product-image {
      width: 100%;
      height: 100%;
      object-fit: contain;
      object-position: center;
    }

    .collection-card-content {
      padding: 1rem 0;
      opacity: 0;
      transform: translateY(10px);
      transition: all 0.55s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    }

    .collection-slider-card.active .collection-card-content {
      opacity: 1;
      transform: translateY(0);
    }

    .collection-card-title {
      font-size: 1.125rem;
      font-weight: bold;
      color: white;
      margin-bottom: 0.5rem;
    }

    .collection-card-vendor {
      font-size: 0.875rem;
      color: #9ca3af;
      margin-bottom: 0.5rem;
    }

    .collection-card-price {
      font-size: 0.875rem;
      color: white;
      font-weight: 600;
    }
  }

  /* Mobile: Slider */
  @media (max-width: 767px) {
    .list-collections-page {
      overflow: hidden;
    }

    .collection-slider-container {
      overflow: hidden;
      touch-action: pan-x pan-y;
    }

    .collection-slider-controls {
      display: none;
    }

    .collection-slider-btn {
      width: 40px;
      height: 40px;
      font-size: 0.875rem;
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
    }

    .collection-slider-btn-left {
      left: 10px;
    }

    .collection-slider-btn-right {
      right: 10px;
    }

    .collection-slider-track {
      display: flex;
      gap: 1rem;
      align-items: center;
      height: 100%;
    }

    .collection-slider-card {
      width: calc(100vw - 40px);
      min-width: calc(100vw - 40px);
      max-width: calc(100vw - 40px);
      flex-shrink: 0;
      height: 100%;
      display: flex;
      flex-direction: column;
    }

    .collection-slider-card.active {
      width: calc(100vw - 40px);
      min-width: calc(100vw - 40px);
      max-width: calc(100vw - 40px);
    }

    .collection-card-image {
      width: 100%;
      height: 100%;
      overflow: visible;
      position: relative;
      display: flex;
      align-items: center;
      justify-content: center;
      background-color: transparent;
      border-radius: 25px;
    }

    .collection-product-image {
      width: 100%;
      height: 100%;
      object-fit: contain;
      object-position: center;
    }

    .collection-card-content {
      padding: 0.75rem 0;
      opacity: 1;
    }

    .collection-card-title {
      font-size: 0.875rem;
      font-weight: bold;
      color: white;
      margin-bottom: 0.25rem;
      text-align: center;
    }

    .collection-slider-dots {
      display: flex;
      position: absolute;
      bottom: 10px;
      left: 50%;
      transform: translateX(-50%);
      z-index: 20;
    }
  }

/* Dots Navigation */
.collection-slider-dots {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 30px;
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 20;
}

  .collection-slider-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
  }

  .collection-slider-dot.active {
    background: #FC0030;
    width: 30px;
    border-radius: 5px;
  }

  @media (max-width: 767px) {
    .collection-slider-dots {
      display: none;
    }
  }

