Wheel EZ Play Hard Shirt
/* ---- EZ option chips (compact) ---- */ /* layout */ fieldset.product-form__input { display: flex; flex-wrap: wrap; gap: 6px; } /* hide radios */ fieldset.product-form__input input[type="radio"] { position: absolute; opacity: 0; pointer-events: none; } /* UNSELECTED */ fieldset.product-form__input label { display: inline-flex; align-items: center; justify-content: center; padding: 6px 14px; /* smaller padding */ border-radius: 8px; /* slightly smaller corners */ font-size: 15px; /* optional: reduce font size */ line-height: 1.1; background: #F8F9F9 !important; background-image: none !important; color: #191819 !important; border: 1px solid #E0E0E0 !important; box-shadow: none !important; text-shadow: none !important; cursor: pointer; transition: background-color .2s ease, color .2s ease, box-shadow .12s ease, transform .12s ease; } /* SELECTED */ fieldset.product-form__input input[type="radio"]:checked + lab