/**
 * Frontend Stylesheet for WooCommerce Product Configurator
 */

.wpc-configurator-wrapper {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 24px;
    margin-bottom: 30px;
}

.wpc-fit-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
    gap: 12px;
}

.wpc-fit-card-label {
    display: flex;
    flex-direction: column;
    padding: 14px 12px;
    background: #f8fafc;
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    cursor: pointer;
    text-align: center;
}
