        .products-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 20px;
            margin: 30px 0;
        }

        .product-card {
            background: white;
            border: 1px solid #eee;
            border-radius: 8px;
            overflow: hidden;
            transition: transform 0.2s, box-shadow 0.2s;
            text-decoration: none;
            color: inherit;
            cursor: pointer;
        }

        .product-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
        }

        .product-image {
            width: 100%;
            height: 200px;
            object-fit: cover;
            background: #f5f5f5;
        }

        .product-info {
            padding: 15px;
        }

        .product-name {
            font-weight: 600;
            margin-bottom: 8px;
            font-size: 14px;
            line-height: 1.3;
        }

        .product-price {
            color: #d4447e;
            font-size: 16px;
            font-weight: 700;
            margin-bottom: 8px;
        }

        .product-seller {
            font-size: 12px;
            color: #999;
            margin-bottom: 8px;
        }

        .product-stock {
            font-size: 11px;
            color: #666;
        }

        .view-btn {
            display: block;
            width: 100%;
            padding: 8px;
            background: #d4447e;
            color: white;
            text-align: center;
            font-size: 13px;
            text-decoration: none;
            border: none;
            cursor: pointer;
            margin-top: 10px;
            border-radius: 4px;
            transition: background 0.2s;
        }

        .view-btn:hover {
            background: #b8356a;
        }

        .no-products {
            text-align: center;
            padding: 60px 20px;
            color: #999;
            font-size: 18px;
        }

        .filters-section {
            margin-bottom: 30px;
            padding: 20px;
            background: #f9f9f9;
            border-radius: 8px;
        }

        .breadcrumb {
            margin-bottom: 20px;
            font-size: 14px;
            color: #666;
        }

        .breadcrumb a {
            color: #d4447e;
            text-decoration: none;
        }

        .breadcrumb a:hover {
            text-decoration: underline;
        }

        .pagination {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 14px;
            margin: 30px 0 10px;
            flex-wrap: wrap;
        }

        .page-link {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            min-width: 110px;
            padding: 10px 18px;
            background: #d4447e;
            color: white;
            border-radius: 999px;
            text-decoration: none;
            font-size: 14px;
            font-weight: 700;
            transition: background 0.2s, transform 0.2s;
        }

        .page-link:hover {
            background: #b8356a;
            transform: translateY(-2px);
        }

        .page-status {
            font-size: 14px;
            font-weight: 700;
            color: #666;
        }
