
.pa3xa-customizer{
    margin:22px 0;
    display:flex;
    flex-direction:column;
    gap:16px;
    font-family:inherit;
}
.pa3xa-option-group{
    border:1px solid rgba(0,0,0,.08);
    border-radius:16px;
    padding:16px;
    background:#fff;
    box-shadow:0 8px 24px rgba(0,0,0,.04);
}
.pa3xa-option-title{
    display:flex;
    align-items:center;
    gap:12px;
    margin-bottom:14px;
}
.pa3xa-option-title strong{
    display:block;
    font-size:16px;
    line-height:1.2;
}
.pa3xa-option-title small{
    display:block;
    opacity:.65;
    margin-top:4px;
    font-size:12px;
}
.pa3xa-step{
    width:34px;
    height:34px;
    min-width:34px;
    border-radius:10px;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    background:#111;
    color:#fff;
    font-weight:700;
    font-size:14px;
}
.pa3xa-step-portion{
    background:#2d2d2d;
}
.pa3xa-options-grid{
    display:grid;
    grid-template-columns:repeat(2,minmax(0,1fr));
    gap:10px;
}
.pa3xa-choice,
.pa3xa-portion{
    position:relative;
    display:flex;
    align-items:center;
    gap:10px;
    min-height:48px;
    padding:11px 12px;
    border:1px solid rgba(0,0,0,.10);
    border-radius:12px;
    cursor:pointer;
    transition:.18s ease;
    background:#fafafa;
}
.pa3xa-choice:hover,
.pa3xa-portion:hover{
    border-color:rgba(0,0,0,.28);
    background:#fff;
}
.pa3xa-choice input,
.pa3xa-portion input{
    position:absolute;
    opacity:0;
    pointer-events:none;
}
.pa3xa-check,
.pa3xa-radio{
    width:20px;
    height:20px;
    min-width:20px;
    border:2px solid #c9c9c9;
    background:#fff;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    transition:.18s ease;
}
.pa3xa-check{border-radius:6px}
.pa3xa-radio{border-radius:50%}
.pa3xa-choice input:checked + .pa3xa-check{
    background:#111;
    border-color:#111;
}
.pa3xa-choice input:checked + .pa3xa-check:after{
    content:"✓";
    color:#fff;
    font-size:13px;
    font-weight:800;
}
.pa3xa-portion input:checked + .pa3xa-radio{
    border-color:#111;
    box-shadow:inset 0 0 0 4px #fff;
    background:#111;
}
.pa3xa-choice:has(input:checked),
.pa3xa-portion:has(input:checked){
    border-color:#111;
    background:#fff;
    box-shadow:0 0 0 1px #111 inset;
}
.pa3xa-choice-text{
    font-size:14px;
    font-weight:600;
    flex:1;
}
.pa3xa-price{
    font-size:12px;
    font-weight:700;
    white-space:nowrap;
    opacity:.75;
}
.pa3xa-price .woocommerce-Price-amount{
    font-size:inherit;
}
.pa3xa-portions{
    display:flex;
    flex-wrap:wrap;
    gap:10px;
}
.pa3xa-portion{
    flex:1 1 150px;
}
.pa3xa-extra-total{
    display:flex;
    align-items:center;
    justify-content:space-between;
    padding:12px 14px;
    border-radius:12px;
    background:#111;
    color:#fff;
    font-size:13px;
}
.pa3xa-extra-total strong{
    font-size:15px;
}
@media (max-width:640px){
    .pa3xa-options-grid{
        grid-template-columns:1fr;
    }
    .pa3xa-option-group{
        padding:14px;
        border-radius:14px;
    }
    .pa3xa-choice,
    .pa3xa-portion{
        min-height:52px;
    }
}
