/** Shopify CDN: Minification failed

Line 23:12 Unexpected "{"
Line 23:21 Expected ":"
Line 24:16 Expected identifier but found whitespace
Line 24:18 Unexpected "{"
Line 24:27 Expected ":"
Line 24:53 Expected ":"
Line 25:19 Expected identifier but found whitespace
Line 25:21 Unexpected "{"
Line 25:30 Expected ":"
Line 25:59 Expected ":"

**/


/* CSS from section stylesheet tags */
.product-highlights {
    margin-top: 3rem;
    margin-bottom: 3rem;
  }

  .section-{{ section.id }}-padding {
    padding-top: {{ section.settings.padding_top }}px;
    padding-bottom: {{ section.settings.padding_bottom }}px;
  }

  .title-wrapper-with-link {
    margin-bottom: 3rem;
  }

  /* Hide desktop on mobile */
  .product-highlights__desktop {
    display: none;
  }

  /* Show mobile by default */
  .product-highlights__mobile {
    display: block;
  }

  /* Desktop Layout - Show at 750px+ */
  @media screen and (min-width: 750px) {
    .product-highlights__desktop {
      display: block;
    }

    .product-highlights__mobile {
      display: none;
    }
  }

  /* Desktop - Images Row (Top) */
  .product-highlights__images-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 2rem;
  }

  .product-highlights__image-item {
    width: 100%;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    background: #f5f5f5;
  }

  .product-highlights__image-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }

  /* Desktop - Listings Row (Bottom) */
  .product-highlights__listings-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
  }

  .product-highlights__listing-item {
    padding: 0;
  }

  /* Listing Content - Image on Left, Details on Right */
  .product-highlights__listing-content {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
  }

  .product-highlights__listing-image {
    flex-shrink: 0;
    width: 120px;
    height: 120px;
    overflow: hidden;
    background: #f5f5f5;
  }

  .product-highlights__listing-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }

  .product-highlights__listing-details {
    flex: 1;
  }

  .product-highlights__link {
    text-decoration: none;
    color: inherit;
  }

  /* 1. Product Name */
  .product-highlights__title {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 0.6rem;
    line-height: 1.3;
  }

  .product-highlights__link:hover .product-highlights__title {
    text-decoration: underline;
  }

  /* 2. Variants */
  .product-highlights__variants {
    margin-bottom: 0.5rem;
  }

  .product-highlights__color-swatches {
    display: flex;
    gap: 0.4rem;
    flex-wrap: wrap;
  }

  .product-highlights__color-swatch {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    border: 1px solid #ddd;
    display: inline-block;
    cursor: pointer;
    transition: transform 0.2s ease;
  }

  .product-highlights__color-swatch:hover {
    transform: scale(1.1);
    border-color: #000;
  }

  /* 3. Price */
  .product-highlights__price {
    font-size: 0.95rem;
  }

  .visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
  }

  .product-highlights__placeholder {
    color: #999;
    font-style: italic;
  }

  /* Mobile Layout */
  .product-highlights__mobile-item {
    margin-bottom: 3rem;
  }

  .product-highlights__mobile-item:last-child {
    margin-bottom: 0;
  }

  /* Mobile - Upload Image */
  .product-highlights__mobile-upload-image {
    width: 100%;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    background: #f5f5f5;
    margin-bottom: 1.5rem;
  }

  .product-highlights__mobile-upload-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }

  /* Mobile - Listing */
  .product-highlights__mobile-listing {
    padding: 0 1rem;
  }

  .placeholder-svg {
    width: 100%;
    height: 100%;
    background: #f3f3f3;
  }

  /* Responsive adjustments */
  @media screen and (min-width: 750px) and (max-width: 989px) {
    .product-highlights__listing-image {
      width: 100px;
      height: 100px;
    }

    .product-highlights__listing-content {
      gap: 1rem;
    }

    .product-highlights__title {
      font-size: 1.2rem;
    }
  }