.pj-picker-open { overflow: hidden; }
.pj-picker-overlay {
    position: fixed;
    inset: 0;
    background: rgba(15, 39, 68, 0.45);
    display: flex;
    align-items: flex-end;
    justify-content: center;
    z-index: 6000;
    padding: 0;
}
.pj-picker-sheet {
    width: 100%;
    max-width: 480px;
    background: #fff;
    border-radius: 18px 18px 0 0;
    padding: 1rem 1rem calc(1rem + env(safe-area-inset-bottom));
    box-shadow: 0 -12px 40px rgba(15, 39, 68, 0.18);
    animation: pj-slide-up .22s ease-out;
}
@keyframes pj-slide-up {
    from { transform: translateY(100%); }
    to { transform: translateY(0); }
}
.pj-picker-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1rem;
}
.pj-picker-head strong { font-size: 1rem; }
.pj-picker-close {
    border: none;
    background: #f1f5f9;
    width: 2rem;
    height: 2rem;
    border-radius: 999px;
    font-size: 1.2rem;
    cursor: pointer;
}
.pj-picker-wheels {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: .85rem;
}
.pj-date-wheels {
    grid-template-columns: 1.1fr 1.4fr .9fr;
}
.pj-date-actions {
    grid-template-columns: 1fr 1fr;
}
.pj-picker-field span {
    display: block;
    font-size: .82rem;
    color: #64748b;
    margin-bottom: .35rem;
    font-weight: 600;
}
.pj-picker-field select {
    width: 100%;
    min-height: 3rem;
    font-size: 1.2rem;
    font-weight: 700;
    text-align: center;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    background: #f8fafc;
}
.pj-picker-preview {
    text-align: center;
    margin: 1rem 0 .85rem;
    padding: .85rem;
    background: #eff6ff;
    border-radius: 12px;
}
.pj-preview-value {
    font-size: 2rem;
    font-weight: 700;
    direction: ltr;
    color: #1565a8;
}
.pj-picker-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: .65rem;
}
