/** Shopify CDN: Minification failed

Line 19:16 Expected identifier but found whitespace
Line 19:18 Unexpected "{"
Line 19:27 Expected ":"
Line 19:53 Expected ":"
Line 20:19 Expected identifier but found whitespace
Line 20:21 Unexpected "{"
Line 20:30 Expected ":"
Line 20:59 Expected ":"

**/
/* SHOPIFY_STYLESHEETS_VERSION: 1.0 */


/* CSS from section stylesheet tags */
/* START_SECTION:logo-list (INDEX:24, SCOPED:FALSE) */
.shop-our-stores {
    padding-top: {{ section.settings.padding_top }}px;
    padding-bottom: {{ section.settings.padding_bottom }}px;
    background-color: #ffffff;
  }

  .page-width {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
  }

  .shop-our-stores__heading {
    text-align: left;
    font-size: 2rem;
    font-weight: 500;
    color: #1a1a1a;
    margin: 3rem 0 3rem 0;
    letter-spacing: 0.02em;
  }

  .shop-our-stores__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin: 0;
  }

  .shop-our-stores__card {
    display: block;
    text-decoration: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
  }

  .shop-our-stores__card:hover {
    transform: translateY(-4px);
  }

  .shop-our-stores__image-wrapper {
    position: relative;
    width: 100%;
    aspect-ratio: 3 / 4;
    overflow: hidden;
    border-radius: 12px;
    background-color: #f5f5f5;
    margin-bottom: 1rem;
  }

  .shop-our-stores__image {
    width: 100%;
  height: 100%;
  object-fit: cover;
    transition: transform 0.3s ease;
  }

  .shop-our-stores__card:hover .shop-our-stores__image {
    transform: scale(1.05);
  }

  .shop-our-stores__placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #f5f5f5;
  }

  .shop-our-stores__placeholder svg {
    width: 60%;
    height: 60%;
    opacity: 0.3;
  }

  .shop-our-stores__title {
    text-align: center;
    font-size: 1.125rem;
    font-weight: 500;
    color: #1a1a1a;
    margin: 0;
    letter-spacing: 0.02em;
    transition: color 0.3s ease;
  }

  .shop-our-stores__card:hover .shop-our-stores__title {
    color: #666;
  }

  /* Responsive Design */
  @media screen and (max-width: 749px) {
    .shop-our-stores__heading {
      font-size: 1.5rem;
      margin-bottom: 2rem;
    }

    .shop-our-stores__grid {
      grid-template-columns: repeat(3, 1fr);
      gap: 1rem;
    }

    .shop-our-stores__title {
      font-size: 1rem;
    }
  }

  @media screen and (min-width: 750px) and (max-width: 989px) {
    .shop-our-stores__grid {
      grid-template-columns: repeat(3, 1fr);
      gap: 1.5rem;
    }
  }

  @media screen and (min-width: 990px) {
    .shop-our-stores__grid {
      grid-template-columns: repeat(6, 1fr);
    }
  }

  /* Alternative: Horizontal scroll on mobile (optional) */
  @media screen and (max-width: 749px) {
    .shop-our-stores__grid.scroll-mobile {
      display: flex;
      overflow-x: auto;
      gap: 1rem;
      scroll-snap-type: x mandatory;
      -webkit-overflow-scrolling: touch;
      padding-bottom: 1rem;
    }

    .shop-our-stores__grid.scroll-mobile .shop-our-stores__card {
      flex: 0 0 70%;
      scroll-snap-align: start;
    }
  }
/* END_SECTION:logo-list */