/* MX PC Conditions - Zusätzliche Styles für ausgegraut Optionen im MKL Configurator */

/* Ausgegraut Choice */
.choice.mx-pc-disabled .choice-item,
.choice-item.mx-pc-disabled {
    opacity: 0.3 !important;
    pointer-events: none !important;
    cursor: not-allowed !important;
}

.choice.mx-pc-disabled .choice-item:hover,
.choice-item.mx-pc-disabled:hover {
    opacity: 0.3 !important;
    transform: none !important;
}

/* Ausgegraut Thumbnail */
.choice.mx-pc-disabled .mkl-pc-thumbnail,
.choice-item.mx-pc-disabled .mkl-pc-thumbnail {
    filter: grayscale(100%);
}

/* Ausgegraut Text */
.choice.mx-pc-disabled .choice-text,
.choice-item.mx-pc-disabled .choice-text {
    color: #999 !important;
}

/* Overlay für deaktivierte Choices */
.choice.mx-pc-disabled::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.7);
    pointer-events: none;
    z-index: 10;
}

/* Debug-Modus Hinweis */
.mx-pc-debug-info {
    position: fixed;
    bottom: 10px;
    right: 10px;
    background: rgba(0, 0, 0, 0.8);
    color: #fff;
    padding: 10px;
    border-radius: 4px;
    font-size: 11px;
    font-family: monospace;
    z-index: 99999;
    max-width: 300px;
}
