/* Utility Classes */

/* Display utilities */
.hidden {
    display: none;
}

.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border-width: 0;
}

/* Text utilities */
.text-muted {
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.875rem;
    margin-bottom: 1.5rem;
}

/* Color swatch utilities */
.color-swatch-dynamic {
    /* Color will be set via JavaScript or CSS variable */
    cursor: pointer;
    border-radius: 4px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.color-swatch-dynamic:hover {
    transform: scale(1.1);
}

.color-swatch-dynamic[data-color] {
    background-color: var(--swatch-color);
}
