/** Shopify CDN: Minification failed

Line 43:2 Unexpected "{"
Line 43:3 Expected identifier but found "%"
Line 43:21 Expected ":"
Line 43:84 Unterminated string token
Line 48:0 Unexpected "{"
Line 48:1 Expected identifier but found "%"
Line 48:71 Expected identifier but found "%"

**/
/* SHOPIFY_STYLESHEETS_VERSION: 1.0 */


/* CSS from snippet stylesheet tags */
/* START_SNIPPET:product_tags (INDEX:188) */
.product-tags {
  display: flex !important;
  flex-direction: row !important;
  flex-wrap: wrap !important;
  gap: 8px;
  align-items: center;
}

/* Override theme forcing width 100% */
.product-tags > * {
  width: auto !important;
  max-width: fit-content !important;
}

.product-tag {
  display: inline-flex !important;
  width: auto !important;
  font-size: 16px;
  padding: 4px 10px;
  border-radius: 20px;
  border: 1px solid rgb(var(--color-foreground-rgb) / 0.2);
  text-decoration: none;
  background-color: #451b16;
  color: #fff;
  white-space: nowrap;
  transition: all 0.2s ease;
  {% comment %} Added cursor default to indicate it's not clickable {% endcomment %}
  cursor: default;
  
}

{% comment %} Remove hover effect or keep it for visual feedback only {% endcomment %}
/* END_SNIPPET:product_tags */