.category-page .product-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    list-style: none;
    padding: 0;
}

.category-page .product-item {
    /* border: 1px solid #eee; */
    /* border-radius: 8px; */
    overflow: hidden;
    transition: box-shadow 0.3s;
}

.category-page .product-item:hover {
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.category-page .product-item a {
    text-decoration: none;
    color: inherit;
    display: block;
}

.category-page .product-item figure {
    margin: 0;
}

.category-page .product-item img {
    width: 100%;
    aspect-ratio: 4 / 5;
    object-fit: cover;
    display: block;
}

.category-page .product-item figcaption {
    padding: 1.5rem;
}

.category-page .product-item h2 {
    font-size: 1.2rem;
}

.category-page .product-item p {
    font-size: 0.9rem;
    color: #555;
    margin: 0;
}
