/** Shopify CDN: Minification failed

Line 35:0 Expected "}" to go with "{"

**/
/* Frame Options Container Styling */
.product-variant-picker__shape-swatches {
  display: grid;
  grid-template-columns: repeat(4, 1fr); /* 4 swatches per row on desktop */

}

/* Adjust grid for smaller screens */
@media (max-width: 1024px) {
  .product-variant-picker__shape-swatches {
    grid-template-columns: repeat(4, 1fr); /* 4 swatches per row on tablets */
  }
}

@media (max-width: 768px) {
  .product-variant-picker__shape-swatches {
    grid-template-columns: repeat(4, 1fr); /* 4 swatches per row on mobile */
  }
}

  .product-variant-picker__pill-list {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
  }

@media (max-width: 480px) {
  .product-variant-picker__shape-swatches {
    grid-template-columns: repeat(4, 1fr); /* 1 swatch per row on very small mobile */
  }
