/* WooCommerce Shop Page Color Variations */
.wc-color-variations {
    margin: 10px 0;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

.wc-color-variations-label {
    font-size: 13px;
    color: #777;
    margin-right: 8px;
}

.wc-color-options {
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
}

.wc-color-option {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    cursor: pointer;
    border: 2px solid transparent;
    transition: all 0.2s ease;
    display: inline-block;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
    position: relative;
}

.wc-color-option.active::after {
    content: '';
    position: absolute;
    width: 12px;
    height: 6px;
    border-left: 2px solid white;
    border-bottom: 2px solid white;
    transform: rotate(-45deg);
    top: 7px;
    left: 6px;
}

.wc-color-swatches {
    margin: 8px 0 12px;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

.wc-color-swatches-label {
    display: none;
}

.wc-color-swatches-container {
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
}

.wc-color-swatch {
		width: 30px;
    height: 30px;
    display: inline-block;
    border-radius: 50%;
    cursor: pointer;
    border: 2px solid transparent;
    transition: all 0.2s ease;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}

.wc-color-swatch:hover {
    transform: scale(1.15);
}

.wc-color-swatch.active {
    border-color: #333;
    position: relative;
}

.wc-color-swatch.active::after {
    content: '';
    position: absolute;
    width: 12px;
    height: 6px;
    border-left: 2px solid white;
    border-bottom: 2px solid white;
    transform: rotate(-45deg);
    top: 7px;
    left: 6px;
}