﻿.page-hero {
    background: linear-gradient(135deg, var(--color-gray-100) 0%, #fff 100%);
    padding: 100px 0 60px;  text-align: center;
}

.filter-tabs {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
    margin: 30px 0 20px;
}

.filter-tab {
    background: transparent;
    border: 2px solid var(--color-gray-300);
    padding: 10px 24px;
    border-radius: 40px;
    font-weight: 600;
    font-size: 15px;
    cursor: pointer;
    transition: var(--transition-fast);
    color: var(--color-navy-deep);
}

.filter-tab:hover {
    border-color: var(--color-fulgent-red);
    background: #FFF3F4;
}

.filter-tab.active {
    background: var(--color-fulgent-red);
    border-color: var(--color-fulgent-red);
    color: #fff;
}

.product-card {
    transition: var(--transition-smooth);
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    border-color: var(--color-fulgent-red);
}

.feature-icon {
    width: 96px;
    height: 96px;
    object-fit: contain;
    margin-bottom: 20px;
}

@media (max-width: 992px) {
    .page-hero {
        padding: 80px 0 50px;
    }
    .filter-tab {
        padding: 8px 20px;
        font-size: 14px;
    }
}

@media (max-width: 768px) {
    .page-hero {
        padding: 70px 0 40px;
    }
    .page-hero .hero-title {
        font-size: 32px;
    }
    .filter-tabs {
        gap: 10px;
    }
    .filter-tab {
        padding: 6px 16px;
        font-size: 13px;
    }
    .categories-grid {
        grid-template-columns: 1fr;
    }
    .feature-icon {
        width: 72px;
        height: 72px;
    }
}

@media (max-width: 480px) {
    .page-hero {
        padding: 60px 0 30px;
    }
    .feature-icon {
        width: 64px;
        height: 64px;
    }
}
.category-anchor {
    scroll-margin-top: 110px;
    grid-column: 1 / -1;
    height: 0;
}

/* Fulgent B2C visual layer */
body.page-products .page-hero {
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #fff 0%, #FFF3F4 100%);
}

body.page-products .page-hero::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 26px;
    width: min(420px, 60vw);
    height: 72px;
    border-bottom: 8px solid var(--color-fulgent-red);
    border-radius: 0 0 50% 50%;
    transform: translateX(-50%);
    opacity: 0.9;
    pointer-events: none;
}

body.page-products .page-hero .container {
    position: relative;
    z-index: 1;
}

body.page-products .filter-tab:hover {
    border-color: var(--color-fulgent-red);
    background: #fff;
    color: var(--color-fulgent-red);
}

body.page-products .filter-tab.active {
    background: var(--color-fulgent-red);
    border-color: var(--color-fulgent-red);
}

body.page-products .product-card {
    border: 1px solid var(--color-gray-300);
}

body.page-products .product-card:hover {
    border-color: var(--color-fulgent-red);
}

body.page-products .product-card .btn-link {
    color: var(--color-fulgent-red);
}

body.page-products .product-card .btn-link:hover {
    color: var(--color-accent-black);
}

body.page-products .badge-highlight {
    background: var(--color-fulgent-red);
    color: #fff;
}

/* Product pages use Fulgent colors instead of Terahealth corporate blue. */
body.page-products,
body.page-products h1,
body.page-products h2,
body.page-products h3,
body.page-products h4,
body.page-products .hero-title,
body.page-products .product-card h3,
body.page-products .page-breadcrumb .breadcrumb .current {
    color: var(--color-accent-black);
}

body.page-products .btn-primary,
body.page-products .header-actions .btn-primary {
    background: var(--color-fulgent-red);
    border-color: var(--color-fulgent-red);
    color: #fff;
}

body.page-products .btn-primary:hover,
body.page-products .header-actions .btn-primary:hover {
    background: var(--color-fulgent-red-dark);
    border-color: var(--color-fulgent-red-dark);
}

body.page-products .btn-frosted-red {
    background: rgba(227, 6, 19, 0.76);
    border: 1px solid rgba(255, 122, 132, 0.62);
    color: #fff;
    box-shadow: 0 14px 30px rgba(227, 6, 19, 0.18);
    backdrop-filter: blur(12px);
}

body.page-products .btn-frosted-red:hover {
    background: rgba(227, 6, 19, 0.9);
    border-color: rgba(255, 142, 150, 0.86);
    box-shadow: 0 18px 40px rgba(227, 6, 19, 0.24);
    transform: translateY(-4px);
}

body.page-products .btn-outline {
    color: var(--color-accent-black);
    border-color: var(--color-accent-black);
}

body.page-products .btn-outline:hover {
    background: var(--color-accent-black);
    border-color: var(--color-accent-black);
    color: #fff;
}

body.page-products .btn-link,
body.page-products .page-breadcrumb .breadcrumb a {
    color: var(--color-fulgent-red);
}

body.page-products .footer-col a {
    color: var(--color-fulgent-red-link);
}

body.page-products .btn-link:hover,
body.page-products .page-breadcrumb .breadcrumb a:hover,
body.page-products .footer-legal a:hover {
    color: var(--color-accent-black);
}

body.page-products .footer-col a:hover {
    color: #fff;
}

body.page-products .b2b-section,
body.page-products .site-footer {
    background: var(--color-accent-black);
}

body.page-products .b2b-section {
    background: var(--color-fulgent-red) !important;
}

body.page-products .b2b-section h2 {
    color: #fff;
}

body.page-products .feature-card:hover,
body.page-products .product-card:hover {
    border-color: var(--color-fulgent-red);
}

body.page-products .check-icon,
body.page-products .feature-card i,
body.page-products .category-content h3:hover {
    color: var(--color-fulgent-red);
}

@media (max-width: 768px) {
    body.page-products .page-hero {
        min-height: 500px;
        padding: 76px 0 56px;
        background-image:
            linear-gradient(180deg, rgba(255, 255, 255, 0.92) 0%, rgba(255, 255, 255, 0.82) 44%, rgba(255, 255, 255, 0.52) 100%),
            url('../images/banners/products-retail-shelf.webp');
        background-position: 62% center;
    }

    body.page-products .page-hero::after {
        width: min(300px, 72vw);
        height: 46px;
        border-bottom-width: 6px;
        bottom: 18px;
    }
}

body.page-products .site-footer h4,
body.page-products .site-footer p,
body.page-products .site-footer li,
body.page-products .site-footer .footer-bottom p {
    color: #fff;
}

body.page-products .manifesto-section {
    background: #FFF3F4;
}

body.page-products .manifesto-content blockquote,
body.page-products .manifesto-content blockquote strong,
body.page-products .manifesto-signature {
    color: var(--color-accent-black);
}

body.page-products .main-nav .nav-menu a {
    color: var(--color-accent-black);
}

body.page-products .main-nav .nav-menu a:hover,
body.page-products .main-nav .nav-menu > li > a[href="products.html"],
body.page-products .main-nav .nav-menu li.menu-item-has-children:hover > a,
body.page-products .main-nav .nav-menu .sub-menu li a:hover {
    color: var(--color-fulgent-red);
}

body.page-products .main-nav .nav-menu a::after {
    background: var(--color-fulgent-red);
}

body.page-products .main-nav .nav-menu .sub-menu {
    border-top-color: var(--color-fulgent-red);
}


/* Refined Fulgent product catalogue */
body.page-products .page-hero {
    min-height: 430px;
    display: flex;
    align-items: center;
    padding: 92px 0 76px;
    background-image:
        linear-gradient(90deg, rgba(255, 255, 255, 0.94) 0%, rgba(255, 255, 255, 0.86) 34%, rgba(255, 255, 255, 0.48) 58%, rgba(255, 255, 255, 0.08) 100%),
        url('../images/banners/products-retail-shelf.webp');
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
}

body.page-products .page-hero::after {
    display: none;
}

body.page-products .page-hero .container {
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    text-align: left;
}

body.page-products .products-hero-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

body.page-products .page-hero .hero-title {
    max-width: 620px;
    margin-left: 0;
    margin-right: auto;
    text-align: left;
}

body.page-products .page-hero .hero-subtitle {
    max-width: 560px;
    margin-left: 0;
    margin-right: auto;
    text-align: left;
}

body.page-products .page-hero .hero-buttons {
    display: flex;
    justify-content: flex-start !important;
    margin-top: 24px;
}

body.page-products .page-hero .hero-badge {
    color: var(--color-fulgent-red) !important;
}

body.page-products .category-filter {
    background: #fff;
    border-bottom: 1px solid #eee;
}

body.page-products .filter-tabs {
    margin: 22px 0;
}

body.page-products .product-categories {
    padding: 64px 0 80px;
}

body.page-products .categories-grid {
    max-width: 1120px;
    margin: 0 auto;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
}

body.page-products .category-image {
    position: relative;
    display: flex;
    height: 210px;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #fafafa 0%, #f2f2f2 100%);
    border-bottom: 1px solid #e8e8e8;
    overflow: hidden;
}

body.page-products .category-image.image-missing::before {
    content: "Fulgent product image";
    color: #777;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0;
}

body.page-products .category-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

body.page-products .product-card {
    position: relative;
    min-height: 510px;
    display: flex;
    flex-direction: column;
    border-color: #e4e4e4;
    border-radius: 8px;
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.04);
}

body.page-products .product-card::before {
    content: '';
    display: block;
    height: 4px;
    background: var(--color-fulgent-red);
}

body.page-products .category-content {
    display: flex;
    flex-direction: column;
    flex: 1;
    padding: 32px 26px 28px;
}

body.page-products .category-content h3 {
    max-width: 72%;
    margin-bottom: 14px;
    font-size: 21px;
    line-height: 1.25;
}

body.page-products .category-content p {
    margin-bottom: 12px;
    line-height: 1.7;
}

body.page-products .category-content .btn-link {
    margin-top: auto;
    padding-top: 10px;
    font-weight: 800;
}

body.page-products .why-fulgent {
    background: #f7f7f7;
}

body.page-products .why-fulgent .features-grid {
    max-width: 1080px;
    margin: 0 auto;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}

body.page-products .why-fulgent .feature-card {
    display: grid;
    grid-template-columns: 72px 1fr;
    align-items: center;
    gap: 18px;
    min-height: 150px;
    padding: 24px;
    text-align: left;
}

body.page-products .feature-icon {
    display: block;
    margin: 0;
    width: 72px;
    height: 72px;
}

body.page-products .why-fulgent .feature-card h3,
body.page-products .why-fulgent .feature-card p {
    grid-column: 2;
}

body.page-products .why-fulgent .feature-card h3 {
    margin-bottom: 6px;
}

body.page-products .why-fulgent .feature-card p {
    line-height: 1.55;
}

body.page-products .portfolio-principles {
    padding: 76px 0;
    background: #fff7f7;
}

body.page-products .principles-heading {
    max-width: 760px;
    margin: 0 auto 34px;
    text-align: center;
}

body.page-products .principles-heading h2 {
    color: var(--color-accent-black);
    font-size: 36px;
    line-height: 1.2;
    margin-bottom: 14px;
}

body.page-products .principles-heading p {
    color: var(--color-gray-700);
    font-size: 17px;
    line-height: 1.7;
}

body.page-products .principles-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
    max-width: 1120px;
    margin: 0 auto;
}

body.page-products .principle-item {
    position: relative;
    padding: 26px 20px 24px;
    text-align: left;
    background: rgba(255, 255, 255, 0.78);
    border: 1px solid rgba(241, 214, 216, 0.92);
    border-radius: 8px;
}

body.page-products .range-map {
    counter-reset: range-step;
}

body.page-products .range-map .principle-item {
    counter-increment: range-step;
}

body.page-products .range-map .principle-item::before {
    content: "0" counter(range-step);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    margin-bottom: 18px;
    border-radius: 50%;
    background: rgba(227, 6, 19, 0.08);
    color: var(--color-fulgent-red);
    font-size: 13px;
    font-weight: 800;
}

body.page-products .principle-item strong {
    display: block;
    color: var(--color-accent-black);
    margin-bottom: 10px;
    font-size: 16px;
}

body.page-products .principle-item span {
    color: var(--color-gray-700);
    font-size: 14px;
    line-height: 1.6;
}

@media (max-width: 1000px) {
    body.page-products .categories-grid,
    body.page-products .why-fulgent .features-grid,
    body.page-products .principles-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 640px) {
    body.page-products .categories-grid,
    body.page-products .why-fulgent .features-grid,
    body.page-products .principles-grid {
        grid-template-columns: 1fr;
    }

    body.page-products .category-content h3 {
        max-width: 100%;
        padding-right: 90px;
    }

    body.page-products .why-fulgent .feature-card {
        grid-template-columns: 1fr;
        justify-items: center;
        text-align: center;
    }

    body.page-products .why-fulgent .feature-card h3,
    body.page-products .why-fulgent .feature-card p {
        grid-column: auto;
    }
}

/* Card system alignment: products keep Fulgent accent but share the same structure. */
body.page-products .product-card,
body.page-products .feature-card,
body.page-products .principle-item {
    border-radius: var(--card-radius);
    border: 1px solid #ead9da;
    box-shadow: var(--card-shadow);
}

body.page-products .product-card:hover,
body.page-products .feature-card:hover,
body.page-products .principle-item:hover {
    transform: translateY(var(--card-hover-lift));
    box-shadow: var(--card-shadow-hover);
    border-color: rgba(227, 6, 19, 0.28);
}

body.page-products .product-image,
body.page-products .category-image {
    background: #f7f8f9;
}

body.page-products .product-content,
body.page-products .category-content,
body.page-products .feature-card,
body.page-products .principle-item {
    padding: var(--card-padding);
}



/* Products retail hero mobile override */
@media (max-width: 768px) {
    body.page-products .page-hero {
        min-height: 500px;
        padding: 76px 0 56px;
        background-image:
            linear-gradient(180deg, rgba(255, 255, 255, 0.92) 0%, rgba(255, 255, 255, 0.82) 44%, rgba(255, 255, 255, 0.52) 100%),
            url('../images/banners/products-retail-shelf.webp');
        background-position: 62% center;
    }

    body.page-products .page-hero .hero-title,
    body.page-products .page-hero .hero-subtitle {
        max-width: 100%;
    }
}
/* Final public UI: hide editorial overline labels across all pages. */
.hero-badge,
.section-kicker,
.about-eyebrow,
.partners-hero .badge-highlight {
    display: none !important;
}



/* Product page trust architecture: product-specific summary instead of repeated logo cards. */
.range-assurance-section {
    padding: 82px 0;
    background: #fff7f7;
}

.range-assurance {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
    gap: 34px;
    align-items: center;
}

.range-assurance-copy .section-title {
    margin-bottom: 16px;
    text-align: left;
}

.range-assurance-copy p {
    color: var(--color-gray-700);
    font-size: 17px;
    line-height: 1.75;
}

.range-assurance-grid {
    display: grid;
    gap: 14px;
}

.range-assurance-item {
    display: grid;
    gap: 6px;
    padding: 18px 20px;
    color: var(--color-navy-deep);
    background: rgba(255, 255, 255, 0.84);
    border: 1px solid rgba(239, 35, 45, 0.18);
    border-radius: var(--card-radius);
    box-shadow: var(--card-shadow);
    transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.range-assurance-item:hover {
    transform: translateY(var(--card-hover-lift));
    box-shadow: var(--card-shadow-hover);
    border-color: rgba(239, 35, 45, 0.34);
}

.range-assurance-item strong {
    color: #111;
    font-size: 17px;
}

.range-assurance-item span {
    color: var(--color-gray-700);
    line-height: 1.55;
}

@media (max-width: 900px) {
    .range-assurance {
        grid-template-columns: 1fr;
    }
}
/* Product page final visual refinements */
body.page-products .category-filter {
    padding: 22px 0;
    background: #fff;
    border-top: 1px solid rgba(17, 17, 17, 0.05);
    border-bottom: 1px solid rgba(17, 17, 17, 0.07);
}

body.page-products .filter-tabs {
    width: fit-content;
    max-width: 100%;
    margin: 0 auto;
    padding: 6px;
    gap: 8px;
    border: 1px solid rgba(17, 17, 17, 0.08);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.74);
    box-shadow: 0 18px 42px rgba(17, 17, 17, 0.06);
    backdrop-filter: blur(14px);
}

body.page-products .filter-tab {
    min-height: 38px;
    padding: 0 22px;
    border: 1px solid transparent;
    border-radius: 999px;
    background: transparent;
    color: #111;
    font-weight: 700;
    letter-spacing: 0;
    box-shadow: none;
}

body.page-products .filter-tab:hover,
body.page-products .filter-tab:focus-visible {
    background: rgba(227, 6, 19, 0.06);
    border-color: rgba(227, 6, 19, 0.18);
    color: #111;
    transform: translateY(-1px);
}

body.page-products .filter-tab.active {
    background: rgba(227, 6, 19, 0.94);
    border-color: rgba(227, 6, 19, 0.94);
    color: #fff;
    box-shadow: 0 14px 30px rgba(227, 6, 19, 0.18);
}

body.page-products .range-assurance-section {
    padding: 84px 0;
    background: #fff7f7;
}

body.page-products .range-assurance.range-assurance-single {
    display: block;
    max-width: 780px;
    text-align: center;
}

body.page-products .range-assurance-single .range-assurance-copy .section-title {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 16px;
}

body.page-products .range-assurance-single .range-assurance-copy p {
    max-width: 690px;
    margin: 0 auto 28px;
}

body.page-products .range-assurance-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

body.page-products .range-map {
    align-items: stretch;
}

body.page-products .range-map .principle-item {
    display: flex;
    min-height: 210px;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 14px;
    padding: 30px;
}

body.page-products .range-map .principle-item::before {
    content: none !important;
}

body.page-products .principle-icon {
    display: inline-flex;
    width: 48px;
    height: 48px;
    align-items: center;
    justify-content: center;
    border-radius: 16px;
    background: rgba(227, 6, 19, 0.08);
    color: var(--color-fulgent-red);
    font-size: 22px;
}

body.page-products .product-card {
    border-color: rgba(17, 17, 17, 0.10);
    box-shadow: 0 18px 52px rgba(17, 17, 17, 0.07);
}

body.page-products .product-card:hover {
    border-color: rgba(227, 6, 19, 0.28);
    box-shadow: 0 24px 62px rgba(17, 17, 17, 0.10);
}

@media (max-width: 768px) {
    body.page-products .category-filter {
        padding: 18px 0;
    }

    body.page-products .filter-tabs {
        width: 100%;
        justify-content: flex-start;
        overflow-x: auto;
        flex-wrap: nowrap;
        padding: 6px;
        border-radius: 18px;
    }

    body.page-products .filter-tab {
        flex: 0 0 auto;
        padding: 0 16px;
        font-size: 13px;
    }

    body.page-products .range-assurance-section {
        padding: 58px 0;
    }

    body.page-products .range-map .principle-item {
        min-height: 0;
        padding: 26px;
    }
}
/* Product filter system alignment */
body.page-products .product-filter-section {
    padding: 34px 0 24px;
    background: #fff;
    border-top: 1px solid rgba(17, 17, 17, 0.06);
    border-bottom: 1px solid rgba(17, 17, 17, 0.08);
}

body.page-products .product-filter-section .filter-tabs {
    display: flex;
    width: auto;
    max-width: 100%;
    margin: 0 auto;
    padding: 0;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    backdrop-filter: none;
}

body.page-products .product-filter-section .filter-btn,
body.page-products .product-filter-section .filter-tab {
    display: inline-flex;
    min-height: 44px;
    align-items: center;
    justify-content: center;
    padding: 0 24px;
    border: 1px solid rgba(17, 17, 17, 0.14);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.78);
    color: #111;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0;
    cursor: pointer;
    box-shadow: 0 12px 32px rgba(17, 17, 17, 0.05);
    backdrop-filter: blur(14px);
    transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease, background 220ms ease, color 220ms ease;
}

body.page-products .product-filter-section .filter-btn:hover,
body.page-products .product-filter-section .filter-tab:hover,
body.page-products .product-filter-section .filter-btn:focus-visible,
body.page-products .product-filter-section .filter-tab:focus-visible {
    background: rgba(227, 6, 19, 0.06);
    border-color: rgba(227, 6, 19, 0.28);
    color: var(--color-fulgent-red);
    transform: translateY(-2px);
    box-shadow: 0 18px 42px rgba(17, 17, 17, 0.08);
}

body.page-products .product-filter-section .filter-btn.active,
body.page-products .product-filter-section .filter-tab.active {
    background: rgba(227, 6, 19, 0.94);
    border-color: rgba(227, 6, 19, 0.94);
    color: #fff;
    box-shadow: 0 16px 34px rgba(227, 6, 19, 0.18);
}

@media (max-width: 768px) {
    body.page-products .product-filter-section {
        padding: 22px 0 18px;
    }

    body.page-products .product-filter-section .filter-tabs {
        justify-content: flex-start;
        flex-wrap: nowrap;
        overflow-x: auto;
        padding: 0 0 8px;
        scrollbar-width: thin;
    }

    body.page-products .product-filter-section .filter-btn,
    body.page-products .product-filter-section .filter-tab {
        flex: 0 0 auto;
        min-height: 42px;
        padding: 0 18px;
        font-size: 13px;
    }
}

/* Product filters: match Downloads button form with Fulgent color. */
body.page-products .product-filter-section {
    padding: 30px 0;
    background: #fff;
    border-top: 0;
    border-bottom: 1px solid #eadde0;
}

body.page-products .product-filter-section .filter-tabs {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    width: auto;
    max-width: 100%;
    margin: 0 auto;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    backdrop-filter: none;
}

body.page-products .product-filter-section .filter-btn,
body.page-products .product-filter-section .filter-tab {
    min-height: auto;
    padding: 11px 18px;
    border: 1px solid #eadde0;
    border-radius: 8px;
    background: #fff;
    color: #111;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0;
    box-shadow: none;
    backdrop-filter: none;
    transition: background 180ms ease, border-color 180ms ease, color 180ms ease, transform 180ms ease;
}

body.page-products .product-filter-section .filter-btn:hover,
body.page-products .product-filter-section .filter-tab:hover,
body.page-products .product-filter-section .filter-btn:focus-visible,
body.page-products .product-filter-section .filter-tab:focus-visible {
    background: rgba(227, 6, 19, 0.08);
    border-color: rgba(227, 6, 19, 0.34);
    color: var(--color-fulgent-red);
    box-shadow: none;
    transform: translateY(-1px);
}

body.page-products .product-filter-section .filter-btn.active,
body.page-products .product-filter-section .filter-tab.active {
    background: var(--color-fulgent-red);
    border-color: var(--color-fulgent-red);
    color: #fff;
    box-shadow: none;
}

@media (max-width: 768px) {
    body.page-products .product-filter-section {
        padding: 22px 0;
    }

    body.page-products .product-filter-section .filter-tabs {
        justify-content: flex-start;
        flex-wrap: nowrap;
        overflow-x: auto;
        padding: 0 0 8px;
    }

    body.page-products .product-filter-section .filter-btn,
    body.page-products .product-filter-section .filter-tab {
        flex: 0 0 auto;
        padding: 10px 16px;
        font-size: 13px;
    }
}


