.products-archive {
    padding: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.category-filter {
    margin-bottom: 20px;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
}

.product-card {
    border: 1px solid #eee;
    padding: 15px;
    border-radius: 12px;
    transition: 0.3s;
}

.product-card:hover {
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.product-image {
    width: 100%;
    height: auto;
    border-radius: 8px;
}

.product-category {
    color: #F11158;
    font-weight: bold;
}