@layer components {
  .sheen-selection {
    display: flex;
    flex-direction: column;
  }
  .sheen-selection__label {
    display: block;
    margin-bottom: 1.5rem;
  }
  @media (min-width: 1024px) {
    .sheen-selection__label {
      margin-bottom: 2rem;
    }
  }
  .sheen-selection__dropdown {
    width: 100%;
  }
  .sheen-selection__thumbnails {
    display: flex;
    flex-flow: row wrap;
    gap: 0.5rem;
    margin-top: 1rem;
  }
  .sheen-selection__thumbnail {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    width: 3.5rem;
    height: 3.5rem;
    padding: 0.75rem;
    border: none;
    border-radius: 0.25rem;
    background: var(--theme-surface-secondary);
    cursor: pointer;
    overflow: hidden;
    transition: background-color 0.15s cubic-bezier(0.19, 1, 0.22, 1), box-shadow 0.15s cubic-bezier(0.19, 1, 0.22, 1);
  }
  .sheen-selection__thumbnail--active {
    background: var(--theme-surface-primary);
    box-shadow: inset 0 0 0 1.5px var(--theme-border-primary);
  }
  .sheen-selection__thumbnail[aria-disabled=true] {
    opacity: 0.5;
    cursor: not-allowed;
  }
  @media (forced-colors: active) {
    .sheen-selection__thumbnail[aria-disabled=true] {
      opacity: 1;
      outline: 2px dashed GrayText;
    }
  }
  .sheen-selection__thumbnail.hover {
    background: transparent;
    box-shadow: inset 0 0 0 1.5px var(--theme-border-primary);
  }
  @media (hover: hover) {
    .sheen-selection__thumbnail:hover {
      background: transparent;
      box-shadow: inset 0 0 0 1.5px var(--theme-border-primary);
    }
  }
  .sheen-selection__thumbnail.focus, .sheen-selection__thumbnail:focus-visible {
    outline: none;
    box-shadow: inset 0 0 0 0.125rem var(--theme-border-primary);
    background: transparent;
  }
  @media (prefers-reduced-motion: reduce) {
    .sheen-selection__thumbnail {
      transition: none;
    }
  }
  .sheen-selection__thumbnail picture,
  .sheen-selection__thumbnail img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
  }
  .sheen-selection__help {
    margin-top: 1.5rem;
  }
  @media (min-width: 1024px) {
    .sheen-selection__help {
      margin-top: 2rem;
    }
  }
  .sheen-selection__help a,
  .sheen-selection__help a.button {
    font-family: var(--font-primary);
    font-size: 0.875rem;
    font-weight: 400;
    line-height: 1.2;
    letter-spacing: 0;
    transition: background-size 0.45s cubic-bezier(0.5, 0, 0, 1), background-position 0.45s cubic-bezier(0.5, 0, 0, 1);
    display: inline;
    padding: 0;
    border: none;
    border-radius: 0;
    min-height: auto;
    color: var(--theme-text-primary);
    text-decoration: none;
    background-image: linear-gradient(currentcolor, currentcolor);
    background-repeat: no-repeat;
    background-position: right bottom;
    background-size: 100% 0.09375rem;
  }
  .sheen-selection__help a.hover, .sheen-selection__help a:hover,
  .sheen-selection__help a.button.hover,
  .sheen-selection__help a.button:hover {
    background-size: 0% 0.09375rem;
  }
  .sheen-selection__help a.focus, .sheen-selection__help a:focus-visible,
  .sheen-selection__help a.button.focus,
  .sheen-selection__help a.button:focus-visible {
    outline: 0.125rem solid var(--theme-focus-primary);
    outline-offset: 0.25rem;
    border-radius: 6rem;
  }
  @media (prefers-reduced-motion: reduce) {
    .sheen-selection__help a,
    .sheen-selection__help a.button {
      transition-duration: 0ms;
    }
  }
  .sheen-selection__help a .button-content,
  .sheen-selection__help a.button .button-content {
    display: inline;
    -webkit-text-stroke-width: 0;
  }
  .sheen-selection__help a .button-content::before, .sheen-selection__help a .button-content::after,
  .sheen-selection__help a.button .button-content::before,
  .sheen-selection__help a.button .button-content::after {
    content: none;
  }
}