/** Shopify CDN: Minification failed

Line 22:21 Expected identifier but found whitespace
Line 22:23 Unexpected "{"
Line 22:32 Expected ":"
Line 23:12 Expected identifier but found whitespace
Line 23:14 Unexpected "{"
Line 23:23 Expected ":"
Line 23:58 Unexpected "20px"
Line 23:64 Unexpected "{"
Line 23:73 Expected ":"
Line 23:110 Expected ":"
... and 18 more hidden warnings

**/
/* SHOPIFY_STYLESHEETS_VERSION: 1.0 */


/* CSS from section stylesheet tags */
/* START_SECTION:summer-styles (INDEX:57) */
.summer-styles {
    background-color: {{ section.settings.bg_color }};
    padding: {{ section.settings.section_padding_top }}px 20px {{ section.settings.section_padding_bottom }}px;
  }

  .summer-styles__container {
    max-width: {% if section.settings.container_width == "full" %}100%{% else %}{{ section.settings.container_width }}px{% endif %};
    margin: 0 auto;
  }

  .summer-styles__heading {
    text-align: center;
    color: {{ section.settings.heading_color }};
    margin: 0 0 40px;
  }

  .summer-styles__scroll-wrapper {
    position: relative;
  }

  .summer-styles__grid {
    display: flex;
    flex-wrap: nowrap;
    gap: 16px;
    justify-content: center;
    align-items: stretch;
  }

  .summer-styles__card {
    display: block;
    text-decoration: none;
    flex: 1 1 0;
    min-width: 0;
    max-width: 260px;
    transition: transform 0.3s ease;
  }

  .summer-styles__card:hover {
    transform: translateY(-6px);
  }

  .summer-styles__image-wrap {
    position: relative;
    width: 100%;
    padding-bottom: 150%;
    border-radius: 9999px 9999px 0 0;
    overflow: hidden;
    border: 2.5px solid {{ section.settings.border_color }};
    background: #ede8df;
  }

  .summer-styles__img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    display: block;
    transition: transform 0.4s ease;
  }

  .summer-styles__card:hover .summer-styles__img {
    transform: scale(1.04);
  }

  .summer-styles__img--placeholder {
    object-fit: contain;
    padding: 20px;
    opacity: 0.3;
  }

  .summer-styles__label {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.42);
    color: #ffffff;
    text-align: center;
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    padding: 11px 6px 13px;
  }

  /* Arrow buttons - hidden on desktop */
  .summer-styles__arrow {
    display: none;
  }

  /* Mobile - horizontal scroll */
  @media (max-width: 768px) {
    .summer-styles {
      padding-left: 0;
      padding-right: 0;
    }

    .summer-styles__heading {
      padding: 0 16px;
    }

    .summer-styles__grid {
      flex-wrap: nowrap;
      overflow-x: auto;
      overflow-y: visible;
      justify-content: flex-start;
      gap: 12px;
      padding: 0 16px 16px;
      -webkit-overflow-scrolling: touch;
      scrollbar-width: none;
      -ms-overflow-style: none;
    }

    .summer-styles__grid::-webkit-scrollbar {
      display: none;
    }

    .summer-styles__card {
      flex: 0 0 140px;
      max-width: 140px;
    }

    /* Arrow buttons */
    .summer-styles__arrow {
      display: none; /* JS will show/hide based on scroll position */
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      z-index: 10;
      width: 36px;
      height: 36px;
      border-radius: 50%;
      border: none;
      background: {{ section.settings.border_color }};
      color: #fff;
      font-size: 1.4rem;
      line-height: 1;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      box-shadow: 0 2px 8px rgba(0,0,0,0.18);
      padding: 0;
    }

    .summer-styles__arrow--prev {
      left: 4px;
    }

    .summer-styles__arrow--next {
      right: 4px;
    }
  }
/* END_SECTION:summer-styles */