.tdi-pg-swatches {
    margin: 0 0 1.25rem;
}

.tdi-pg-swatches__dimension + .tdi-pg-swatches__dimension {
    margin-top: 1rem;
}

.tdi-pg-swatches__label {
    display: block;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.tdi-pg-swatches__options {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.tdi-pg-swatch {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    border: 1px solid #ccc;
    color: inherit;
    min-height: 36px;
    padding: 0.25rem 0.75rem;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.tdi-pg-swatch:hover {
    border-color: #666;
}

.tdi-pg-swatch--current {
    border-color: #111;
    box-shadow: inset 0 0 0 1px #111;
    cursor: default;
}

.tdi-pg-swatch--unavailable {
    opacity: 0.45;
    border-style: dashed;
}

.tdi-pg-swatch--unavailable:hover {
    opacity: 0.7;
}

.tdi-pg-swatch--unavailable .tdi-pg-swatch__pill,
.tdi-pg-swatch--unavailable .tdi-pg-swatch__color,
.tdi-pg-swatch--unavailable .tdi-pg-swatch__image {
    filter: grayscale(60%);
}

.tdi-pg-swatches--pill .tdi-pg-swatch__pill,
.tdi-pg-swatches--pill .tdi-pg-swatch {
    border-radius: 999px;
}

.tdi-pg-swatches--rounded .tdi-pg-swatch__pill,
.tdi-pg-swatches--rounded .tdi-pg-swatch,
.tdi-pg-swatches--rounded .tdi-pg-swatch__color {
    border-radius: 8px;
}

.tdi-pg-swatches--square .tdi-pg-swatch__pill,
.tdi-pg-swatches--square .tdi-pg-swatch,
.tdi-pg-swatches--square .tdi-pg-swatch__color {
    border-radius: 0;
}

.tdi-pg-swatch__color {
    display: inline-block;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    border: 1px solid rgba(0, 0, 0, 0.15);
}

.tdi-pg-swatch__image {
    width: 32px;
    height: 32px;
    object-fit: cover;
    border-radius: 4px;
}

.tdi-pg-swatch__pill {
    display: inline-block;
    line-height: 1.2;
}

.tdi-pg-swatch--background .tdi-pg-swatch__pill {
    color: #fff;
    padding: 0.35rem 0.75rem;
}
