/* PurePlugins Woo Commerce Pro - geavanceerde variant-weergave */

/* Tooltips op swatches (title wordt door JS naar data-pwc-tip verplaatst). */
.pwc-swatch {
    position: relative;
}

.pwc-swatch[data-pwc-tip]:hover::after,
.pwc-swatch[data-pwc-tip]:focus-visible::after {
    content: attr(data-pwc-tip);
    position: absolute;
    bottom: calc(100% + 7px);
    left: 50%;
    transform: translateX(-50%);
    background: #1c1c1c;
    color: #fff;
    padding: 3px 9px;
    border-radius: 4px;
    font-size: 11px;
    line-height: 1.6;
    white-space: nowrap;
    z-index: 30;
    pointer-events: none;
}

.pwc-swatch[data-pwc-tip]:hover::before,
.pwc-swatch[data-pwc-tip]:focus-visible::before {
    content: "";
    position: absolute;
    bottom: calc(100% + 2px);
    left: 50%;
    transform: translateX(-50%);
    border: 5px solid transparent;
    border-top-color: #1c1c1c;
    z-index: 30;
    pointer-events: none;
}

/* Catalogus-swatches in de product-loop. */
.pwc-cat-swatches {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    align-items: center;
    justify-content: center;
    margin: 8px 0 0;
}

.pwc-cat-swatches .pwc-swatch {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 22px;
    height: 22px;
    padding: 0;
    border: 1px solid #d5d8dc;
    background: #fff;
    text-decoration: none;
    overflow: hidden;
    box-sizing: border-box;
}

.pwc-cat-swatches.pwc-swatches--round .pwc-swatch {
    border-radius: 50%;
}

.pwc-cat-swatches.pwc-swatches--square .pwc-swatch {
    border-radius: 4px;
}

.pwc-cat-swatches .pwc-swatch-color {
    position: absolute;
    inset: 2px;
    border-radius: inherit;
    display: block;
}

.pwc-cat-swatches .pwc-swatch img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: inherit;
    display: block;
}

.pwc-cat-swatches .pwc-swatch--button {
    width: auto;
    min-width: 22px;
    padding: 0 7px;
    font-size: 11px;
    line-height: 1;
    color: #1c1c1c;
    border-radius: 4px;
}

.pwc-cat-swatches .pwc-swatch:hover,
.pwc-cat-swatches .pwc-swatch:focus-visible {
    border-color: #1c1c1c;
}

.pwc-cat-more {
    font-size: 11px;
    color: #666;
}
