.dp-color-swatches {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 10px;
    flex-wrap: wrap;
    position: relative;
    z-index: 6;
    padding: 2px 4px;
    overflow: visible;
}

.dp-color-swatches .dp-swatch {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    border: 1px solid rgba(0, 0, 0, 0.15);
    background-color: var(--dp-color, #999999);
    background-image: var(--dp-pattern-image, none);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    cursor: pointer;
    padding: 0;
    box-shadow: none;
    transition: all 0.2s ease;
    position: relative;
    z-index: 7;
    pointer-events: auto;
    /* Área táctil mínima 44x44px para mobile (WCAG 2.5.5) */
    -webkit-tap-highlight-color: transparent;
}

.dp-color-swatches .dp-swatch::after {
    content: '';
    position: absolute;
    inset: -11px;
    border-radius: 50%;
}

.dp-color-swatches .dp-swatch[data-has-pattern="1"] {
    background-color: #ffffff;
}

.dp-color-swatches .dp-swatch:hover {
    transform: scale(1.1);
    border-color: rgba(0, 0, 0, 0.3);
}

.dp-color-swatches .dp-swatch.is-selected {
    border: 2px solid #ffffff;
    box-shadow: 0 0 0 1px #111111;
}

.dp-product-color-label {
    display: none;
    margin: 0 0 6px;
    font-size: 14px;
    line-height: 1.2;
    color: #444;
}

body.single-product .dp-product-color-label {
    display: block;
}

img.dp-image-loading {
    opacity: 0.65;
    transition: opacity 0.2s ease;
}
