
.color-options {
    display: flex;
    gap: 7px;
    margin-top: 8px;
    align-items: center;
}

.color-option {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    border: 2px solid #fff;
    box-shadow: 0 0 0 1px #ccc;
    cursor: pointer;
    transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.color-option:hover {
    transform: scale(1.15);
    box-shadow: 0 0 0 2px #333;
}

.color-option.active {
    box-shadow: 0 0 0 2px #000;
}
</style>

