.products-intro {
    padding: 4rem 5% 2rem;
    background: var(--light);
}

.intro-card {
    max-width: 1100px;
    margin: 0 auto;
    background: var(--white);
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
    padding: 2rem;
}

.intro-card p {
    color: var(--muted);
    font-size: 1rem;
    line-height: 1.8;
}

.category-bar {
    background: var(--white);
    padding: 1rem 5%;
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
    justify-content: center;
    border-bottom: 1px solid var(--border);
    position: sticky;
    top: 72px;
    z-index: 900;
}

.cat-link {
    padding: 0.6rem 1.1rem;
    border-radius: 999px;
    border: 1px solid var(--border);
    background: var(--light);
    color: var(--blue);
    font-size: 0.88rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.25s;
    white-space: nowrap;
    flex: 0 0 auto;
}

.cat-link:hover {
    background: var(--blue);
    border-color: var(--blue);
    color: var(--white);
}

.catalog-section {
    padding: 4rem 5%;
}

.catalog-section.alt-bg {
    background: var(--light);
}

.category-layout {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(280px, 360px) 1fr;
    gap: 2rem;
    align-items: start;
}

.section-copy {
    position: sticky;
    top: 155px;
}

.section-kicker {
    display: inline-block;
    margin-bottom: 0.8rem;
    color: var(--blue);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.section-copy .section-title {
    text-align: left;
    margin-bottom: 0.8rem;
}

.section-copy p {
    color: var(--muted);
    margin-bottom: 1.25rem;
    line-height: 1.8;
}

.item-list {
    list-style: none;
    margin-bottom: 1.5rem;
}

.item-list li {
    color: var(--text);
    padding: 0.65rem 0;
    border-bottom: 1px solid var(--border);
    font-size: 0.95rem;
}

.item-list li:last-child {
    border-bottom: none;
}

.showcase-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 200px), 1fr));
    gap: 1rem;
}

.showcase-card {
    background: var(--white);
    border-radius: 12px;
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.06);
    padding: 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.9rem;
    min-height: 100%;
}

.image-placeholder {
    min-height: 170px;
    border-radius: 10px;
    border: 1px solid var(--border);
    background: linear-gradient(135deg, #eef4fb 0%, #dce7f7 100%);
    overflow: hidden;
}

.image-placeholder img {
    width: 100%;
    height: 100%;
    min-height: 166px;
    display: block;
    object-fit: cover;
}

.showcase-card h3 {
    color: var(--blue);
    font-size: 1rem;
}

.showcase-card p {
    color: var(--muted);
    font-size: 0.88rem;
    line-height: 1.6;
}

@media (max-width: 900px) {
    .category-layout {
        grid-template-columns: 1fr;
    }

    .section-copy {
        position: static;
    }
}

@media (max-width: 768px) {
    .category-bar {
        top: 64px;
        justify-content: flex-start;
        flex-wrap: nowrap;
        overflow-x: auto;
        overflow-y: hidden;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        padding: 0.8rem 4%;
    }

    .category-bar::-webkit-scrollbar {
        display: none;
    }

    .products-intro,
    .catalog-section {
        padding-left: 4%;
        padding-right: 4%;
    }

    .intro-card {
        padding: 1.5rem;
    }
}

@media (max-width: 480px) {
    .showcase-grid {
        grid-template-columns: 1fr;
    }

    .image-placeholder {
        min-height: 150px;
    }
}
