/* =========================================================
   PC POINT — UNIFIED COMPONENT CSS
   Covers: Topbar, Navbar, Footer, Pages (FAQ, About, etc.)
   ========================================================= */

/* ── TOPBAR ── */
.pc-topbar {
    background: var(--foreground, #1a1d27);
    color: rgba(255,255,255,0.85);
    font-size: 0.75rem;
    padding: 0.375rem 0;
}
.pc-topbar-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.pc-topbar-right {
    display: none;
    gap: 1rem;
}
.pc-topbar-right a {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    transition: color 0.2s;
}
.pc-topbar-right a:hover { color: var(--primary, #EF0100); }
@media (min-width: 768px) {
    .pc-topbar-right { display: flex; }
}

/* ── NAVBAR ── */
.pc-navbar {
    background: var(--background, #fcfcfc);
    border-bottom: 1px solid var(--border, #e5e7eb);
    box-shadow: 0 1px 3px rgba(0,0,0,0.06);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: box-shadow 0.3s;
}
.pc-navbar.scrolled {
    box-shadow: 0 4px 16px rgba(0,0,0,0.1);
}
.pc-navbar-main {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 0.75rem 0;
}
.pc-mobile-menu-btn {
    display: flex;
    background: none;
    border: none;
    cursor: pointer;
    color: var(--foreground);
    padding: 0.25rem;
}
@media (min-width: 768px) {
    .pc-mobile-menu-btn { display: none; }
}

/* Logo */
.pc-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    flex-shrink: 0;
}
.pc-logo-image {
    height: 42px;
    width: auto;
    display: block;
    object-fit: contain;
}
.pc-logo-icon {
    width: 2rem;
    height: 2rem;
    background: var(--primary, #EF0100);
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: 800;
    font-size: 0.7rem;
    font-family: var(--font-display);
}
.pc-logo-text {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 1.25rem;
    color: var(--primary, #EF0100);
}
.pc-logo-accent {
    color: var(--foreground, #1a1d27);
}

/* Search */
.pc-search-wrap {
    flex: 1;
    max-width: 560px;
    display: none;
    position: relative;
}
.pc-search-form {
    position: relative;
    display: block;
    width: 100%;
    margin: 0;
}
.pc-search-icon {
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--muted-foreground, #6b7280);
    pointer-events: none;
}
.pc-search-input {
    width: 100%;
    padding: 0.625rem 1rem 0.625rem 3.25rem !important;
    border: 1.5px solid var(--border, #e5e7eb);
    border-radius: 9999px;
    font-size: 0.875rem;
    background: var(--muted, #f4f5f7);
    transition: all 0.2s;
    outline: none;
    font-family: var(--font-body);
}
.pc-search-input:focus {
    border-color: var(--primary, #EF0100);
    background: var(--background);
    box-shadow: 0 0 0 3px rgba(239,1,0,0.08);
}
@media (min-width: 768px) {
    .pc-search-wrap { display: block; }
}

/* Nav Actions */
.pc-nav-actions {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    margin-left: auto;
}
.pc-nav-action-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.125rem;
    padding: 0.375rem 0.75rem;
    border-radius: 0.5rem;
    color: var(--muted-foreground, #6b7280);
    text-decoration: none;
    font-size: 0.6875rem;
    font-weight: 500;
    transition: all 0.2s;
    cursor: pointer;
    background: none;
    border: none;
    position: relative;
}
.pc-nav-action-btn:hover {
    color: var(--primary, #EF0100);
    background: rgba(239,1,0,0.04);
}
.pc-nav-action-label { display: none; }
@media (min-width: 768px) {
    .pc-nav-action-label { display: block; }
}
.pc-cart-badge {
    position: absolute;
    top: 0;
    right: 0.375rem;
    background: var(--primary, #EF0100);
    color: #fff;
    font-size: 0.625rem;
    font-weight: 700;
    width: 1.125rem;
    height: 1.125rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Account Dropdown */
.pc-account-dropdown { position: relative; }
.pc-account-menu {
    display: none;
    position: absolute;
    top: 100%;
    right: 0;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 0.5rem;
    box-shadow: 0 8px 24px rgba(0,0,0,0.12);
    min-width: 200px;
    z-index: 100;
    margin-top: 0.5rem;
    overflow: hidden;
}
.pc-account-dropdown.open .pc-account-menu { display: block; }
.pc-account-menu-header {
    padding: 0.75rem 1rem;
    border-bottom: 1px solid var(--border);
    font-weight: 600;
    font-size: 0.8125rem;
    color: var(--foreground);
}
.pc-account-menu-item {
    display: block;
    padding: 0.625rem 1rem;
    font-size: 0.875rem;
    color: var(--foreground);
    text-decoration: none;
    transition: background 0.15s;
}
.pc-account-menu-item:hover { background: var(--muted); }
.pc-account-logout {
    border-top: 1px solid var(--border);
    color: var(--primary, #EF0100);
}

/* Category Bar */
.pc-category-bar {
    border-top: 1px solid var(--border, #e5e7eb);
    background: #fff;
    display: none;
}
.pc-category-bar-inner {
    display: flex;
    overflow-x: auto;
    scrollbar-width: none;
}
.pc-category-bar-inner::-webkit-scrollbar { display: none; }
.pc-cat-link {
    padding: 0.35rem 0.72rem;
    font-size: 0.8125rem;
    font-weight: 500;
    white-space: nowrap;
    color: var(--muted-foreground, #6b7280);
    text-decoration: none;
    border-bottom: 0;
    border-radius: 0.375rem;
    background: transparent;
    transition: color 0.2s ease, box-shadow 0.2s ease;
}
.pc-cat-link:hover {
    color: var(--primary, #EF0100);
    text-decoration: none;
    background: transparent;
    box-shadow: 0 1px 6px rgba(15, 23, 42, 0.16);
}
.pc-cat-link.active {
    color: var(--primary, #EF0100);
    text-decoration: none;
    background: transparent;
    box-shadow: none;
}
@media (min-width: 768px) {
    .pc-category-bar { display: block; }
}

/* Mobile Drawer */
.pc-mobile-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.5);
    z-index: 9999;
}
.pc-mobile-overlay.active { display: block; }
.pc-mobile-drawer {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    width: 300px;
    background: #fff;
    padding: 1.5rem;
    overflow-y: auto;
}
.pc-mobile-close {
    background: none;
    border: none;
    cursor: pointer;
    color: var(--foreground);
    margin-bottom: 1.5rem;
}
.pc-mobile-link {
    display: block;
    padding: 0.75rem 0;
    font-size: 0.9375rem;
    font-weight: 500;
    color: var(--foreground);
    text-decoration: none;
    border-bottom: 1px solid var(--border);
}
.pc-mobile-link:hover { color: var(--primary); }
.pc-mobile-actions {
    margin-top: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}
.pc-mobile-btn {
    display: block;
    padding: 0.75rem 1rem;
    text-align: center;
    border-radius: 0.5rem;
    font-weight: 600;
    font-size: 0.875rem;
    text-decoration: none;
}
.pc-mobile-btn-outline {
    border: 1px solid var(--border);
    color: var(--foreground);
}
.pc-mobile-btn-primary {
    background: var(--primary);
    color: #fff;
}

/* ── FOOTER ── */
.pc-footer {
    background: var(--foreground, #1a1d27);
    color: rgba(255,255,255,0.7);
    padding: 3rem 0 1.5rem;
    margin-top: 3rem;
}
.pc-footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 2rem;
}
@media (max-width: 768px) {
    .pc-footer-grid { grid-template-columns: 1fr 1fr; gap: 1.5rem; }
}
@media (max-width: 480px) {
    .pc-footer-grid { grid-template-columns: 1fr; }
}
.pc-footer-brand { }
.pc-footer-logo {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.75rem;
    padding: 0.45rem 0.7rem;
    background: #ffffff;
    border-radius: 8px;
    box-shadow: 0 12px 28px -20px rgba(0, 0, 0, 0.65);
}
.pc-footer-logo-image {
    height: 46px;
    width: auto;
    display: block;
    object-fit: contain;
}
.pc-footer-logo .pc-logo-text { color: #fff; }
.pc-footer-logo .pc-logo-accent { color: rgba(255,255,255,0.7); }
.pc-footer-tagline {
    font-size: 0.875rem;
    line-height: 1.6;
    margin-bottom: 1rem;
    color: rgba(255,255,255,0.76);
}

.pc-footer p {
    color: inherit;
}
.pc-footer-social {
    display: flex;
    gap: 0.75rem;
}
.pc-footer-social a {
    color: rgba(255,255,255,0.5);
    transition: color 0.2s;
}
.pc-footer-social a:hover { color: var(--primary); }
.pc-footer-col h4 {
    color: #fff;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    font-family: var(--font-display);
}
.pc-footer-col ul { list-style: none; padding: 0; margin: 0; }
.pc-footer-col li { margin-bottom: 0.375rem; }
.pc-footer-col a {
    color: rgba(255,255,255,0.6);
    text-decoration: none;
    font-size: 0.875rem;
    transition: color 0.2s;
}

@media (max-width: 768px) {
    .pc-logo-image {
        height: 36px;
    }
    .pc-footer-logo-image {
        height: 40px;
    }
}
.pc-footer-col a:hover { color: var(--primary); }
.pc-footer-bottom {
    margin-top: 2.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255,255,255,0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.75rem;
    color: rgba(255,255,255,0.4);
    flex-wrap: wrap;
    gap: 0.5rem;
}

.pc-footer-bottom p {
    color: rgba(255,255,255,0.45);
    margin: 0;
}
.pc-footer-legal {
    display: flex;
    gap: 1rem;
}
.pc-footer-legal a {
    color: rgba(255,255,255,0.4);
    text-decoration: none;
}
.pc-footer-legal a:hover { color: rgba(255,255,255,0.8); }

/* ── PAGE LAYOUTS ── */
.pc-page { }
.pc-page-hero {
    background: linear-gradient(135deg, #1a1d27 0%, #2d1f3d 100%);
    color: #fff;
    padding: 3rem 0;
    text-align: center;
}
.pc-page-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(8px);
    padding: 0.375rem 0.875rem;
    border-radius: 9999px;
    font-size: 0.8125rem;
    font-weight: 500;
    margin-bottom: 1rem;
}
.pc-page-title {
    font-family: var(--font-display);
    font-size: 2.25rem;
    font-weight: 800;
    margin-bottom: 0.75rem;
    line-height: 1.2;
    color: #fff;
}
.pc-page-subtitle {
    font-size: 1rem;
    opacity: 0.8;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
    color: rgba(255,255,255,0.88);
}

.pc-section { padding: 3rem 0; }
.pc-section-alt { background: var(--muted, #f4f5f7); }
.pc-section-header { text-align: center; margin-bottom: 2rem; }
.pc-section-tag {
    display: inline-block;
    background: rgba(239,1,0,0.08);
    color: var(--primary, #EF0100);
    padding: 0.25rem 0.75rem;
    border-radius: 9999px;
    font-size: 0.8125rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}
.pc-section-title {
    font-family: var(--font-display);
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}
.pc-section-desc {
    color: var(--muted-foreground);
    max-width: 600px;
    margin: 0 auto;
}

/* Stats */
.pc-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}
@media (max-width: 768px) {
    .pc-stats-grid { grid-template-columns: repeat(2, 1fr); }
}
.pc-stat-card {
    text-align: center;
    padding: 1.5rem;
    background: var(--background);
    border: 1px solid var(--border);
    border-radius: 0.75rem;
}
.pc-stat-value {
    font-family: var(--font-display);
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--primary);
}
.pc-stat-label {
    font-size: 0.8125rem;
    color: var(--muted-foreground);
    margin-top: 0.25rem;
}

/* Process cards */
.pc-process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}
.pc-process-grid-sm { grid-template-columns: repeat(3, 1fr); }
@media (max-width: 768px) {
    .pc-process-grid, .pc-process-grid-sm { grid-template-columns: 1fr; }
}
.pc-process-card {
    text-align: center;
    padding: 1.5rem;
    background: var(--background);
    border: 1px solid var(--border);
    border-radius: 0.75rem;
}
.pc-process-num {
    width: 2.5rem;
    height: 2.5rem;
    background: var(--primary);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1rem;
    margin: 0 auto 0.75rem;
}
.pc-process-card h3 {
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}
.pc-process-card p {
    font-size: 0.875rem;
    color: var(--muted-foreground);
    line-height: 1.5;
}

/* Features grid */
.pc-features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}
@media (max-width: 768px) {
    .pc-features-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
    .pc-features-grid { grid-template-columns: 1fr; }
}
.pc-feature-card {
    padding: 1.5rem;
    border: 1px solid var(--border);
    border-radius: 0.75rem;
    text-align: center;
    transition: all 0.3s;
}
.pc-feature-card:hover {
    box-shadow: 0 8px 24px rgba(0,0,0,0.08);
    transform: translateY(-2px);
}
.pc-feature-icon {
    width: 3rem;
    height: 3rem;
    background: rgba(19,151,36,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent, #139724);
    margin: 0 auto 0.75rem;
}
.pc-feature-card h3 {
    font-family: var(--font-display);
    font-size: 0.9375rem;
    font-weight: 600;
    margin-bottom: 0.375rem;
}
.pc-feature-card p {
    font-size: 0.8125rem;
    color: var(--muted-foreground);
    line-height: 1.5;
}

/* CTA Section */
.pc-cta-section {
    background: linear-gradient(135deg, #1a1d27 0%, #2d1f3d 100%);
    color: #fff;
    padding: 3rem 0;
    text-align: center;
}
.pc-cta-content h2 {
    font-family: var(--font-display);
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: #fff;
}
.pc-cta-content p {
    opacity: 0.8;
    margin-bottom: 1.5rem;
    color: rgba(255,255,255,0.9);
}

/* Buttons */
.pc-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.625rem 1.25rem;
    border-radius: 0.5rem;
    font-weight: 600;
    font-size: 0.875rem;
    border: none;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.2s;
    font-family: var(--font-body);
}
.pc-btn-primary {
    background: var(--primary, #EF0100);
    color: #fff;
}
.pc-btn-primary:hover { opacity: 0.9; transform: translateY(-1px); }
.pc-cta-content .pc-btn-primary,
.pc-cta-content .pc-btn-primary:hover {
    color: #fff;
}
.pc-btn-lg { padding: 0.875rem 1.75rem; font-size: 1rem; }

/* Content cards */
.pc-content-card {
    background: var(--background);
    border: 1px solid var(--border);
    border-radius: 0.75rem;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
}
.pc-content-card h2 {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

/* Tables */
.pc-table {
    width: 100%;
    border-collapse: collapse;
}
.pc-table th, .pc-table td {
    padding: 0.75rem 1rem;
    text-align: left;
    border-bottom: 1px solid var(--border);
    font-size: 0.875rem;
}
.pc-table th {
    font-weight: 600;
    font-size: 0.75rem;
    text-transform: uppercase;
    color: var(--muted-foreground);
    background: var(--muted);
}
.pc-table tr:hover { background: var(--muted); }

/* Lists */
.pc-list {
    list-style: none;
    padding: 0;
}
.pc-list li {
    padding: 0.5rem 0 0.5rem 1.5rem;
    position: relative;
    font-size: 0.875rem;
    border-bottom: 1px solid var(--border);
}
.pc-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent, #139724);
    font-weight: 700;
}

/* Prose */
.pc-prose h2 {
    font-size: 1.125rem;
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
    padding-top: 1rem;
    border-top: 1px solid var(--border);
}
.pc-prose h2:first-child { border-top: none; padding-top: 0; margin-top: 0; }
.pc-prose p { font-size: 0.875rem; line-height: 1.7; margin-bottom: 0.75rem; color: var(--muted-foreground); }
.pc-prose ul { list-style: disc; padding-left: 1.5rem; margin-bottom: 0.75rem; }
.pc-prose li { font-size: 0.875rem; line-height: 1.6; margin-bottom: 0.25rem; color: var(--muted-foreground); }
.pc-prose a { color: var(--primary); }

/* ── FAQ ── */
.pc-faq-category { margin-bottom: 2rem; }
.pc-faq-category-title {
    font-family: var(--font-display);
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--primary);
    display: inline-block;
}
.pc-faq-item {
    border: 1px solid var(--border);
    border-radius: 0.5rem;
    margin-bottom: 0.5rem;
    overflow: hidden;
}
.pc-faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.875rem 1rem;
    background: none;
    border: none;
    cursor: pointer;
    font-size: 0.9375rem;
    font-weight: 500;
    color: var(--foreground);
    text-align: left;
    font-family: var(--font-body);
}
.pc-faq-question svg {
    flex-shrink: 0;
    transition: transform 0.3s;
    color: var(--muted-foreground);
}
.pc-faq-item.open .pc-faq-question svg {
    transform: rotate(180deg);
}
.pc-faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s, padding 0.3s;
}
.pc-faq-item.open .pc-faq-answer {
    max-height: 500px;
    padding: 0 1rem 1rem;
}
.pc-faq-answer p {
    font-size: 0.875rem;
    color: var(--muted-foreground);
    line-height: 1.7;
}
.pc-faq-answer a { color: var(--primary); }

/* ── TRACK ORDER ── */
.pc-track-form-card {
    background: var(--background);
    border: 1px solid var(--border);
    border-radius: 0.75rem;
    padding: 2rem;
}
.pc-track-result {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border);
}
.pc-track-status-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}
.pc-track-status-header h3 {
    font-family: var(--font-display);
    font-size: 1.125rem;
    font-weight: 700;
}
.pc-badge {
    display: inline-flex;
    padding: 0.25rem 0.625rem;
    border-radius: 9999px;
    font-size: 0.75rem;
    font-weight: 600;
}
.pc-badge-success { background: rgba(19,151,36,0.1); color: var(--accent); }
.pc-track-timeline {
    position: relative;
    padding-left: 1.5rem;
}
.pc-track-step {
    position: relative;
    padding-bottom: 1.5rem;
    padding-left: 1rem;
    border-left: 2px solid var(--border);
}
.pc-track-step:last-child { border-left-color: transparent; padding-bottom: 0; }
.pc-track-step.done { border-left-color: var(--accent); }
.pc-track-dot {
    position: absolute;
    left: -0.5rem;
    top: 0;
    width: 0.875rem;
    height: 0.875rem;
    border-radius: 50%;
    background: var(--border);
    border: 2px solid var(--background);
}
.pc-track-step.done .pc-track-dot { background: var(--accent); }
.pc-track-step-content strong {
    display: block;
    font-size: 0.875rem;
    margin-bottom: 0.125rem;
}
.pc-track-step-content span {
    font-size: 0.75rem;
    color: var(--muted-foreground);
}
.pc-track-help {
    margin-top: 1.5rem;
    padding-top: 1rem;
    border-top: 1px solid var(--border);
    font-size: 0.8125rem;
    color: var(--muted-foreground);
}
.pc-track-help a { color: var(--primary); }

/* ── CONTACT ── */
.pc-contact-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 2rem;
}
@media (max-width: 768px) {
    .pc-contact-grid { grid-template-columns: 1fr; }
}
.pc-contact-form-wrap h2, .pc-contact-info h2 {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
}
.pc-text-muted { color: var(--muted-foreground); font-size: 0.875rem; margin-bottom: 1.5rem; }
.pc-contact-cards { display: flex; flex-direction: column; gap: 1rem; }
.pc-contact-card {
    display: flex;
    gap: 0.75rem;
    padding: 1rem;
    border: 1px solid var(--border);
    border-radius: 0.75rem;
}
.pc-contact-icon {
    width: 2.5rem;
    height: 2.5rem;
    background: rgba(19,151,36,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
    flex-shrink: 0;
}
.pc-contact-card h3 { font-size: 0.875rem; font-weight: 600; margin-bottom: 0.125rem; }
.pc-contact-card p { font-size: 0.8125rem; color: var(--muted-foreground); line-height: 1.5; }
.pc-contact-card a { color: var(--primary); }

/* ── FORMS ── */
.pc-form { }
.pc-form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
@media (max-width: 480px) { .pc-form-row { grid-template-columns: 1fr; } }
.pc-form-group { margin-bottom: 1rem; }
.pc-form-label {
    display: block;
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: 0.375rem;
}
.pc-form-control {
    width: 100%;
    padding: 0.625rem 0.875rem;
    border: 1px solid var(--border);
    border-radius: 0.5rem;
    font-size: 0.875rem;
    font-family: var(--font-body);
    transition: all 0.2s;
    background: var(--background);
}
.pc-form-control:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(239,1,0,0.08);
}
.pc-form-textarea { resize: vertical; min-height: 120px; }
