.prc-wrap {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    box-sizing: border-box;
    width: 100%;
    margin: 0 auto;
}
.prc-wrap * { box-sizing: border-box; margin: 0; padding: 0; }

.prc-card {
    background: #ffffff;
    border: 1px solid #e0e0db;
    border-radius: 12px;
    padding: 28px;
}

/* Header */
.prc-header { margin-bottom: 22px; }
.prc-header-title {
    font-size: 11px;
    font-weight: 700;
    color: #888780;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 4px;
}
.prc-header-sub {
    font-size: 13px;
    color: #5f5e5a;
}

/* Field */
.prc-field { margin-bottom: 18px; }
.prc-label {
    display: block;
    font-size: 12px;
    font-weight: 600;
    color: #3d3d3a;
    margin-bottom: 7px;
}
.prc-input {
    width: 100%;
    padding: 11px 14px;
    font-size: 15px;
    border: 1px solid #d3d1c7;
    border-radius: 8px;
    color: #2c2c2a;
    background: #fff;
    outline: none;
    transition: border-color 0.15s, box-shadow 0.15s;
    font-family: inherit;
    -webkit-appearance: none;
    appearance: none;
}
.prc-input:focus {
    border-color: #185FA5;
    box-shadow: 0 0 0 3px rgba(24,95,165,0.10);
}
.prc-input::placeholder { color: #aaa9a3; }

/* Package cards */
.prc-pkg-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
    margin-bottom: 16px;
}
.prc-pkg-opt {
    border: 1.5px solid #d3d1c7;
    border-radius: 10px;
    padding: 12px 10px 10px;
    text-align: center;
    cursor: pointer;
    transition: all 0.15s;
    background: #fafaf8;
    position: relative;
    display: flex;
    flex-direction: column;
}
.prc-pkg-opt:hover { border-color: #185FA5; background: #f4f9ff; }
.prc-pkg-opt.selected {
    border: 2px solid #185FA5;
    background: #edf5ff;
}

.prc-pkg-inner {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 6px;
    text-align: left;
    flex: 1;
}
.prc-pkg-left { flex: 1; min-width: 0; }
.prc-pkg-right { flex-shrink: 0; text-align: right; }
.prc-pkg-tier {
    font-size: 9px;
    font-weight: 700;
    color: #888780;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-bottom: 2px;
}
.prc-pkg-name {
    font-size: 11px;
    font-weight: 600;
    color: #2c2c2a;
    line-height: 1.3;
}
.prc-pkg-price {
    font-size: 16px;
    font-weight: 700;
    color: #185FA5;
    white-space: nowrap;
}
.prc-pkg-unit {
    font-size: 9px;
    color: #888780;
    white-space: nowrap;
}
.prc-pkg-cert {
    margin-top: auto;
    padding-top: 8px;
    font-size: 10px;
    font-weight: 600;
    text-align: center;
    display: flex;
    justify-content: center;
}
.prc-pkg-cert span {
    padding: 2px 10px;
    border-radius: 10px;
}
.prc-pkg-cert.yes span { background: #eaf3de; color: #27500A; }
.prc-pkg-cert.no span  { background: #f1efe8; color: #888780; }

/* Rush toggle */
.prc-rush {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 13px 14px;
    border: 1.5px solid #d3d1c7;
    border-radius: 10px;
    cursor: pointer;
    margin-bottom: 18px;
    transition: all 0.15s;
    background: #fafaf8;
    user-select: none;
}
.prc-rush:hover { border-color: #EF9F27; background: #fffbf4; }
.prc-rush.active { border: 2px solid #EF9F27; background: #fef8ed; }
.prc-rush-chk {
    width: 18px;
    height: 18px;
    border-radius: 4px;
    border: 1.5px solid #c8c6c0;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 1px;
    transition: all 0.15s;
    background: #fff;
}
.prc-rush.active .prc-rush-chk { background: #EF9F27; border-color: #EF9F27; }
.prc-rush-chk svg { display: none; }
.prc-rush.active .prc-rush-chk svg { display: block; }
.prc-rush-body { flex: 1; }
.prc-rush-title {
    font-size: 13px;
    font-weight: 600;
    color: #2c2c2a;
    margin-bottom: 2px;
}
.prc-rush-desc { font-size: 11px; color: #888780; line-height: 1.5; }
.prc-rush-tag {
    display: inline-block;
    font-size: 10px;
    font-weight: 700;
    background: #EF9F27;
    color: #fff;
    padding: 1px 7px;
    border-radius: 10px;
    margin-left: 5px;
    vertical-align: middle;
}

/* Divider */
.prc-divider { height: 1px; background: #e8e8e4; margin: 18px 0; }

/* Result */
.prc-result { background: #f7f7f4; border-radius: 10px; padding: 18px; }
.prc-result-empty { text-align: center; padding: 28px 0; }
.prc-result-empty-icon {
    width: 48px; height: 48px;
    border-radius: 50%;
    background: #e6f1fb;
    margin: 0 auto 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.prc-result-empty-text { font-size: 13px; color: #888780; }

.prc-result-row {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    padding: 6px 0;
    font-size: 13px;
    gap: 12px;
}
.prc-result-key { color: #5f5e5a; flex-shrink: 0; }
.prc-result-val { font-weight: 600; color: #2c2c2a; text-align: right; }

.prc-result-divider { height: 1px; background: #d8d7d2; margin: 10px 0; }

.prc-result-row.total .prc-result-key { font-size: 14px; font-weight: 700; color: #2c2c2a; }
.prc-result-row.total .prc-result-val { font-size: 28px; color: #185FA5; font-weight: 700; }

.prc-color-green { color: #0F6E56 !important; }
.prc-color-amber { color: #854F0B !important; }

/* Deposit box */
.prc-deposit-box {
    margin-top: 14px;
    background: #185FA5;
    border-radius: 10px;
    padding: 14px 18px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
}
.prc-deposit-left { flex: 1; }
.prc-deposit-label { font-size: 12px; color: rgba(255,255,255,0.85); font-weight: 500; }
.prc-deposit-sub { font-size: 11px; color: rgba(255,255,255,0.65); margin-top: 2px; }
.prc-deposit-val { font-size: 22px; font-weight: 700; color: #fff; white-space: nowrap; }

/* Turnaround */
.prc-turnaround {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 12px;
    font-size: 12px;
    color: #5f5e5a;
    background: #eeede9;
    border-radius: 8px;
    padding: 9px 13px;
}
.prc-turnaround-dot { width: 7px; height: 7px; border-radius: 50%; background: #639922; flex-shrink: 0; }

/* Scope preview */
.prc-scope {
    margin-top: 12px;
    background: #fff;
    border: 1px solid #e0e0db;
    border-radius: 8px;
    padding: 12px 14px;
}
.prc-scope-title { font-size: 11px; font-weight: 700; color: #888780; text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 8px; }
.prc-scope-item {
    font-size: 12px;
    color: #3d3d3a;
    padding: 3px 0;
    display: flex;
    align-items: flex-start;
    gap: 7px;
    line-height: 1.4;
}
.prc-scope-dot { width: 5px; height: 5px; border-radius: 50%; background: #185FA5; flex-shrink: 0; margin-top: 5px; }

/* Note */
.prc-note {
    margin-top: 12px;
    background: #e6f1fb;
    border-radius: 8px;
    padding: 11px 14px;
    font-size: 11px;
    color: #0C447C;
    line-height: 1.65;
}
.prc-note strong { font-weight: 700; }


/* Pick state */
.prc-result-pick {
    text-align: center;
    padding: 22px 16px;
    animation: prcFadeIn 0.25s ease;
}
.prc-pick-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: #faeeda;
    margin: 0 auto 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.prc-pick-text {
    font-size: 13px;
    font-weight: 600;
    color: #854F0B;
    margin-bottom: 4px;
}
.prc-pick-sub {
    font-size: 12px;
    color: #888780;
}
.prc-pick-arrows {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 12px;
}
.prc-pick-arrow {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: #185FA5;
    display: flex;
    align-items: center;
    justify-content: center;
}
@keyframes prcFadeIn {
    from { opacity: 0; transform: translateY(4px); }
    to   { opacity: 1; transform: translateY(0); }
}

/* Responsive */
@media (max-width: 540px) {
    .prc-card { padding: 18px; }
    .prc-pkg-grid { grid-template-columns: 1fr; gap: 6px; }
    .prc-pkg-opt { padding: 12px 14px; }
    .prc-pkg-tier { font-size: 10px; }
    .prc-pkg-name { font-size: 12px; }
    .prc-pkg-price { font-size: 16px; }
    .prc-pkg-cert { display: none; }
    .prc-result-row.total .prc-result-val { font-size: 22px; }
    .prc-deposit-val { font-size: 18px; }
}
