/**
 * WooCommerce Variation Swatches Pro - Frontend CSS
 */

/* Swatches Container */
.wcvsp-swatches {
    display: flex;
    flex-wrap: wrap;
    margin: 5px 0 15px;
}

/* Individual Swatch */
.wcvsp-swatch {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin: 0 8px 8px 0;
    cursor: pointer;
    border: 2px solid #ddd;
    transition: all 0.3s;
    position: relative;
}

.wcvsp-swatch:hover {
    border-color: #999;
}

.wcvsp-swatch.selected {
    border-color: #333;
}

/* Color Swatch */
.wcvsp-swatch-color span {
    width: 100%;
    height: 100%;
    display: block;
}

/* Image Swatch */
.wcvsp-swatch-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Label Swatch */
.wcvsp-swatch-label {
    background-color: #f1f1f1;
}

.wcvsp-swatch-label span {
    padding: 0 5px;
    text-align: center;
}

/* Out of Stock */
.wcvsp-swatch.disabled {
    opacity: 0.5;
    cursor: not-allowed;
    position: relative;
}

.wcvsp-swatch.disabled::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.5);
}

/* Tooltip */
.wcvsp-tooltip {
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%);
    margin-bottom: 5px;
    background: #333;
    color: #fff;
    padding: 5px 10px;
    border-radius: 3px;
    font-size: 12px;
    white-space: nowrap;
    z-index: 99;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
}

.wcvsp-tooltip::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 50%;
    margin-left: -5px;
    border-width: 5px;
    border-style: solid;
    border-color: #333 transparent transparent transparent;
}

.wcvsp-swatch:hover .wcvsp-tooltip {
    opacity: 1;
    visibility: visible;
}