/* Purifine Subscriptions — styles */
:root {
    --ps-accent:  #de9932;
    --ps-border:  #e8e2d9;
    --ps-surface: #f9f7f4;
    --ps-text:    #1a1a1a;
    --ps-muted:   #8a7f72;
    --ps-green:   #2e7d52;
    --ps-ease:    cubic-bezier(0.4,0,0.2,1);
}

/* SELECTOR */
.ps-selector {
    margin: 0 0 20px;
    padding: 20px;
    background: var(--ps-surface);
    border-radius: 12px;
    border: 1px solid var(--ps-border);
}
.ps-selector__label {
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--ps-muted);
    margin: 0 0 12px;
}
.ps-selector__options {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

/* OPTION */
.ps-option {
    display: flex;
    align-items: center;
    padding: 12px 14px;
    background: #fff;
    border: 1.5px solid var(--ps-border);
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s var(--ps-ease);
    user-select: none;
}
.ps-option input[type="radio"] { display: none; }
.ps-option:hover {
    border-color: var(--ps-accent);
    background: #fffdf7;
}
.ps-option.is-active {
    border-color: var(--ps-accent);
    background: #fffdf7;
    box-shadow: 0 0 0 3px rgba(222,153,50,0.12);
}
.ps-option__inner {
    display: flex;
    align-items: center;
    gap: 10px;
    width: 100%;
}
.ps-option__inner::before {
    content: '';
    width: 18px;
    height: 18px;
    border-radius: 50%;
    border: 2px solid var(--ps-border);
    flex-shrink: 0;
    transition: all 0.2s var(--ps-ease);
}
.ps-option.is-active .ps-option__inner::before {
    border-color: var(--ps-accent);
    background: var(--ps-accent);
    box-shadow: inset 0 0 0 3px #fff;
}
.ps-option__label {
    font-size: 14px;
    font-weight: 600;
    color: var(--ps-text);
    flex: 1;
}
.ps-option__badge {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.05em;
    color: #fff;
    padding: 3px 8px;
    border-radius: 20px;
    white-space: nowrap;
    background: #de9932;
}

/* INFO */
.ps-selector__info {
    margin: 12px 0 0;
    padding: 10px 14px;
    background: rgba(222,153,50,0.08);
    border-radius: 6px;
    border-left: 3px solid var(--ps-accent);
    font-size: 13px;
    color: var(--ps-text);
}

/* ADMIN STATUS */
.ps-status {
    display: inline-block;
    padding: 2px 8px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 600;
}
.ps-status--active      { background: #d4edda; color: #155724; }
.ps-status--cancelled   { background: #f8d7da; color: #721c24; }
.ps-status--payment_failed { background: #fff3cd; color: #856404; }
