/** Shopify CDN: Minification failed

Line 131:4 Unexpected "{"
Line 131:5 Expected identifier but found "%"
Line 131:38 Unexpected "{"
Line 131:39 Expected identifier but found "%"
Line 143:2 Unexpected "{"
Line 143:3 Expected identifier but found "%"
Line 143:45 Expected identifier but found "%"
Line 202:2 Unexpected "{"
Line 202:3 Expected identifier but found "%"
Line 208:4 Unexpected "{"
... and 1 more hidden warnings

**/
.sb {
    margin-top: 20px;
    border: 1px solid rgba(0,0,0,0.10);
    overflow: hidden;
    background: #ffffff;
  }

  .sb__header {
    /* display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 18px;
    border-bottom: 1px solid rgba(0,0,0,0.10);
    background: #f4f2ee; */
    padding: 14px 18px;
    border-bottom: 1px solid rgba(0,0,0,0.10);
  }

  .sb__heading {
    font-size: 12px;
    font-weight: 400;
    /* letter-spacing: 0.09em; */
    color: var(--color-foreground, #1a1a1a);
  }

  .sb__subheading {
    font-size: 13px;
    color: var(--color-foreground-secondary, #888);
    font-weight: 400;
  }

  .sb__list {
    display: flex;
    flex-direction: column;
  }

  .sb__row {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 14px 18px;
    border-bottom: 1px solid rgba(0,0,0,0.08);
    text-decoration: none;
    color: inherit;
    transition: background 0.15s ease;
    pointer-events: none; 
    cursor: default;
    text-decoration: none; 
    color: inherit;
  }

  .sb__row:last-child {
    border-bottom: none;
  }

  .sb__row:hover {
    background: rgba(0,0,0,0.03);
  }

  .sb__thumb {
    width: 62px;
    height: 62px;
    overflow: hidden;
    flex-shrink: 0;
    background-color: var(--color-background-2, #e8e4dd);
    border: 1px solid rgba(0,0,0,0.07);
  }

  .sb__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }

  .sb__placeholder {
    width: 100%;
    height: 100%;
    display: block;
    padding: 10px;
    box-sizing: border-box;
    opacity: 0.25;
  }

  .sb__info {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 3px;
    min-width: 0;
  }

  .sb__name {
    font-size: 15px;
    font-weight: 500;
    color: var(--color-foreground, #1a1a1a);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    letter-spacing: -0.01em;
  }

  .sb__specs {
    font-size: 12.5px;
    color: var(--color-foreground-secondary, #888);
    font-weight: 400;
  }

  .sb__badge {
    flex-shrink: 0;
    font-size: 10.5px;
    font-weight: 600;
    letter-spacing: 0.07em;
    text-transform: uppercase;
    padding: 5px 10px;
    {% comment %} border-radius: 4px; {% endcomment %}
    border: 1px solid rgba(0,0,0,0.15);
    background: transparent;
    color: var(--color-foreground, #444);
  }

  .sb__badge--new {
    border-color: #3a7d44;
    color: #3a7d44;
    background: transparent;
  }

  {% comment %} mobile styles for accordion {% endcomment %}
   /* ---- MOBILE ONLY: accordion behaviour ---- */
@media (max-width: 749px) {

  .sb__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 11px 4px;
    cursor: pointer;
    user-select: none;
    -webkit-user-select: none;
  }
  .sb__heading {
    font-size: 10px;
    white-space: nowrap;
  }
  .sb__header-left {
    display: flex;
    align-items: center;
    gap: 10px;
  }

  .sb__preview-swatches {
    display: flex;
    gap: 3px;
  }

  .sb__preview-swatch {
    width: 20px;
    height: 20px;
    border: 1px solid rgba(0,0,0,0.08);
    flex-shrink: 0;
    overflow: hidden;
  }

  .sb__preview-swatch img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }

  .sb__chevron {
    font-size: 10px;
    color: var(--color-foreground-secondary, #888);
    transition: transform 0.25s ease;
    flex-shrink: 0;
  }
.sb__icon-vertical {
  transform-origin: center;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.3s ease;
}

.sb--open .sb__icon-vertical {
  transform: rotate(90deg);
  opacity: 0;
}

  {% comment %} .sb__list {
    display: none;
  }

  .sb--open .sb__list {
    display: flex;
  } {% endcomment %}
    .sb__list {
    display: flex;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  }

  .sb--open .sb__list {
    max-height: 600px;
  }

}

/* ---- DESKTOP ONLY: always-visible static header ---- */
@media (min-width: 750px) {

  .sb__chevron,
  .sb__preview-swatches {
    display: none;
  }

  .sb__header {
    cursor: default;
  }

  .sb__list {
    display: flex !important;
  }

}