/* ===== Product Category Page ===== */
.pc-page {
    padding: 32px 0 60px;
    background: #f5f7fa;
    min-height: 60vh;
    font-family: 'Inter', system-ui, sans-serif;
    color: #1f2937;
}
.pc-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 16px;
}

/* Breadcrumb */
.pc-breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    margin-bottom: 24px;
    flex-wrap: wrap;
}
.pc-breadcrumb a {
    color: #6b7280;
    text-decoration: none;
    transition: color .15s;
}
.pc-breadcrumb a:hover { color: rgba(0, 40, 90, 1); }
.pc-breadcrumb svg { color: #d1d5db; flex-shrink: 0; }
.pc-breadcrumb span { color: rgba(0, 40, 90, 1); font-weight: 600; }

/* Header */
.pc-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 24px;
    flex-wrap: wrap;
}
.pc-header__title {
    font-family: 'Barlow', sans-serif;
    font-size: 28px;
    font-weight: 700;
    color: rgba(0, 40, 90, 1);
    margin: 0;
}
.pc-header__controls {
    display: flex;
    align-items: center;
    gap: 16px;
}
.pc-header__count {
    font-size: 14px;
    color: #6b7280;
    white-space: nowrap;
}
.pc-sort {
    height: 42px;
    padding: 0 36px 0 14px;
    border: 1.5px solid #d1d5db;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 500;
    color: #1f2937;
    background: #fff;
    outline: none;
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%239ca3af' stroke-width='2'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    transition: border-color .15s;
}
.pc-sort:focus { border-color: rgba(0, 40, 90, 1); }

/* Active Filters */
.pc-filters {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 18px;
    background: #fff;
    border-radius: 12px;
    margin-bottom: 24px;
    flex-wrap: wrap;
    box-shadow: 0 1px 4px rgba(0, 0, 0, .04);
}
.pc-filters__label {
    font-size: 14px;
    font-weight: 600;
    color: rgba(0, 40, 90, 1);
    white-space: nowrap;
}
.pc-filters__tags {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    flex: 1;
}
.pc-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 10px;
    background: rgba(0, 40, 90, .06);
    border-radius: 999px;
    font-size: 13px;
    font-weight: 500;
    color: rgba(0, 40, 90, 1);
}
.pc-tag a {
    color: rgba(0, 40, 90, .5);
    text-decoration: none;
    font-size: 16px;
    font-weight: 700;
    line-height: 1;
    transition: color .15s;
}
.pc-tag a:hover { color: #dc2626; }
.pc-filters__clear {
    font-size: 13px;
    font-weight: 600;
    color: #dc2626;
    text-decoration: none;
    white-space: nowrap;
    transition: opacity .15s;
}
.pc-filters__clear:hover { opacity: .7; }

/* Products Grid */
.pc-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 32px;
}

/* Empty State */
.pc-empty {
    grid-column: 1 / -1;
    text-align: center;
    padding: 80px 20px;
    background: #fff;
    border-radius: 16px;
}
.pc-empty svg { color: #d1d5db; margin-bottom: 16px; }
.pc-empty h3 {
    font-family: 'Barlow', sans-serif;
    font-size: 22px;
    font-weight: 700;
    color: rgba(0, 40, 90, 1);
    margin: 0 0 8px;
}
.pc-empty p { font-size: 14px; color: #6b7280; margin: 0 0 24px; }
.pc-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 44px;
    padding: 0 28px;
    background: linear-gradient(176.55deg, #1773EA -0.11%, #00285A 97.76%);
    color: #fff;
    border: none;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    transition: box-shadow .2s, transform .15s;
    box-shadow: 0 4px 14px rgba(0, 40, 90, .25);
}
.pc-btn:hover { box-shadow: 0 8px 20px rgba(0, 40, 90, .35); transform: translateY(-1px); }

/* Pagination */
.pc-pagination {
    display: flex;
    justify-content: center;
}
.pc-pagination nav { display: flex; }
.pc-pagination .pagination {
    display: flex;
    gap: 6px;
    list-style: none;
    margin: 0;
    padding: 0;
}
.pc-pagination .page-item .page-link {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    height: 40px;
    padding: 0 12px;
    border-radius: 10px;
    border: 1.5px solid #d1d5db;
    background: #fff;
    color: #4b5563;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: all .15s;
}
.pc-pagination .page-item .page-link:hover {
    border-color: rgba(0, 40, 90, 1);
    color: rgba(0, 40, 90, 1);
    background: rgba(0, 40, 90, .04);
}
.pc-pagination .page-item.active .page-link {
    background: rgba(0, 40, 90, 1);
    border-color: rgba(0, 40, 90, 1);
    color: #fff;
}
.pc-pagination .page-item.disabled .page-link {
    opacity: .4;
    pointer-events: none;
}

/* Responsive */
@media (max-width: 1024px) {
    .pc-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 768px) {
    .pc-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }
    .pc-header__title { font-size: 22px; }
    .pc-header { flex-direction: column; align-items: flex-start; }
}
@media (max-width: 480px) {
    .pc-page { padding: 24px 0 40px; }
    .pc-grid { grid-template-columns: 1fr; max-width: 340px; margin: 0 auto 32px; }
    .pc-header__title { font-size: 20px; }
    .pc-sort { width: 100%; }
    .pc-header__controls { width: 100%; }
}
