/* 매장 선택 · 배달주소 */
html:has(body.hj-customer),
body.hj-customer {
    overflow-x: hidden;
    max-width: 100vw;
}

body.hj-customer .hj-pick-content,
body.hj-customer .hj-app-content,
body.hj-customer main {
    overflow-x: hidden;
    max-width: 100%;
}

.hj-address-box {
    border: 1px solid rgba(212, 175, 55, 0.18);
    background: rgba(16, 16, 16, 0.96);
    border-radius: 18px;
    padding: 18px 16px;
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.32);
}

.hj-address-lead {
    margin-bottom: 14px;
    color: var(--hj-muted, #a1a1aa);
    font-size: 14px;
    font-weight: 700;
    line-height: 1.5;
}

.hj-address-input {
    width: 100%;
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 14px;
    background: #050505;
    color: #f5edd2;
    padding: 14px;
    font-size: 16px;
    font-weight: 700;
    outline: none;
    font-family: inherit;
}

.hj-address-results {
    margin-top: 10px;
    display: grid;
    gap: 8px;
}

.hj-address-item {
    text-align: left;
    border: 1px solid #27272a;
    border-radius: 14px;
    background: #101010;
    color: #e4e4e7;
    padding: 12px 14px;
    font-family: inherit;
    cursor: pointer;
    width: 100%;
    transition: border-color 0.15s, background 0.15s;
}

.hj-address-item:hover,
.hj-address-item:active {
    border-color: rgba(212, 175, 55, 0.45);
    background: rgba(212, 175, 55, 0.07);
}

.hj-address-item strong {
    display: block;
    color: #f4f4f5;
    font-size: 15px;
    font-weight: 800;
}

.hj-address-sub {
    display: block;
    margin-top: 4px;
    color: #a1a1aa;
    font-size: 12px;
    font-weight: 600;
    line-height: 1.45;
}

.hj-address-pick strong {
    display: block;
    font-weight: 800;
}

.hj-address-pick .hj-address-sub {
    display: block;
    margin-top: 4px;
    color: #a1a1aa;
    font-size: 12px;
    font-weight: 600;
}

.hj-start-actions {
    display: grid;
    gap: 8px;
    margin-top: 14px;
}

.hj-store-list {
    margin-top: 18px;
    display: grid;
    gap: 10px;
}

.hj-store-card {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    text-align: left;
    border: 1px solid #27272a;
    border-radius: 16px;
    background: linear-gradient(145deg, rgba(20, 20, 20, 0.98), rgba(12, 12, 12, 0.98));
    padding: 14px 16px;
    font-family: inherit;
    cursor: pointer;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    transition: border-color 0.15s, transform 0.15s;
}

.hj-store-card:hover:not(:disabled) {
    border-color: rgba(212, 175, 55, 0.45);
    background: rgba(212, 175, 55, 0.07);
}

.hj-store-card:disabled {
    opacity: 0.55;
    cursor: not-allowed;
}

.hj-store-card-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}

.hj-store-card-head strong {
    color: #f4f4f5;
    font-size: 16px;
    font-weight: 800;
    line-height: 1.35;
    word-break: keep-all;
    white-space: normal;
    writing-mode: horizontal-tb;
}

.hj-store-distance {
    color: #f0d98a;
    font-size: 14px;
    font-weight: 800;
    white-space: nowrap;
}

.hj-store-card p {
    margin: 6px 0 0;
    color: #a1a1aa;
    font-size: 13px;
    line-height: 1.45;
    font-weight: 600;
}

.hj-store-badge {
    display: inline-block;
    margin-top: 8px;
    margin-right: 6px;
    padding: 4px 10px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 800;
}

.hj-store-badge.ok {
    background: rgba(34, 197, 94, 0.15);
    color: #86efac;
}

.hj-store-badge.no {
    background: rgba(239, 68, 68, 0.12);
    color: #fca5a5;
}

.hj-pick-status {
    margin-top: 12px;
    color: #d8bd68;
    font-size: 14px;
    font-weight: 700;
    line-height: 1.45;
}

.hj-pick-status.bad { color: #fca5a5; }
