/** Shopify CDN: Minification failed

Line 14:0 Unexpected "<"
Line 25:12 Expected identifier but found whitespace
Line 25:14 Unexpected "{"
Line 25:23 Expected ":"
Line 25:63 Expected ":"
Line 80:0 Unexpected "<"

**/


/* CSS from section stylesheet tags */
<style>
.sizing-guide-section {
  width: 100%;
}

.sizing-guide-wrapper {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 30px;
  max-width: {{ section.settings.max_width | default: 1200 }}px;
  margin: 0 auto;
  padding: 40px 20px;
  box-sizing: border-box;
}

.sizing-guide-button {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px 90px;
  border: 1px solid black;
  background: transparent;
  cursor: pointer;
  transition: 0.3s;
  text-decoration: none;
  color: black;
  font-weight: 500;
  border-radius: 0;
  text-align: center;
  gap: 12px;
  width: 100%;
  max-width: 300px;
  height: 60px; /* Ensures consistent height */
  white-space: nowrap; /* Force one line */
  overflow: hidden;
  text-overflow: ellipsis;
}

.sizing-guide-button:first-child {
  border-top-left-radius: 12px;
}

.sizing-guide-button:last-child {
  border-bottom-right-radius: 12px;
}

.sizing-guide-button:hover,
.sizing-guide-button.active {
  background: black;
  color: white;
}

.sizing-guide-button img {
  width: 32px;
  height: 32px;
  object-fit: contain;
  flex-shrink: 0;
}
  .sizing-guide-button:hover,
.sizing-guide-button.active {
  background: black;
  color: white;
}

</style>