/* --- Product Variation Selectors --- */

.gp-bs-variations {
    margin: 4px 0 12px 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 0 4px;
}

.gp-bs-attribute-row {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.gp-bs-attribute-label {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #999;
    font-weight: 600;
}

.gp-bs-attribute-options {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.gp-bs-option-chip {
    padding: 6px 12px;
    border-radius: 8px;
    background: #f8f8f8;
    border: 1px solid #eee;
    font-size: 12px;
    font-weight: 500;
    color: #444;
    cursor: pointer;
    transition: all 0.2s ease;
    user-select: none;
}

.gp-bs-option-chip:hover {
    border-color: #2D5A27;
    background: #f0f4f0;
}

.gp-bs-option-chip.is-selected {
    background: #2D5A27;
    color: #fff;
    border-color: #2D5A27;
    box-shadow: 0 4px 10px rgba(45, 90, 39, 0.2);
}

/* Ensure the card expands nicely */
.gp-bs-card {
    min-height: 480px;
    /* Slight increase for variants */
}

@media (max-width: 768px) {
    .gp-bs-card {
        min-height: auto;
    }

    .gp-bs-variations {
        margin: 4px 0 8px 0;
        gap: 6px;
    }

    .gp-bs-attribute-label {
        font-size: 9px;
    }

    .gp-bs-option-chip {
        padding: 4px 8px;
        font-size: 10px;
        border-radius: 6px;
    }
}