.products-banner {}

.products-main {
    background: #f4f6f8;
}

.products-layout {
    display: grid;
    grid-template-columns: 190px 1fr;
    gap: 34px;
}

.category-nav {
    position: sticky;
    top: 92px;
    align-self: start;
}

.category-nav ul {
    list-style: none;
    border-left: 1px dashed #d6dde3;
    padding-left: 16px;
}

.category-nav li {
    margin-bottom: 6px;
}

.category-nav a {
    display: block;
    padding: 10px 12px;
    color: var(--text-muted);
    border-left: 2px solid transparent;
    margin-left: -18px;
    font-size: 14px;
}

.category-nav a.active,
.category-nav a:hover {
    color: var(--primary);
    border-left-color: var(--primary);
}

.category-nav .category-title {
    color: var(--primary);
    font-weight: 600;
}

.products-content section {
    margin-bottom: 38px;
    scroll-margin-top: 128px;
}

.products-content h2 {
    font-size: 24px;
    margin-bottom: 18px;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.product-card {
    background: #fff;
    border: 1px solid #e8edf1;
    padding: 16px;
    text-align: center;
    transition: .2s;
}

.product-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(15, 41, 53, 0.08);
}

.product-card h3 {
    font-size: 16px;
    margin-bottom: 8px;
}

.product-card .tags {
    color: var(--text-muted);
    font-size: 12px;
    margin-bottom: 12px;
    min-height: 18px;
}

.product-card .tags span + span {
    margin-left: 8px;
}

.product-image {
    width: 100%;
    aspect-ratio: 4/3;
    background: #f6f9fa;
    border: 1px solid #edf1f4;
    overflow: hidden;
    margin-bottom: 12px;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.btn-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 92px;
    font-size: 12px;
    color: var(--text-light);
    border: 1px solid #dfe6eb;
    padding: 7px 16px;
    border-radius: 2px;
    transition: color .2s, border-color .2s, background-color .2s;
}

.btn-link:hover {
    color: var(--primary);
    border-color: var(--primary);
    background: #f7fffd;
}

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

    .category-nav {
        position: static;
    }

    .category-nav ul {
        border-left: 0;
        border-bottom: 1px dashed #d6dde3;
        padding-left: 0;
        display: flex;
        flex-wrap: wrap;
        gap: 6px;
        padding-bottom: 10px;
    }

    .category-nav a {
        margin-left: 0;
        border-left: 0;
        border-bottom: 2px solid transparent;
    }

    .category-nav a.active,
    .category-nav a:hover {
        border-bottom-color: var(--primary);
    }

    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }

}

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