.wpos-wrap {
    --wpos-primary: #1d4ed8;
    --wpos-border: #d7dce3;
    --wpos-text: #172033;
    --wpos-muted: #526077;
    max-width: 720px;
    margin: 40px auto;
    color: var(--wpos-text);
    text-align: left;
}

.wpos-card {
    padding: clamp(22px, 5vw, 42px);
    border: 1px solid var(--wpos-border);
    border-radius: 14px;
    background: rgba(255, 255, 255, .65);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    box-shadow: 0 12px 35px rgba(23, 32, 51, .08);
}

.wpos-wrap .wpos-header {
    margin: 0 0 28px;
    padding: 0 0 20px;
    border-bottom: 2px solid var(--wpos-primary);
    text-align: left;
}

.wpos-wrap .wpos-header h2 {
    margin: 0 0 8px !important;
    color: var(--wpos-text) !important;
    font-size: clamp(27px, 4vw, 36px) !important;
    font-weight: 800 !important;
    line-height: 1.15 !important;
    text-align: left !important;
    text-transform: none !important;
}

.wpos-wrap .wpos-header p {
    margin: 0 !important;
    color: var(--wpos-muted) !important;
    font-size: 16px !important;
    line-height: 1.5 !important;
    text-align: left !important;
}

.wpos-step {
    display: none;
}

.wpos-step.is-active {
    display: block;
}

.wpos-wrap .wpos-step > h3 {
    margin: 0 0 22px !important;
    color: var(--wpos-text) !important;
    font-size: 22px !important;
    font-weight: 750 !important;
    line-height: 1.25 !important;
    text-align: left !important;
    text-transform: none !important;
}

.wpos-wrap label,
.wpos-wrap legend {
    display: block;
    margin: 0 0 7px;
    color: var(--wpos-text) !important;
    font-size: 15px !important;
    font-weight: 600;
    line-height: 1.4 !important;
    text-align: left !important;
    text-transform: none !important;
}

.wpos-wrap input[type="text"],
.wpos-wrap input[type="email"],
.wpos-wrap select {
    box-sizing: border-box;
    width: 100%;
    margin: 0 0 18px;
    padding: 11px 12px;
    border: 1px solid var(--wpos-border);
    border-radius: 7px;
    font-size: 16px;
}

.wpos-shooter-choice {
    margin-bottom: 18px;
}

.wpos-wrap fieldset {
    margin: 10px 0 24px;
    padding: 20px;
    border: 1px solid var(--wpos-border);
    border-radius: 8px;
}

.wpos-wrap fieldset legend {
    width: auto !important;
    padding: 0 8px !important;
    font-size: 17px !important;
    font-weight: 750 !important;
}

.wpos-categories label,
.wpos-consents label {
    margin: 9px 0;
    font-weight: 400;
}

.wpos-wrap button {
    margin: 4px 8px 4px 0;
    padding: 11px 18px;
    border: 1px solid var(--wpos-primary);
    border-radius: 7px;
    background: var(--wpos-primary);
    color: #fff;
    cursor: pointer;
    font-weight: 700;
}

.wpos-wrap button.wpos-secondary {
    background: #fff;
    color: var(--wpos-primary);
}

.wpos-wrap button:disabled {
    cursor: wait;
    opacity: .55;
}

.wpos-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}

.wpos-message {
    display: none;
    margin: 16px 0;
    padding: 12px 14px;
    border-radius: 7px;
    font-weight: 600;
    line-height: 1.5;
    text-align: left !important;
}

.wpos-message.is-visible {
    display: block;
}

.wpos-message.success {
    background: #eaf8ef;
    color: #176534;
}

.wpos-message.error,
.wpos-not-found {
    background: #fff0f0;
    color: #9c1c1c;
}

.wpos-not-found {
    padding: 12px 14px;
    border-radius: 7px;
}

@media (max-width: 600px) {
    .wpos-grid {
        grid-template-columns: 1fr;
        gap: 0;
    }
}
