.br-cat-page {
    padding: 45px 0 30px;
}

.br-cat-hero {
    text-align: left;
    margin-bottom: 50px;
}

.br-breadcrumb {
    font-size: 13px;
    margin-bottom: 28px;
    color: #777;
}

.br-breadcrumb a,
.br-breadcrumb span:last-child {
    color: var(--theme-color, #7544ff);
    font-weight: 600;
    text-decoration: none;
}

.br-breadcrumb span {
    margin: 0 6px;
}

.br-cat-hero h1 {
    color: #111827;
    font-size: 30px;
    font-weight: 800;
    line-height: 1.25;
    margin: 0 0 12px;
}

.br-cat-hero > p {
    color: #374151;
    font-size: 18px;
    line-height: 1.5;
    margin: 0 0 55px;
}

.br-category-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 22px;
}

.br-category-card {
    min-height: 135px;
    background: #fff;
    border-radius: 14px;
    border: 1px solid #e5e7eb;
    box-shadow: 0 10px 30px rgba(17, 24, 39, 0.06);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    text-align: center;
    gap: 12px;
    padding: 18px 12px;
    color: #111827;
    text-decoration: none;
    transition: 0.25s ease;
}

.br-category-card:hover {
    transform: translateY(-4px);
    border-color: var(--theme-color, #7544ff);
    box-shadow: 0 14px 35px rgba(117, 68, 255, 0.15);
}

.br-cat-icon {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: rgba(117, 68, 255, 0.12);
    color: var(--theme-color, #7544ff);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
}

.br-cat-icon img {
    width: 27px;
    height: 27px;
    object-fit: contain;
}

.br-category-card strong {
    font-size: 13px;
    font-weight: 800;
    line-height: 1.35;
}

@media (max-width: 1024px) {
    .br-category-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 768px) {
    .br-cat-page {
        padding: 30px 0 20px;
    }

    .br-breadcrumb {
        margin-bottom: 22px;
    }

    .br-cat-hero h1 {
        font-size: 24px;
    }

    .br-cat-hero > p {
        font-size: 15px;
        margin-bottom: 35px;
    }

    .br-category-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 14px;
    }

    .br-category-card {
        min-height: 125px;
    }
}