/* Price guide */
.pg-body { padding: 2.5rem 0 4rem; }
.pg-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 300px;
    gap: 2rem;
    align-items: start;
}
@media (max-width: 1024px) {
    .pg-layout { grid-template-columns: 1fr; }
}

.pg-disclaimer {
    display: flex; gap: 1rem; padding: 1.15rem 1.35rem;
    background: var(--accent-soft); border: 1px solid rgba(206,254,36,.2);
    border-radius: var(--radius); margin-bottom: 1.5rem;
    font-size: .88rem; color: var(--steel); line-height: 1.6;
}
.pg-disclaimer svg { flex-shrink: 0; color: var(--accent); margin-top: .1rem; }

.pg-toolbar {
    display: flex; flex-wrap: wrap; gap: .75rem;
    margin-bottom: 1.25rem; align-items: center;
}
.pg-search {
    flex: 1; min-width: 200px;
    padding: .8rem 1rem; border: 1.5px solid var(--line);
    border-radius: 12px; font: inherit; font-size: .9rem;
    outline: none; background: var(--card);
}
.pg-search:focus {
    border-color: var(--accent);
    box-shadow: 0 0 0 3px var(--accent-glow);
}
.pg-count {
    font-size: .84rem; color: var(--muted); white-space: nowrap;
}
.pg-count strong { color: var(--text); }

.pg-table-wrap {
    overflow-x: auto;
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    background: var(--card);
    box-shadow: var(--shadow);
    margin-bottom: 2.5rem;
}
.pg-table {
    width: 100%; border-collapse: collapse;
    font-size: .86rem;
}
.pg-table th, .pg-table td {
    padding: .85rem 1rem;
    text-align: left;
    border-bottom: 1px solid var(--line);
    vertical-align: middle;
}
.pg-table th {
    background: var(--surface-2);
    font-size: .68rem; font-weight: 700;
    text-transform: uppercase; letter-spacing: .06em;
    color: var(--muted);
    position: sticky; top: 0; z-index: 1;
}
.pg-table tbody tr:hover { background: rgba(206,254,36,.04); }
.pg-table tbody tr:last-child td { border-bottom: none; }
.pg-part-name { font-weight: 600; line-height: 1.35; }
.pg-part-sub { font-size: .76rem; color: var(--muted); margin-top: .15rem; }
.pg-cat-pill {
    display: inline-block; padding: .2rem .55rem;
    border-radius: 999px; font-size: .64rem; font-weight: 700;
    text-transform: uppercase; letter-spacing: .04em;
    background: var(--accent-soft); color: var(--steel);
    white-space: nowrap;
}
.pg-price {
    font-family: 'Outfit', sans-serif;
    font-weight: 800; color: var(--accent);
    white-space: nowrap;
}
.pg-price small { font-weight: 500; color: var(--muted); font-size: .72rem; }
.pg-range {
    font-size: .78rem; color: var(--muted);
    white-space: nowrap;
}
.pg-trend {
    display: inline-flex; align-items: center; gap: .2rem;
    font-size: .72rem; font-weight: 600;
}
.pg-trend.stable { color: var(--muted); }
.pg-trend.down { color: #2d8a62; }
.pg-trend.up { color: #c45c5c; }
.pg-link {
    font-size: .78rem; font-weight: 600; color: var(--accent);
    text-decoration: none; white-space: nowrap;
}
.pg-link:hover { text-decoration: underline; }

.pg-empty {
    text-align: center; padding: 2.5rem 1rem;
    color: var(--muted);
}

.pg-section-title {
    font-size: 1.1rem; font-weight: 800;
    letter-spacing: -.02em; margin-bottom: 1rem;
}

.pg-factors {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem;
    margin-bottom: 2.5rem;
}
@media (max-width: 800px) { .pg-factors { grid-template-columns: 1fr; } }
.pg-factor {
    padding: 1.2rem; background: var(--card);
    border: 1px solid var(--line); border-radius: var(--radius);
}
.pg-factor h4 {
    font-size: .88rem; font-weight: 700; margin-bottom: .4rem;
}
.pg-factor p { font-size: .84rem; color: var(--muted); line-height: 1.55; }

.pg-tips {
    background: var(--card); border: 1px solid var(--line);
    border-radius: var(--radius-lg); padding: 1.35rem 1.5rem;
    margin-bottom: 2.5rem; box-shadow: var(--shadow);
}
.pg-tips ul {
    list-style: none; display: flex; flex-direction: column; gap: .65rem;
}
.pg-tips li {
    padding-left: 1.25rem; position: relative;
    font-size: .88rem; color: var(--muted); line-height: 1.6;
}
.pg-tips li::before {
    content: ''; position: absolute; left: 0; top: .55rem;
    width: 6px; height: 6px; border-radius: 50%;
    background: var(--accent);
}

.pg-faq { display: flex; flex-direction: column; gap: .65rem; }
.pg-faq-item {
    background: var(--card); border: 1px solid var(--line);
    border-radius: var(--radius); overflow: hidden;
}
.pg-faq-q {
    width: 100%; display: flex; justify-content: space-between; align-items: center;
    gap: 1rem; padding: 1rem 1.15rem; border: none; background: transparent;
    text-align: left; font: inherit; font-size: .92rem; font-weight: 600;
    cursor: pointer;
}
.pg-faq-q:hover { background: var(--surface-2); }
.pg-faq-q svg { flex-shrink: 0; transition: transform .25s; color: var(--muted); }
.pg-faq-item.open .pg-faq-q svg { transform: rotate(180deg); }
.pg-faq-a {
    display: none; padding: 0 1.15rem 1rem;
    font-size: .88rem; color: var(--muted); line-height: 1.65;
}
.pg-faq-item.open .pg-faq-a { display: block; }
.pg-faq-a a { color: var(--accent); }

.pg-sidebar { position: sticky; top: 5.5rem; }
@media (max-width: 1024px) { .pg-sidebar { position: static; order: -1; } }
.pg-side-card {
    background: var(--card); border: 1px solid var(--line);
    border-radius: var(--radius); padding: 1.25rem;
    margin-bottom: 1rem; box-shadow: var(--shadow);
}
.pg-side-card h3 {
    font-size: .72rem; font-weight: 700;
    text-transform: uppercase; letter-spacing: .1em;
    color: var(--accent); margin-bottom: .85rem;
}
.pg-cats { display: flex; flex-direction: column; gap: .35rem; }
.pg-cats button {
    display: flex; justify-content: space-between; width: 100%;
    padding: .55rem .7rem; border: none; border-radius: 8px;
    background: transparent; text-align: left;
    font: inherit; font-size: .86rem; cursor: pointer;
    transition: background .2s, color .2s;
}
.pg-cats button:hover, .pg-cats button.on {
    background: var(--accent-soft); color: var(--accent);
}
.pg-cats button span {
    font-size: .72rem; color: var(--muted);
    background: var(--surface-2); padding: .12rem .4rem;
    border-radius: 999px;
}
.pg-side-links { display: flex; flex-direction: column; gap: .4rem; }
.pg-side-links a {
    font-size: .86rem; color: var(--muted); text-decoration: none;
}
.pg-side-links a:hover { color: var(--accent); }
.pg-side-cta {
    background: linear-gradient(135deg, var(--ink), #1a2820);
    border: none; color: #fff; text-align: center;
}
.pg-side-cta p {
    font-size: .84rem; color: rgba(255,255,255,.6);
    margin: .45rem 0 1rem; line-height: 1.55;
}
.pg-side-cta .btn {
    display: inline-flex; padding: .65rem 1.15rem;
    border-radius: 999px; background: var(--accent);
    color: #272824; text-decoration: none; font-weight: 600;
    font-size: .84rem;
}

.pg-updated {
    font-size: .76rem; color: var(--muted);
    margin-bottom: 1rem;
}
