/* ============================================
   PC BUILDER WIZARD
   ============================================ */

.pcb-hero {
    background: linear-gradient(135deg, #0F172A 0%, #1E293B 50%, #0F172A 100%);
    color: #fff;
    padding: 80px 24px 60px;
    text-align: center;
}
.pcb-hero-inner {
    max-width: 720px;
    margin: 0 auto;
}
.pcb-hero-tag {
    display: inline-block;
    padding: 6px 16px;
    background: rgba(0, 240, 255, 0.12);
    color: #00F0FF;
    border: 1px solid rgba(0, 240, 255, 0.3);
    border-radius: 999px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 20px;
}
.pcb-hero h1 {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 800;
    line-height: 1.1;
    margin: 0 0 16px;
    color: #fff;
}
.pcb-hero p {
    font-size: 1.1rem;
    color: #94A3B8;
    line-height: 1.6;
    margin: 0;
}

/* Container */
.pcb-container {
    max-width: 1080px;
    margin: 0 auto;
    padding: 40px 24px 60px;
}

/* Progress bar */
.pcb-progress {
    width: 100%;
    height: 6px;
    background: #E2E8F0;
    border-radius: 999px;
    overflow: hidden;
    margin-bottom: 8px;
}
.pcb-progress-bar {
    height: 100%;
    background: linear-gradient(90deg, var(--blue) 0%, var(--blue-bright) 100%);
    border-radius: 999px;
    transition: width 0.4s ease;
}
.pcb-progress-label {
    text-align: right;
    font-size: 0.8rem;
    font-weight: 600;
    color: #64748B;
    margin-bottom: 32px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

/* Wizard */
.pcb-wizard {
    background: #fff;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
    border: 1px solid #E2E8F0;
    min-height: 500px;
}
.pcb-step { display: none; }
.pcb-step-active { display: block; animation: pcbFadeIn 0.3s ease; }
@keyframes pcbFadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.pcb-step-header {
    text-align: center;
    margin-bottom: 32px;
}
.pcb-step-emoji {
    font-size: 3rem;
    line-height: 1;
    margin-bottom: 12px;
    display: block;
}
.pcb-step-svg {
    display: block;
    margin: 0 auto 12px;
    width: 80px;
    max-width: 100%;
}
.pcb-step-svg svg { width: 100%; height: auto; display: block; }
.pcb-step-header h2 {
    font-size: 2rem;
    font-weight: 800;
    color: var(--dark);
    margin: 0 0 12px;
    line-height: 1.2;
}
.pcb-step-header p {
    color: #64748B;
    font-size: 1rem;
    line-height: 1.6;
    max-width: 640px;
    margin: 0 auto;
}
.pcb-step-header p small {
    display: block;
    font-size: 0.85rem;
    margin-top: 8px;
    color: #94A3B8;
}

/* Cards grid */
.pcb-cards {
    display: grid;
    gap: 16px;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}
.pcb-cards-2col {
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    max-width: 900px;
    margin: 0 auto;
}
.pcb-cards-cases {
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.pcb-card {
    background: #fff;
    border: 2px solid #E2E8F0;
    border-radius: 14px;
    padding: 20px;
    cursor: pointer;
    transition: all 0.2s ease;
    text-align: left;
    position: relative;
}
.pcb-card:hover {
    border-color: var(--blue);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 112, 192, 0.12);
}
.pcb-card-selected {
    border-color: var(--blue);
    background: rgba(0, 112, 192, 0.04);
    box-shadow: 0 6px 20px rgba(0, 112, 192, 0.15);
}
.pcb-card-selected::before {
    content: "\2713";
    position: absolute;
    top: 12px;
    right: 12px;
    width: 28px;
    height: 28px;
    background: var(--blue);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    font-weight: 800;
}
.pcb-card-recommended {
    position: relative;
    border-color: rgba(16, 185, 129, 0.4);
}
.pcb-card-recommended::after {
    content: "Recommended";
    position: absolute;
    top: -10px;
    left: 16px;
    background: #10B981;
    color: #fff;
    font-size: 0.7rem;
    font-weight: 700;
    padding: 3px 10px;
    border-radius: 999px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.pcb-card-title {
    font-weight: 700;
    color: var(--dark);
    font-size: 1.05rem;
    margin: 0 0 6px;
}
.pcb-card-sub {
    font-size: 0.85rem;
    color: #64748B;
    margin: 0 0 12px;
    line-height: 1.5;
}
.pcb-card-price {
    display: inline-block;
    background: #F1F5F9;
    color: #475569;
    padding: 4px 10px;
    border-radius: 6px;
    font-size: 0.85rem;
    font-weight: 700;
}
.pcb-card-selected .pcb-card-price {
    background: var(--blue);
    color: #fff;
}
.pcb-card-tag {
    display: inline-block;
    background: #FEF3C7;
    color: #92400E;
    font-size: 0.7rem;
    font-weight: 700;
    padding: 2px 8px;
    border-radius: 4px;
    margin-left: 6px;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

/* Case cards (with images) */
.pcb-case-card {
    padding: 0;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}
.pcb-case-img {
    width: 100%;
    aspect-ratio: 4/3;
    object-fit: cover;
    background: #F8FAFC;
    border-bottom: 1px solid #E2E8F0;
    display: block;
}
.pcb-case-body {
    padding: 16px;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.pcb-case-tags {
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
    margin-top: auto;
}
.pcb-case-tag {
    font-size: 0.7rem;
    font-weight: 600;
    padding: 3px 8px;
    border-radius: 6px;
    background: #F1F5F9;
    color: #475569;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}
.pcb-case-tag-rgb { background: #FDF4FF; color: #A21CAF; }
.pcb-case-tag-rgb-off { background: #F1F5F9; color: #64748B; border: 1px dashed #CBD5E1; }
.pcb-case-tag-white { background: #F8FAFC; color: #334155; border: 1px solid #CBD5E1; }
.pcb-case-tag-black { background: #1E293B; color: #fff; }
.pcb-rgb-tag {
    cursor: pointer;
    user-select: none;
    transition: transform 0.1s, box-shadow 0.15s;
}
.pcb-rgb-tag:hover {
    transform: scale(1.05);
    box-shadow: 0 2px 8px rgba(168, 85, 247, 0.25);
}
.pcb-rgb-tag.pcb-case-tag-rgb-off:hover {
    box-shadow: 0 2px 8px rgba(148, 163, 184, 0.3);
}
.pcb-cases-hint {
    text-align: center;
    font-size: 0.85rem;
    color: #64748B;
    margin-top: 20px;
    padding: 10px;
    font-style: italic;
}
.pcb-cases-hint strong {
    color: #A21CAF;
    background: #FDF4FF;
    padding: 2px 8px;
    border-radius: 6px;
    font-style: normal;
}

/* RGB Toggle */
.pcb-rgb-choice {
    margin-top: 28px;
    padding: 20px 24px;
    background: #F8FAFC;
    border: 1px solid #E2E8F0;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
}
.pcb-rgb-choice .pcb-toggle-label {
    font-size: 0.95rem;
    color: var(--dark);
    padding: 0;
}
.pcb-rgb-toggle {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 4px;
    background: #fff;
    border: 1px solid #CBD5E1;
    border-radius: 999px;
    flex-wrap: nowrap;
}
.pcb-toggle-label {
    font-size: 0.85rem;
    font-weight: 700;
    color: #475569;
    padding: 0 8px;
}
.pcb-toggle-btn {
    padding: 8px 18px;
    background: transparent;
    color: #64748B;
    border: none;
    border-radius: 999px;
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
    font-family: inherit;
}
.pcb-toggle-btn:hover { color: var(--dark); }
.pcb-toggle-active {
    background: var(--blue);
    color: #fff;
}
.pcb-toggle-active:hover { color: #fff; }

/* All-white buildout upgrade */
.pcb-white-upgrade {
    margin-top: 24px;
    padding: 20px;
    background: linear-gradient(135deg, #FFFFFF 0%, #F1F5F9 100%);
    border: 2px dashed #CBD5E1;
    border-radius: 12px;
    animation: pcbFadeIn 0.3s ease;
}
.pcb-white-label {
    display: flex;
    align-items: center;
    gap: 16px;
    cursor: pointer;
    flex-wrap: wrap;
}
.pcb-white-label input[type="checkbox"] {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}
.pcb-white-check-visual {
    width: 28px;
    height: 28px;
    border: 2px solid #94A3B8;
    border-radius: 6px;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    color: transparent;
    font-weight: 800;
    font-size: 1.1rem;
    transition: all 0.2s;
    flex-shrink: 0;
}
.pcb-white-label input:checked ~ .pcb-white-check-visual {
    background: var(--blue);
    border-color: var(--blue);
    color: #fff;
}
.pcb-white-text {
    flex: 1;
    min-width: 240px;
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.pcb-white-text strong {
    color: var(--dark);
    font-size: 1rem;
    font-weight: 700;
}
.pcb-white-text em {
    font-style: normal;
    color: #64748B;
    font-size: 0.85rem;
    line-height: 1.5;
}
.pcb-white-price {
    background: var(--blue);
    color: #fff;
    padding: 8px 14px;
    border-radius: 8px;
    font-weight: 800;
    font-size: 1rem;
    white-space: nowrap;
}

/* Summary */
.pcb-summary {
    background: #F8FAFC;
    border: 1px solid #E2E8F0;
    border-radius: 14px;
    padding: 24px;
    margin-bottom: 32px;
}
.pcb-summary h3 {
    margin: 0 0 16px;
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--dark);
}
.pcb-summary-item {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid #E2E8F0;
    font-size: 0.95rem;
}
.pcb-summary-item:last-of-type { border-bottom: none; }
.pcb-summary-item-label { color: #64748B; }
.pcb-summary-item-name { color: var(--dark); font-weight: 600; }
.pcb-summary-item-price { color: #475569; font-weight: 600; white-space: nowrap; margin-left: 12px; }
.pcb-summary-item-right {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
    justify-content: flex-end;
}
.pcb-summary-edit {
    background: transparent;
    color: #94A3B8;
    border: none;
    padding: 2px;
    cursor: pointer;
    line-height: 0;
    opacity: 0.65;
    transition: all 0.15s;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    vertical-align: middle;
}
.pcb-summary-edit svg {
    width: 14px;
    height: 14px;
    display: block;
}
.pcb-summary-edit:hover {
    color: var(--blue);
    opacity: 1;
    transform: scale(1.15);
}
.pcb-summary-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 16px;
    padding-top: 16px;
    border-top: 2px solid var(--dark);
    font-size: 1.15rem;
}
.pcb-summary-total strong {
    font-size: 1.75rem;
    color: var(--blue);
    font-weight: 800;
}
.pcb-summary-note {
    font-size: 0.8rem;
    color: #64748B;
    margin: 16px 0 0;
    line-height: 1.5;
    padding: 12px;
    background: #EFF6FF;
    border-radius: 8px;
    border-left: 3px solid var(--blue);
}
.pcb-summary-disclaimer {
    font-size: 0.8rem;
    color: #92400E;
    margin: 10px 0 0;
    line-height: 1.5;
    padding: 12px;
    background: #FEF3C7;
    border-radius: 8px;
    border-left: 3px solid #F59E0B;
}
.pcb-summary-emoji {
    display: inline-block;
    margin-right: 4px;
    font-size: 1rem;
}
.pcb-summary-sublabel {
    grid-column: 1 / -1;
    font-size: 0.75rem;
    color: #94A3B8;
    padding: 2px 0 8px 24px;
    font-style: italic;
}

/* Lock-in CTA on review step */
.pcb-lockin-cta {
    text-align: center;
    margin-top: 32px;
}
.pcb-btn-lockin {
    background: linear-gradient(135deg, #10B981 0%, #059669 100%);
    color: #fff !important;
    padding: 20px 48px;
    font-size: 1.2rem;
    font-weight: 800;
    box-shadow: 0 8px 24px rgba(16, 185, 129, 0.35);
    border: none;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.2s;
    text-transform: uppercase;
    letter-spacing: 0.03em;
}
.pcb-btn-lockin:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(16, 185, 129, 0.45);
}
.pcb-lockin-hint {
    font-size: 0.85rem;
    color: #64748B;
    margin: 14px 0 0;
    font-style: italic;
}

/* Modal */
.pcb-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(15, 23, 42, 0.6);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    display: none;
    align-items: flex-start;
    justify-content: center;
    padding: 40px 20px;
    z-index: 1000;
    overflow-y: auto;
    animation: pcbFadeIn 0.2s ease;
}
.pcb-modal {
    background: #fff;
    border-radius: 16px;
    max-width: 560px;
    width: 100%;
    padding: 40px;
    position: relative;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.3);
    animation: pcbModalIn 0.25s ease;
}
@keyframes pcbModalIn {
    from { opacity: 0; transform: translateY(-20px) scale(0.97); }
    to   { opacity: 1; transform: translateY(0) scale(1); }
}
.pcb-modal-close {
    position: absolute;
    top: 14px;
    right: 14px;
    width: 36px;
    height: 36px;
    background: #F1F5F9;
    color: #64748B;
    border: none;
    border-radius: 50%;
    font-size: 22px;
    font-weight: 400;
    font-family: -apple-system, "Segoe UI", Arial, sans-serif;
    cursor: pointer;
    padding: 0;
    line-height: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.15s;
}
.pcb-modal-close:hover { background: #E2E8F0; color: var(--dark); transform: rotate(90deg); }
.pcb-modal-header {
    text-align: center;
    margin-bottom: 24px;
}
.pcb-modal-header h2 {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--dark);
    margin: 0 0 8px;
}
.pcb-modal-header p {
    font-size: 0.95rem;
    color: #64748B;
    margin: 0;
    line-height: 1.5;
}
.pcb-modal-disclaimer {
    font-size: 0.85rem;
    color: #92400E;
    margin: 0 0 20px;
    line-height: 1.5;
    padding: 12px 14px;
    background: #FEF3C7;
    border-radius: 8px;
    border-left: 3px solid #F59E0B;
}
.pcb-modal-actions {
    margin-top: 20px;
    text-align: center;
}
.pcb-modal .pcb-btn-submit {
    width: 100%;
    padding: 16px;
    font-size: 1.1rem;
}
@media (max-width: 560px) {
    .pcb-modal { padding: 24px 20px; }
}

/* Contact form */
.pcb-contact { max-width: 720px; margin: 0 auto; }
.pcb-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 16px;
}
.pcb-form-field { margin-bottom: 16px; }
.pcb-form-field label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    color: #475569;
    margin-bottom: 6px;
}
.pcb-form-field input,
.pcb-form-field textarea {
    width: 100%;
    padding: 12px 14px;
    border: 1px solid #CBD5E1;
    border-radius: 8px;
    font-size: 1rem;
    font-family: inherit;
    background: #fff;
    transition: border-color 0.15s;
    box-sizing: border-box;
}
.pcb-form-field textarea {
    min-height: 110px;
    resize: vertical;
    line-height: 1.5;
}
.pcb-form-field input:focus,
.pcb-form-field textarea:focus {
    outline: none;
    border-color: var(--blue);
    box-shadow: 0 0 0 3px rgba(0, 112, 192, 0.1);
}
.pcb-error {
    display: block;
    background: #FEF2F2;
    color: #B91C1C;
    padding: 12px 16px;
    border-radius: 8px;
    border-left: 3px solid #DC2626;
    margin: 16px 0;
    font-size: 0.9rem;
}

/* Nav buttons */
.pcb-nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-top: 32px;
    padding-top: 24px;
    border-top: 1px solid #E2E8F0;
    flex-wrap: wrap;
}
.pcb-nav-price {
    color: #64748B;
    font-size: 0.9rem;
    flex: 1;
    text-align: center;
}
.pcb-nav-price-hint {
    font-style: italic;
    opacity: 0.7;
}
.pcb-nav-price strong {
    color: var(--blue);
    font-weight: 800;
    font-size: 1.1rem;
}
.pcb-btn {
    display: inline-block;
    padding: 14px 28px;
    border-radius: 10px;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    border: none;
    text-decoration: none;
    text-align: center;
    font-family: inherit;
    transition: all 0.2s;
}
.pcb-btn-next {
    background: var(--blue);
    color: #fff !important;
}
.pcb-btn-next:hover { background: var(--blue-bright); }
.pcb-btn-next:disabled {
    background: #CBD5E1;
    cursor: not-allowed;
}
.pcb-btn-back {
    background: #F1F5F9;
    color: #475569 !important;
    border: 1px solid #CBD5E1;
}
.pcb-btn-back:hover { background: #E2E8F0; }
.pcb-btn-submit {
    background: #10B981;
    color: #fff !important;
    padding: 16px 40px;
    font-size: 1.1rem;
}
.pcb-btn-submit:hover { background: #059669; }

/* Calculating... overlay */
.pcb-calc-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: none;
    align-items: flex-start;
    justify-content: center;
    padding-top: 60px;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    border-radius: 20px;
    z-index: 10;
    animation: pcbFadeIn 0.3s ease;
}
.pcb-container { position: relative; }
.pcb-calc-inner {
    text-align: center;
    max-width: 480px;
    padding: 30px;
}
.pcb-calc-inner h3 {
    font-size: 1.35rem;
    font-weight: 800;
    color: var(--dark);
    margin: 0 0 24px;
}
.pcb-calc-spinner {
    width: 48px;
    height: 48px;
    border: 4px solid #E2E8F0;
    border-top-color: var(--blue);
    border-radius: 50%;
    margin: 0 auto 20px;
    animation: pcbSpin 0.8s linear infinite;
}
@keyframes pcbSpin {
    to { transform: rotate(360deg); }
}
.pcb-calc-lines {
    text-align: left;
    background: #F8FAFC;
    padding: 20px 24px;
    border-radius: 12px;
    border: 1px solid #E2E8F0;
}
.pcb-calc-line {
    padding: 8px 0;
    color: #94A3B8;
    font-size: 0.9rem;
    transition: color 0.3s;
}
.pcb-calc-line-active {
    color: var(--dark);
    font-weight: 600;
}
.pcb-calc-line-done {
    color: #10B981;
    font-weight: 600;
}

/* Trust bar */
.pcb-trust {
    background: #0F172A;
    color: #fff;
    padding: 40px 24px;
}
.pcb-trust-inner {
    max-width: 1080px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    text-align: center;
}
.pcb-trust-item strong {
    display: block;
    font-size: 1.75rem;
    font-weight: 800;
    color: #00F0FF;
    margin-bottom: 4px;
}
.pcb-trust-item span {
    display: block;
    font-size: 0.85rem;
    color: #94A3B8;
}

/* SEO content section */
.pcb-seo {
    padding: 60px 24px;
    background: #F8FAFC;
    border-top: 1px solid #E2E8F0;
}
.pcb-seo-inner {
    max-width: 900px;
    margin: 0 auto;
    color: #334155;
    line-height: 1.7;
}
.pcb-seo h2 {
    font-size: clamp(1.6rem, 3vw, 2.25rem);
    font-weight: 800;
    color: var(--dark);
    margin: 0 0 20px;
    line-height: 1.25;
}
.pcb-seo h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--dark);
    margin: 32px 0 12px;
    line-height: 1.3;
}
.pcb-seo p {
    font-size: 1rem;
    margin: 0 0 16px;
}
.pcb-seo ul {
    margin: 0 0 16px 0;
    padding-left: 20px;
}
.pcb-seo li {
    margin-bottom: 8px;
    font-size: 0.98rem;
}
.pcb-seo strong { color: var(--dark); }

/* Success view */
.pcb-success {
    padding: 80px 24px;
    background: linear-gradient(180deg, #F0FDF4 0%, #fff 100%);
    text-align: center;
    min-height: 60vh;
}
.pcb-success-inner {
    max-width: 640px;
    margin: 0 auto;
}
.pcb-success-check {
    width: 80px;
    height: 80px;
    background: #10B981;
    color: #fff;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 24px;
    box-shadow: 0 8px 24px rgba(16, 185, 129, 0.3);
}
.pcb-success h1 {
    font-size: 2.25rem;
    font-weight: 800;
    color: var(--dark);
    margin: 0 0 16px;
}
.pcb-success p {
    font-size: 1.05rem;
    color: #475569;
    margin: 0 0 16px;
    line-height: 1.6;
}
.pcb-success-note {
    background: #fff;
    padding: 16px 24px;
    border-radius: 10px;
    border: 1px solid #E2E8F0;
    display: inline-block;
    margin: 24px 0;
    font-size: 1rem;
}
.pcb-success-actions {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 32px;
}

/* Mobile */
@media (max-width: 720px) {
    .pcb-wizard { padding: 24px 20px; }
    .pcb-step-header h2 { font-size: 1.5rem; }
    .pcb-cards { grid-template-columns: 1fr; }
    .pcb-cards-2col { grid-template-columns: 1fr; }
    .pcb-cards-cases { grid-template-columns: repeat(2, 1fr); }
    .pcb-form-row { grid-template-columns: 1fr; }
    .pcb-nav { flex-direction: column; }
    .pcb-nav-price { order: -1; margin-bottom: 8px; }
    .pcb-btn { width: 100%; }
    .pcb-trust-inner { grid-template-columns: repeat(2, 1fr); }
}
