/**
 * Product-size selection for the local AMAHASLA storefront.
 *
 * WC Size Pills owns the native radio controls; this child-theme layer keeps
 * their behaviour intact while aligning the visible controls with the store.
 */
.woocommerce div.product form.cart .wcsp-pills {
    --wcsp-pill-size: 58px;
    --wcsp-pill-font-size: 18px;
    --wcsp-pill-bg: #e8e8e8;
    --wcsp-pill-fg: #111111;
    --wcsp-pill-border: rgba(17, 17, 17, 0.22);
    --wcsp-pill-active-bg: #ffffff;
    --wcsp-pill-active-fg: #111111;
}

.woocommerce div.product form.cart .wcsp-pill {
    position: relative;
    overflow: visible;
    font-weight: 700;
    letter-spacing: -1px;
}

/* The native checked radio state stays intact; this marker makes it visible. */
.woocommerce div.product form.cart .wcsp-pill-input:checked + .wcsp-pill::after {
    position: absolute;
    top: -5px;
    right: -5px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 21px;
    height: 21px;
    border: 1px solid rgba(17, 17, 17, 0.26);
    border-radius: 50%;
    background: linear-gradient(135deg, #67db80 0%, #249c57 100%);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.32);
    color: #111111;
    content: "\f147";
    font-family: dashicons;
    font-size: 15px;
    font-weight: 400;
    letter-spacing: normal;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
