/* ═══════════════════════════════════════════════════════════
   Sydney Ironing — Pricing (category rail + item panel)
   ═══════════════════════════════════════════════════════════ */

.pr-wrap {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 24px;
    align-items: start;
}

/* Rail */
.pr-rail { display: flex; flex-direction: column; gap: 8px; }

.pr-rail-btn {
    cursor: pointer;
    width: 100%;
    display: flex;
    align-items: center;
    gap: 13px;
    padding: 14px 16px;
    border-radius: var(--radius-lg);
    background: var(--white);
    border: 1.5px solid var(--border);
    text-align: left;
    font-family: 'Mulish', sans-serif;
    transition: all .15s;
}

.pr-rail-btn:hover { border-color: var(--primary); }

.pr-rail-btn.active {
    border-color: var(--primary);
    background: var(--primary-light);
    box-shadow: 0 14px 30px -22px rgba(15,118,110,.5);
}

.pr-rail-dot { width: 10px; height: 10px; border-radius: 50%; flex: none; background: var(--primary); opacity: .35; }
.pr-rail-btn.active .pr-rail-dot { opacity: 1; }

.pr-rail-name { display: block; font-family: 'Poppins', sans-serif; font-weight: 700; font-size: 15px; color: var(--text); }
.pr-rail-from { display: block; font-size: 12px; color: var(--text-muted); margin-top: 2px; }

.pr-rail-chev { margin-left: auto; flex: none; display: flex; align-items: center; color: var(--primary); opacity: .35; transition: all .15s; }
.pr-rail-btn.active .pr-rail-chev { opacity: 1; transform: translateX(2px); }

/* Panel */
.pr-panel {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 20px 45px -34px rgba(30,27,46,.35);
    position: sticky;
    top: 100px;
}

.pr-panel-banner {
    position: relative;
    padding: 30px 32px;
    background: linear-gradient(120deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: #fff;
    overflow: hidden;
}

.pr-panel-icon { position: absolute; right: 18px; top: 50%; transform: translateY(-50%); opacity: .18; }

.pr-panel-badge {
    display: inline-block;
    background: rgba(255,255,255,.18);
    border: 1px solid rgba(255,255,255,.4);
    font-size: 11px;
    font-weight: 700;
    padding: 5px 12px;
    border-radius: 100px;
    margin-bottom: 12px;
}

.pr-panel-name { font-family: 'Poppins', sans-serif; font-weight: 700; font-size: 22px; margin: 0 0 5px; position: relative; }
.pr-panel-desc { font-size: 13.5px; line-height: 1.55; color: rgba(255,255,255,.85); margin: 0; max-width: 440px; position: relative; }

.pr-panel-items { padding: 6px 32px 28px; }

.pr-item-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 14px 0;
    border-top: 1px solid var(--border-light);
}
.pr-item-row:first-child { border-top: none; }

.pr-item-name { font-size: 14.5px; color: var(--text-body); display: flex; align-items: center; gap: 9px; }
.pr-item-tag { background: var(--primary-light); color: var(--primary); font-weight: 700; font-size: 10.5px; padding: 3px 9px; border-radius: 100px; }
.pr-item-price { font-family: 'Poppins', sans-serif; font-weight: 700; font-size: 16px; color: var(--text); }

.pr-panel-cta { display: inline-flex; align-items: center; gap: 8px; margin-top: 10px; text-decoration: none; }

@media (max-width: 860px) {
    .pr-wrap { grid-template-columns: 1fr; }
    .pr-panel { position: static; }
    .pr-rail { flex-direction: row; overflow-x: auto; gap: 10px; padding-bottom: 4px; }
    .pr-rail-btn { flex: none; width: auto; white-space: nowrap; }
    .pr-rail-from { display: none; }
}
