.products-page-header-section {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: var(--section-padding) 0;
    width: 100%;
    border-bottom: 1px solid var(--foreground);
    background-image: url('../images/mystery.webp');
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.products-page-header-section .overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.6);
    z-index: 1;
}

.products-page-header-section h1 {
    position: relative;
    letter-spacing: -0.025em;
    margin-bottom: 12px;
    z-index: 2;
    color: white;
    font-size: 3rem;
}

.products-page-header-section ul  {
    position: relative;
    list-style: none;
    padding: 0;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
    max-width: 576px;
    z-index: 2;
}

.product-category-section:not([data-category-section-index="0"]) {
    margin-top: calc(var(--section-padding) / 2);
}

.product-category-section h2 {
    font-size: 1.875rem;
    letter-spacing: -0.025em;
    margin-bottom: 1rem;
}


.category-filter-badge {
    display: block;
    padding: 8px 12px;
    border-radius: 64px;
    text-decoration: none;
    font-size: 0.75rem;
    text-transform: uppercase;
    font-family: 'Bricolage Grotesque', sans-serif;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 1px 2px 0px;
    border: 1px solid var(--background);
    color: var(--background);
    backdrop-filter: blur(8px);
    transition: all 0.3s ease;
    font-weight: 600;
}

.category-filter-badge:hover {
    background-color: var(--background);
    color: var(--foreground);
}

.product-category-section:not(:last-of-type) {
    border-bottom: 1px solid var(--foreground);
}

.product-category-section {
    padding: calc(var(--section-padding) / 2) 0;
}

.products-cta-section {
    padding: var(--section-padding) 0;
    background-color: var(--background);
    border-top: 1px solid var(--foreground);
}

.products-cta-section .cta-content {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.products-cta-section h3 {
    font-size: 1.875rem;
    letter-spacing: -0.025em;
    margin-bottom: 16px;
    color: var(--foreground);
}

.products-cta-section p {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 24px;
    color: var(--foreground);
    opacity: 0.8;
}