/**
 * InkyPlume — Design Group Swatches
 * Frontend styles for the product page swatch strip.
 */

/* ── Swatch strip container ──────────────────────────────────────────── */
.inkyplume-dg-swatches {
    margin: 1.5em 0;
}

.inkyplume-dg-swatches__label {
    font-size: 13px;
    font-weight: 600;
    color: #555;
    margin-bottom: 10px;
}

.inkyplume-dg-swatches__strip {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    align-items: center;
}

.inkyplume-dg-swatches--swatches {
    flex-wrap: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
    padding-bottom: 4px;
}

/* ── Individual swatch ───────────────────────────────────────────────── */
.inkyplume-dg-swatch {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    min-width: 64px;
    padding: 0;
    border: 2px solid #ddd;
    border-radius: 6px;
    overflow: hidden;
    cursor: pointer;
    background: #fff;
    transition: border-color 0.2s ease, transform 0.15s ease, box-shadow 0.2s ease;
}

.inkyplume-dg-swatch:hover {
    border-color: #999;
    transform: scale(1.05);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.inkyplume-dg-swatch--active {
    border-color: #000;
    box-shadow: 0 0 0 1px #000;
}

.inkyplume-dg-swatch--active:hover {
    transform: none;
}

.inkyplume-dg-swatch--loading {
    opacity: 0.5;
    pointer-events: none;
}

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

/* ── Transition for swapped content ──────────────────────────────────── */
.inkyplume-dg-swap-fade {
    opacity: 0;
    transition: opacity 0.25s ease;
}

.inkyplume-dg-swap-visible {
    opacity: 1;
}

/* ── Mobile: slightly smaller swatches ───────────────────────────────── */
@media (max-width: 600px) {
    .inkyplume-dg-swatch {
        width: 52px;
        height: 52px;
        min-width: 52px;
    }
}