﻿/* ===================== SWATCH GROUP ===================== */
.swatch-group {
    display: flex;
    gap: 8px;
    margin-top: 6px;
    flex-wrap: wrap;
}

/* ===================== BASE SWATCH ===================== */
.swatch-option {
    cursor: pointer;
    border-radius: 4px;
    box-sizing: border-box;
    transition: border-color .15s ease, box-shadow .15s ease;
}

    /* ===================== COLOR ===================== */
    .swatch-option.color {
        width: 28px;
        height: 28px;
        border: 1px solid rgba(0,0,0,0.35);
        background-clip: padding-box;
    }

        /* SIN COLOR (VISIBLE SIEMPRE) */
        .swatch-option.color.no-color {
            background: repeating-linear-gradient( 45deg, rgba(0,0,0,0.15), rgba(0,0,0,0.15) 4px, transparent 4px, transparent 8px );
        }

    /* ===================== TALLA ===================== */
    .swatch-option.text {
        padding: 6px 12px;
        border: 1px solid rgba(0,0,0,0.35);
        font-size: 13px;
        font-weight: 600;
        background: #fff;
    }

        /* SIN TALLA */
        .swatch-option.text.no-color {
            background: #f5f5f5;
            font-style: italic;
        }

    /* ===================== SELECCIONADO ===================== */
    .swatch-option.selected {
        border-color: #dc0030;
        box-shadow: 0 0 0 2px rgba(220,0,48,.35);
    }

    /* ===================== DESELECCIONADO (NEUTRO) ===================== */
    .swatch-option:not(.selected) {
        box-shadow: none;
    }

    /* ===================== DESHABILITADO ===================== */
    .swatch-option.disabled {
        opacity: 0.35;
        pointer-events: none;
    }
