/** Shopify CDN: Minification failed

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

**/
.collection-buttons-wrapper {
  width: 100%;
  padding: 20px 0;
}

.collection-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: var(--spacing, 12px);
  justify-content: center;
  align-items: center;
}

.collection-button {
  display: inline-block;
  padding: var(--padding, 16px);
  border: 1px solid var(--border-color, #000);
  color: var(--text-color, #000);
  background-color: var(--bg-color, transparent);
  text-decoration: none;
  text-align: center;
  transition: background-color 0.2s ease;
  flex: 0 1 auto;
  white-space: nowrap;
}

.collection-button:hover {
  background-color: var(--hover-bg-color, #f5f5f5);
  color: var(--text-color, #000);
}

@media screen and (max-width: 749px) {
  .collection-buttons-wrapper {
    padding-left: 20px;
    padding-right: 20px;
  }
  /* Responsive adjustments */
@media screen and (max-width: 749px) {
  .collection-buttons {
    justify-content: center;
  }
  
  /* Default: all buttons flex to fit in one row */
  .collection-button {
    flex: 1 1 auto;
    min-width: 0;
  }
  
  /* When there are exactly 4 buttons, make them 2 per row */
  .collection-buttons:has(.collection-button:nth-child(4):last-child) .collection-button {
    flex: 0 1 calc(50% - (var(--spacing, 12px) / 2));
    max-width: calc(50% - (var(--spacing, 12px) / 2));
  }
}
